Plugin Directory

Changeset 3186790


Ignore:
Timestamp:
11/12/2024 11:13:33 PM (17 months ago)
Author:
IQComputing
Message:

v1.4.8

Location:
wpcf7-recaptcha/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wpcf7-recaptcha/trunk/changelog.txt

    r3091002 r3186790  
    22
    33This is to keep track of all changes the plugin undertakes. The readme.txt should only contain the most recent 3.
     4
     5= 1.4.8 =
     6
     7Release Date: November 13, 2024
     8
     9* Overview
     10    * Updated the "Tested up to" value to support 6.7+
     11    * Updates TagGenerator usage to v2 per Contact Form 7 updates.
     12
     13* Code Changes
     14    * Changes the iqfix_wpcf7_add_tag_generator_recaptcha() WPCF7_TagGenerator class to pass in `array( 'version' => 2 )`
     15        which prevents deprecation errors from appearing. Not sure why but it's done!
    416
    517= 1.4.7 =
  • wpcf7-recaptcha/trunk/readme.txt

    r3091002 r3186790  
    33Tags: contact-form-7, contact-form-7-recaptcha, recaptcha, spam
    44Requires at least: 4.9
    5 Tested up to: 6.5
    6 Stable tag: 1.4.7
     5Tested up to: 6.7
     6Stable tag: 1.4.8
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6161== Changelog ==
    6262
     63= 1.4.8 (2024-11-13) =
     64* Updated the "Tested up to" value to support 6.7+
     65* Updates Contact Form 7 Tag Generator to v2
     66
    6367= 1.4.7 (2024-05-22) =
    6468* Updated the "Tested up to" value to support 6.5+
     
    6771* Improved desription text ( Thanks @rickcurran )
    6872* Tested and updated to support WordPress 6.5 Regina
    69 
    70 = 1.4.5 (2024-01-18) =
    71 * Tested and updated to support WordPress 6.4: Shirley
  • wpcf7-recaptcha/trunk/recaptcha-v2.php

    r2950942 r3186790  
    265265        esc_html__( 'reCaptcha', 'wpcf7-recaptcha' ),
    266266        'iqfix_wpcf7_tag_generator_recaptcha',
    267         array( 'nameless' => 1 )
     267        array( 'version' => 2 )
    268268    );
    269269
  • wpcf7-recaptcha/trunk/wpcf7-recaptcha.php

    r3091002 r3186790  
    33 * Plugin Name: ReCaptcha v2 for Contact Form 7
    44 * Description: ReCaptcha v2 Fix for Contact Form 7 5.1 and later.
    5  * Version: 1.4.7
     5 * Version: 1.4.8
    66 * Author: IQComputing
    77 * Author URI: http://www.iqcomputing.com/
     
    2525     * @var String
    2626     */
    27     public static $version = '1.4.7';
     27    public static $version = '1.4.8';
    2828
    2929
Note: See TracChangeset for help on using the changeset viewer.