Changeset 3114040
- Timestamp:
- 07/08/2024 07:40:39 AM (21 months ago)
- Location:
- captchafox-for-forms
- Files:
-
- 2 added
- 8 edited
- 1 copied
-
tags/1.7.0 (copied) (copied from captchafox-for-forms/trunk)
-
tags/1.7.0/SECURITY.md (added)
-
tags/1.7.0/captchafox.php (modified) (3 diffs)
-
tags/1.7.0/readme.txt (modified) (2 diffs)
-
tags/1.7.0/src/php/Plugins/Wordpress/Register.php (modified) (1 diff)
-
tags/1.7.0/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/SECURITY.md (added)
-
trunk/captchafox.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/src/php/Plugins/Wordpress/Register.php (modified) (1 diff)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
captchafox-for-forms/tags/1.7.0/captchafox.php
r3064003 r3114040 7 7 * Plugin Name: CaptchaFox for WordPress 8 8 * Description: GDPR compliant bot and spam protection with CaptchaFox. 9 * Version: 1. 6.09 * Version: 1.7.0 10 10 * Requires at least: 5.0 11 11 * Requires PHP: 7.0 … … 16 16 * 17 17 * WC requires at least: 3.0 18 * WC tested up to: 8.718 * WC tested up to: 9.0 19 19 */ 20 20 … … 28 28 29 29 const CAPTCHAFOX_BASE_FILE = __FILE__; 30 const PLUGIN_VERSION = '1. 6.0';30 const PLUGIN_VERSION = '1.7.0'; 31 31 32 32 require 'vendor/autoload.php'; -
captchafox-for-forms/tags/1.7.0/readme.txt
r3064003 r3114040 1 1 === CaptchaFox for WordPress === 2 2 Contributors: scorialabs 3 Tags: captcha, abuse, recaptcha, spam, anti-spam, captchafox, gdpr, block bots, form3 Tags: captcha, recaptcha, spam, anti-spam, gdpr 4 4 Requires at least: 5.0 5 Tested up to: 6. 55 Tested up to: 6.6 6 6 Requires PHP: 7.0 7 Stable tag: 1. 6.07 Stable tag: 1.7.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 79 79 == Changelog == 80 80 81 = 1.7.0 = 82 * Tested on WooCommerce 9.0 83 * Tested on WordPress 6.6 84 * Fix widget not appearing on WordPress register page 85 81 86 = 1.6.0 = 82 87 * Tested on WooCommerce 8.7 -
captchafox-for-forms/tags/1.7.0/src/php/Plugins/Wordpress/Register.php
r3007827 r3114040 17 17 public function setup() { 18 18 add_action( 'register_form', [ CaptchaFox::class, 'get_html' ] ); 19 add_action( ' register_head', [ CaptchaFox::class, 'load_head' ] );19 add_action( 'login_head', [ CaptchaFox::class, 'load_head' ] ); 20 20 add_filter( 'registration_errors', [ $this, 'verify' ], 10, 3 ); 21 21 } -
captchafox-for-forms/tags/1.7.0/vendor/composer/installed.php
r3064003 r3114040 2 2 'root' => array( 3 3 'name' => 'captchafox/captchafox-wordpress', 4 'pretty_version' => '1. 6.0',5 'version' => '1. 6.0.0',6 'reference' => ' 19e4fec30c5584e067165309c0a742927f9b763b',4 'pretty_version' => '1.7.0', 5 'version' => '1.7.0.0', 6 'reference' => 'b26ac21958e59abf57813bead17e66efd939de33', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'captchafox/captchafox-wordpress' => array( 14 'pretty_version' => '1. 6.0',15 'version' => '1. 6.0.0',16 'reference' => ' 19e4fec30c5584e067165309c0a742927f9b763b',14 'pretty_version' => '1.7.0', 15 'version' => '1.7.0.0', 16 'reference' => 'b26ac21958e59abf57813bead17e66efd939de33', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../', -
captchafox-for-forms/trunk/captchafox.php
r3064003 r3114040 7 7 * Plugin Name: CaptchaFox for WordPress 8 8 * Description: GDPR compliant bot and spam protection with CaptchaFox. 9 * Version: 1. 6.09 * Version: 1.7.0 10 10 * Requires at least: 5.0 11 11 * Requires PHP: 7.0 … … 16 16 * 17 17 * WC requires at least: 3.0 18 * WC tested up to: 8.718 * WC tested up to: 9.0 19 19 */ 20 20 … … 28 28 29 29 const CAPTCHAFOX_BASE_FILE = __FILE__; 30 const PLUGIN_VERSION = '1. 6.0';30 const PLUGIN_VERSION = '1.7.0'; 31 31 32 32 require 'vendor/autoload.php'; -
captchafox-for-forms/trunk/readme.txt
r3064003 r3114040 1 1 === CaptchaFox for WordPress === 2 2 Contributors: scorialabs 3 Tags: captcha, abuse, recaptcha, spam, anti-spam, captchafox, gdpr, block bots, form3 Tags: captcha, recaptcha, spam, anti-spam, gdpr 4 4 Requires at least: 5.0 5 Tested up to: 6. 55 Tested up to: 6.6 6 6 Requires PHP: 7.0 7 Stable tag: 1. 6.07 Stable tag: 1.7.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 79 79 == Changelog == 80 80 81 = 1.7.0 = 82 * Tested on WooCommerce 9.0 83 * Tested on WordPress 6.6 84 * Fix widget not appearing on WordPress register page 85 81 86 = 1.6.0 = 82 87 * Tested on WooCommerce 8.7 -
captchafox-for-forms/trunk/src/php/Plugins/Wordpress/Register.php
r3007827 r3114040 17 17 public function setup() { 18 18 add_action( 'register_form', [ CaptchaFox::class, 'get_html' ] ); 19 add_action( ' register_head', [ CaptchaFox::class, 'load_head' ] );19 add_action( 'login_head', [ CaptchaFox::class, 'load_head' ] ); 20 20 add_filter( 'registration_errors', [ $this, 'verify' ], 10, 3 ); 21 21 } -
captchafox-for-forms/trunk/vendor/composer/installed.php
r3064003 r3114040 2 2 'root' => array( 3 3 'name' => 'captchafox/captchafox-wordpress', 4 'pretty_version' => '1. 6.0',5 'version' => '1. 6.0.0',6 'reference' => ' 19e4fec30c5584e067165309c0a742927f9b763b',4 'pretty_version' => '1.7.0', 5 'version' => '1.7.0.0', 6 'reference' => 'b26ac21958e59abf57813bead17e66efd939de33', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'captchafox/captchafox-wordpress' => array( 14 'pretty_version' => '1. 6.0',15 'version' => '1. 6.0.0',16 'reference' => ' 19e4fec30c5584e067165309c0a742927f9b763b',14 'pretty_version' => '1.7.0', 15 'version' => '1.7.0.0', 16 'reference' => 'b26ac21958e59abf57813bead17e66efd939de33', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.