Plugin Directory

Changeset 3114040


Ignore:
Timestamp:
07/08/2024 07:40:39 AM (21 months ago)
Author:
scorialabs
Message:

Update to version 1.7.0 from GitHub

Location:
captchafox-for-forms
Files:
2 added
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • captchafox-for-forms/tags/1.7.0/captchafox.php

    r3064003 r3114040  
    77 * Plugin Name:           CaptchaFox for WordPress
    88 * Description:           GDPR compliant bot and spam protection with CaptchaFox.
    9  * Version:               1.6.0
     9 * Version:               1.7.0
    1010 * Requires at least:     5.0
    1111 * Requires PHP:          7.0
     
    1616 *
    1717 * WC requires at least:  3.0
    18  * WC tested up to:       8.7
     18 * WC tested up to:       9.0
    1919 */
    2020
     
    2828
    2929const CAPTCHAFOX_BASE_FILE = __FILE__;
    30 const PLUGIN_VERSION = '1.6.0';
     30const PLUGIN_VERSION = '1.7.0';
    3131
    3232require 'vendor/autoload.php';
  • captchafox-for-forms/tags/1.7.0/readme.txt

    r3064003 r3114040  
    11=== CaptchaFox for WordPress ===
    22Contributors: scorialabs
    3 Tags: captcha, abuse, recaptcha, spam, anti-spam, captchafox, gdpr, block bots, form
     3Tags: captcha, recaptcha, spam, anti-spam, gdpr
    44Requires at least: 5.0
    5 Tested up to: 6.5
     5Tested up to: 6.6
    66Requires PHP: 7.0
    7 Stable tag: 1.6.0
     7Stable tag: 1.7.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7979== Changelog ==
    8080
     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
    8186= 1.6.0 =
    8287* Tested on WooCommerce 8.7
  • captchafox-for-forms/tags/1.7.0/src/php/Plugins/Wordpress/Register.php

    r3007827 r3114040  
    1717    public function setup() {
    1818        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' ] );
    2020        add_filter( 'registration_errors', [ $this, 'verify' ], 10, 3 );
    2121    }
  • captchafox-for-forms/tags/1.7.0/vendor/composer/installed.php

    r3064003 r3114040  
    22    'root' => array(
    33        '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',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        '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',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
  • captchafox-for-forms/trunk/captchafox.php

    r3064003 r3114040  
    77 * Plugin Name:           CaptchaFox for WordPress
    88 * Description:           GDPR compliant bot and spam protection with CaptchaFox.
    9  * Version:               1.6.0
     9 * Version:               1.7.0
    1010 * Requires at least:     5.0
    1111 * Requires PHP:          7.0
     
    1616 *
    1717 * WC requires at least:  3.0
    18  * WC tested up to:       8.7
     18 * WC tested up to:       9.0
    1919 */
    2020
     
    2828
    2929const CAPTCHAFOX_BASE_FILE = __FILE__;
    30 const PLUGIN_VERSION = '1.6.0';
     30const PLUGIN_VERSION = '1.7.0';
    3131
    3232require 'vendor/autoload.php';
  • captchafox-for-forms/trunk/readme.txt

    r3064003 r3114040  
    11=== CaptchaFox for WordPress ===
    22Contributors: scorialabs
    3 Tags: captcha, abuse, recaptcha, spam, anti-spam, captchafox, gdpr, block bots, form
     3Tags: captcha, recaptcha, spam, anti-spam, gdpr
    44Requires at least: 5.0
    5 Tested up to: 6.5
     5Tested up to: 6.6
    66Requires PHP: 7.0
    7 Stable tag: 1.6.0
     7Stable tag: 1.7.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7979== Changelog ==
    8080
     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
    8186= 1.6.0 =
    8287* Tested on WooCommerce 8.7
  • captchafox-for-forms/trunk/src/php/Plugins/Wordpress/Register.php

    r3007827 r3114040  
    1717    public function setup() {
    1818        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' ] );
    2020        add_filter( 'registration_errors', [ $this, 'verify' ], 10, 3 );
    2121    }
  • captchafox-for-forms/trunk/vendor/composer/installed.php

    r3064003 r3114040  
    22    'root' => array(
    33        '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',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        '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',
    1717            'type' => 'wordpress-plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.