Contact Form 7 – reCaptcha v2 - Version 1.1.5

Version Description

(2019-02-25) =

  • Added link to github in description
  • Updated version number to fix json checksum (Thanks @willpresleyev)!
Download this release

Release Info

Developer IQComputing
Plugin Icon 128x128 Contact Form 7 – reCaptcha v2
Version 1.1.5
Comparing to
See all releases

Code changes from version 1.1.4 to 1.1.5

Files changed (3) hide show
  1. changelog.txt +8 -0
  2. readme.txt +8 -7
  3. wpcf7-recaptcha.php +2 -2
changelog.txt CHANGED
@@ -2,6 +2,14 @@
2
 
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.1.4 =
6
 
7
  Relase Date: February 22, 2019
2
 
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.1.5 =
6
+
7
+ Release Date: February 25, 2019
8
+
9
+ * Overview
10
+ * Added plugin to github and link to github on description page.
11
+ * Ran into issue committing v1.1.4 which caused json checksums to not reflect some changes made. Thank @willpresleyev for pointing this out!
12
+
13
  = 1.1.4 =
14
 
15
  Relase Date: February 22, 2019
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: iqcomputing
3
  Tags: contact-form-7, contact-form-7-recaptcha, recaptcha, spam
4
  Requires at least: 4.9
5
  Tested up to: 5.1
6
- Stable tag: 1.1.4
7
  License: GPLv2 or later
8
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -21,6 +21,7 @@ Once installed and configured it should be the same reCaptcha functionality you
21
 
22
  * Like us on [Facebook](https://www.facebook.com/iqcomputing/ "IQComputing on Facebook")
23
  * Follow us on [Twitter](https://twitter.com/iqcomputing/ "IQComputing on Twitter")
 
24
 
25
  == Installation ==
26
 
@@ -59,6 +60,11 @@ Should the above be correct, at this point it's time to open a support thread fo
59
 
60
  == Changelog ==
61
 
 
 
 
 
 
62
  = 1.1.4 (2019-02-21) =
63
  * We need your help translating this plugin! Interested parties may contribute at: https://translate.wordpress.org/projects/wp-plugins/wpcf7-recaptcha
64
  *
@@ -72,9 +78,4 @@ Should the above be correct, at this point it's time to open a support thread fo
72
  * An attempt to make translations easier and better overall.
73
  * Combined a few redundant translation functions into a single translation function.
74
  * Made wording and references more consistent.
75
- * Added a margin-bottom: 0 style to the reCaptcha iframe in an attempt to prevent CSS overlapping.
76
-
77
- = 1.1.2 (2019-01-14) =
78
- * Renamed Text Domain to match the plugin slug which should help translations.
79
- * Added Portable Object Template (.pot) file to /languages/ folder.
80
- * Added call to action on settings page which encourages users to like IQComputing on Facebook to receive the latest news and updates.
3
  Tags: contact-form-7, contact-form-7-recaptcha, recaptcha, spam
4
  Requires at least: 4.9
5
  Tested up to: 5.1
6
+ Stable tag: 1.1.5
7
  License: GPLv2 or later
8
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
9
 
21
 
22
  * Like us on [Facebook](https://www.facebook.com/iqcomputing/ "IQComputing on Facebook")
23
  * Follow us on [Twitter](https://twitter.com/iqcomputing/ "IQComputing on Twitter")
24
+ * Fork on [Github](https://github.com/IQComputing/wpcf7-recaptcha "IQComputing on Github")
25
 
26
  == Installation ==
27
 
60
 
61
  == Changelog ==
62
 
63
+ = 1.1.5 (2019-02-25) =
64
+
65
+ * Added link to github in description
66
+ * Updated version number to fix json checksum (Thanks @willpresleyev)!
67
+
68
  = 1.1.4 (2019-02-21) =
69
  * We need your help translating this plugin! Interested parties may contribute at: https://translate.wordpress.org/projects/wp-plugins/wpcf7-recaptcha
70
  *
78
  * An attempt to make translations easier and better overall.
79
  * Combined a few redundant translation functions into a single translation function.
80
  * Made wording and references more consistent.
81
+ * Added a margin-bottom: 0 style to the reCaptcha iframe in an attempt to prevent CSS overlapping.
 
 
 
 
 
wpcf7-recaptcha.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Plugin Name: Contact Form 7 - reCaptcha v2
4
  * Description: ReCaptcha v2 Fix for Contact Form 7 5.1 and later.
5
- * Version: 1.1.4
6
  * Author: IQComputing
7
  * Author URI: http://www.iqcomputing.com/
8
  * License: GPL2
@@ -18,7 +18,7 @@ defined( 'ABSPATH' ) or die( 'You cannot be here.' );
18
  */
19
  Class IQFix_WPCF7_Deity {
20
 
21
- public static $version = '1.1.4';
22
 
23
 
24
  /**
2
  /**
3
  * Plugin Name: Contact Form 7 - reCaptcha v2
4
  * Description: ReCaptcha v2 Fix for Contact Form 7 5.1 and later.
5
+ * Version: 1.1.5
6
  * Author: IQComputing
7
  * Author URI: http://www.iqcomputing.com/
8
  * License: GPL2
18
  */
19
  Class IQFix_WPCF7_Deity {
20
 
21
+ public static $version = '1.1.5';
22
 
23
 
24
  /**