Plugin Directory

Changeset 3068673


Ignore:
Timestamp:
04/10/2024 09:22:18 PM (2 years ago)
Author:
IQComputing
Message:

Version 1.4.6 => WordPress 6.5: Regina

Location:
wpcf7-recaptcha/trunk
Files:
3 edited

Legend:

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

    r2950945 r3068673  
    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.6 =
     6
     7Release Date: April 10, 2024
     8
     9* Overview
     10    * Tested and updated to support WordPress 6.5: Regina
     11    * Improved description text to denote that the [recaptcha] shortcode is only needed for V2
     12        * Thanks to user @rickcurran for pointing out that it was ambiguous and needed improvement!
     13        * https://wordpress.org/support/topic/use-recaptcha-v3-but-only-with-the-recaptcha-tag/
     14
     15= 1.4.5 =
     16
     17Release Date: January 18, 2024
     18
     19* Happy New Year!
     20* Overview
     21    * Tested and updated to support WordPress 6.4: Shirley
    422
    523= 1.4.4 =
  • wpcf7-recaptcha/trunk/readme.txt

    r3023634 r3068673  
    44Requires at least: 4.9
    55Tested up to: 6.4
    6 Stable tag: 1.4.5
     6Stable tag: 1.4.6
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    6161== Changelog ==
    6262
     63= 1.4.6 (2024-04-10) =
     64* Improved desription text ( Thanks @rickcurran )
     65* Tested and updated to support WordPress 6.5 Regina
     66
     67= 1.4.5 (2024-01-18) =
     68* Tested and updated to support WordPress 6.4: Shirley
     69
    6370= 1.4.4 (2023-08-09) =
    6471* Tested and updated to support WordPress 6.3: Lionel
    65 
    66 = 1.4.1 (2022-07-29) =
    67 * Fixed issue with validation error message not appearing on submission.
    68 
    69 = 1.4.0 (2022-06-01) =
    70 * Updated supported version for WordPress 6.0
  • wpcf7-recaptcha/trunk/wpcf7-recaptcha.php

    r3023634 r3068673  
    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.5
     5 * Version: 1.4.6
    66 * Author: IQComputing
    77 * Author URI: http://www.iqcomputing.com/
     
    2525     * @var String
    2626     */
    27     public static $version = '1.4.5';
     27    public static $version = '1.4.6';
    2828
    2929
     
    260260                    /* translators: %s is a shortcode example wrapped in <code> tags. */
    261261                    printf( '<p>%1$s</p>',
    262                         sprintf( esc_html__( 'Select the version of reCaptcha you would like to use. You will still need to use the %s shortcode tag in your Contact Form 7 forms.', 'wpcf7-recaptcha' ),
    263                             '<code>[recaptcha]</code>'
     262                        sprintf( esc_html__( 'Only when "reCaptcha Version 2" is selected will you need to use the %s shortcode tag in your Contact Form 7 forms. ReCaptcha v3 (Default Usage) does not use a recaptcha shortcode.%sSelect the version of reCaptcha you would like to use:', 'wpcf7-recaptcha' ),
     263                            '<code>[recaptcha]</code>',
     264                            '<br />'
    264265                        )
    265266                    );
Note: See TracChangeset for help on using the changeset viewer.