Changeset 3068673
- Timestamp:
- 04/10/2024 09:22:18 PM (2 years ago)
- Location:
- wpcf7-recaptcha/trunk
- Files:
-
- 3 edited
-
changelog.txt (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wpcf7-recaptcha.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpcf7-recaptcha/trunk/changelog.txt
r2950945 r3068673 2 2 3 3 This 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 7 Release 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 17 Release Date: January 18, 2024 18 19 * Happy New Year! 20 * Overview 21 * Tested and updated to support WordPress 6.4: Shirley 4 22 5 23 = 1.4.4 = -
wpcf7-recaptcha/trunk/readme.txt
r3023634 r3068673 4 4 Requires at least: 4.9 5 5 Tested up to: 6.4 6 Stable tag: 1.4. 56 Stable tag: 1.4.6 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 61 61 == Changelog == 62 62 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 63 70 = 1.4.4 (2023-08-09) = 64 71 * 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 3 3 * Plugin Name: ReCaptcha v2 for Contact Form 7 4 4 * Description: ReCaptcha v2 Fix for Contact Form 7 5.1 and later. 5 * Version: 1.4. 55 * Version: 1.4.6 6 6 * Author: IQComputing 7 7 * Author URI: http://www.iqcomputing.com/ … … 25 25 * @var String 26 26 */ 27 public static $version = '1.4. 5';27 public static $version = '1.4.6'; 28 28 29 29 … … 260 260 /* translators: %s is a shortcode example wrapped in <code> tags. */ 261 261 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 />' 264 265 ) 265 266 );
Note: See TracChangeset
for help on using the changeset viewer.