From da3b93ddbf6060ad7254da413ff1be10c63940b1 Mon Sep 17 00:00:00 2001 From: Istvan Vas Date: Thu, 3 Apr 2025 17:52:09 +0300 Subject: [PATCH 1/6] Update plugin Version --- adcaptcha.php | 4 ++-- readme.txt | 3 +++ src/Settings/Settings.php | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/adcaptcha.php b/adcaptcha.php index c343201..96ac568 100644 --- a/adcaptcha.php +++ b/adcaptcha.php @@ -2,7 +2,7 @@ /** * Plugin Name: adCAPTCHA for WordPress * Description: Secure your site. Elevate your brand. Boost Ad Revenue. - * Version: 1.6.0 + * Version: 1.7.0 * Requires at least: 6.4.2 * Requires PHP: 7.4 * Author: adCAPTCHA @@ -21,7 +21,7 @@ use AdCaptcha\Instantiate; -const PLUGIN_VERSION_ADCAPTCHA = '1.6.0'; +const PLUGIN_VERSION_ADCAPTCHA = '1.7.0'; define('ADCAPTCHA_ERROR_MESSAGE', __( 'Please complete the I am human box.', 'adcaptcha' )); if ( ! function_exists( 'adcaptcha_uninstall' ) ) { diff --git a/readme.txt b/readme.txt index 8fc40c7..2988195 100644 --- a/readme.txt +++ b/readme.txt @@ -157,3 +157,6 @@ During verification, the adCAPTCHA service may briefly receive the user's IP add = 1.6.0 = - Added feature to disable the WooCommerce checkout endpoint. + += 1.7.0 = +- Feature: Added support for Gravity Forms and Forminator. \ No newline at end of file diff --git a/src/Settings/Settings.php b/src/Settings/Settings.php index 192572e..14f3384 100644 --- a/src/Settings/Settings.php +++ b/src/Settings/Settings.php @@ -81,6 +81,6 @@ public function change_admin_footer_text() { } public function change_admin_footer_version() { - return 'Version 1.6.0'; + return 'Version 1.7.0'; } } From d52497fe41aec4be5afc84a75289cd98dd57997a Mon Sep 17 00:00:00 2001 From: Istvan Vas Date: Thu, 3 Apr 2025 17:55:01 +0300 Subject: [PATCH 2/6] Empty line in readme --- readme.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index 2988195..8025568 100644 --- a/readme.txt +++ b/readme.txt @@ -159,4 +159,4 @@ During verification, the adCAPTCHA service may briefly receive the user's IP add - Added feature to disable the WooCommerce checkout endpoint. = 1.7.0 = -- Feature: Added support for Gravity Forms and Forminator. \ No newline at end of file +- Feature: Added support for Gravity Forms and Forminator. From 8523144b629aa45ef86b6a42232afc107b7526dd Mon Sep 17 00:00:00 2001 From: Istvan Vas Date: Thu, 3 Apr 2025 18:00:31 +0300 Subject: [PATCH 3/6] Updated supported list --- readme.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/readme.txt b/readme.txt index 8025568..da8b80c 100644 --- a/readme.txt +++ b/readme.txt @@ -46,6 +46,10 @@ adCAPTCHA offers a unique proposition in the digital space by combining Security **Fluent Forms** +**Gravity Forms** + +**Forminator** + == Advance Features == **Woocommerce** From 0a217a3df19dbb7ef1c65ed730407e4572d6c89c Mon Sep 17 00:00:00 2001 From: Istvan Vas Date: Thu, 3 Apr 2025 18:16:38 +0300 Subject: [PATCH 4/6] Update Readme file --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index c4145c6..811332a 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,10 @@ ### Fluent Forms +### Gravity Forms + +### Forminator + ## Advance Features * Able to trigger adCAPTCHA on the "Place order" button. From 33bcd363d549f6dc1fad8cb38115dd69f5ea4d38 Mon Sep 17 00:00:00 2001 From: Istvan Vas Date: Thu, 3 Apr 2025 18:20:55 +0300 Subject: [PATCH 5/6] Stable tag update --- readme.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index da8b80c..3cfafc9 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Contributors: adCAPTCHA Tags: spam, anti-spam, block bots, security, adCAPTCHA Requires at least: 6.0 Tested up to: 6.5.2 -Stable tag: 1.6.0 +Stable tag: 1.7.0 Requires PHP: 7.4 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html From b30fdc580e5c8980792595435050310da6bee578 Mon Sep 17 00:00:00 2001 From: Istvan Vas Date: Thu, 3 Apr 2025 18:29:48 +0300 Subject: [PATCH 6/6] Fixing error from conflict --- src/Instantiate.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Instantiate.php b/src/Instantiate.php index 2d4057c..c300fdc 100644 --- a/src/Instantiate.php +++ b/src/Instantiate.php @@ -89,11 +89,11 @@ public function setup() { 'Forminator_Forms' => [ 'instance' => Forminator::class, 'plugin' => [ 'forminator/forminator.php' ], - + ], 'GravityForms_Forms' => [ 'instance' => GravityForms::class, - 'plugin' => [ 'gravityforms/gravityforms.php' ], - ], + 'plugin' => [ 'gravityforms/gravityforms.php' ] + ] ]; $selected_plugins = get_option('adcaptcha_selected_plugins') ? get_option('adcaptcha_selected_plugins') : array();