Version Description
- Fix Gutenberg compatability bug. If you use Gutenberg, you may have to recreate your blocks, hence the version major bump. Otherwise you should be fine.
Download this release
Release Info
Developer | rhyswynne |
Plugin | WordPress Email Marketing Plugin – WP Email Capture |
Version | 3.6 |
Comparing to | |
See all releases |
Code changes from version 3.5.4 to 3.6
- readme.md +2 -2
- readme.txt +5 -2
- wp-email-capture.php +2 -2
readme.md
CHANGED
@@ -6,9 +6,9 @@ Requires at least: 3.0
|
|
6 |
|
7 |
Tested up to: 4.7
|
8 |
|
9 |
-
Version: 3.3
|
10 |
|
11 |
-
Stable tag: 3.3
|
12 |
|
13 |
Contributors: rhyswynne
|
14 |
|
6 |
|
7 |
Tested up to: 4.7
|
8 |
|
9 |
+
Version: 3.5.3
|
10 |
|
11 |
+
Stable tag: 3.5.3
|
12 |
|
13 |
Contributors: rhyswynne
|
14 |
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Tags: email marketing, email, mailing list, widget ready, gutenberg ready, gdpr
|
3 |
Requires at least: 4.9.6
|
4 |
Tested up to: 4.9.6
|
5 |
-
Version: 3.
|
6 |
-
Stable tag: 3.
|
7 |
Contributors: rhyswynne
|
8 |
Donate link: https://www.wpemailcapture.com/premium/?utm_source=donatelink&utm_medium=wordpressorgreadme&utm_campaign=wpemailcapture
|
9 |
|
@@ -157,6 +157,9 @@ This plugin does use widgets, so probably yes :)
|
|
157 |
Wherever you put in %NAME% (spelt exactly like that, uppercase as well), it will be replaced with the name given by the user.
|
158 |
|
159 |
== Change Log ==
|
|
|
|
|
|
|
160 |
= 3.5.4 =
|
161 |
* Added a note should a version of MySQL earlier than 5.6 is shared.
|
162 |
|
2 |
Tags: email marketing, email, mailing list, widget ready, gutenberg ready, gdpr
|
3 |
Requires at least: 4.9.6
|
4 |
Tested up to: 4.9.6
|
5 |
+
Version: 3.6
|
6 |
+
Stable tag: 3.6
|
7 |
Contributors: rhyswynne
|
8 |
Donate link: https://www.wpemailcapture.com/premium/?utm_source=donatelink&utm_medium=wordpressorgreadme&utm_campaign=wpemailcapture
|
9 |
|
157 |
Wherever you put in %NAME% (spelt exactly like that, uppercase as well), it will be replaced with the name given by the user.
|
158 |
|
159 |
== Change Log ==
|
160 |
+
= 3.6 =
|
161 |
+
* Fix Gutenberg compatability bug. If you use Gutenberg, you may have to recreate your blocks, hence the version major bump. Otherwise you should be fine.
|
162 |
+
|
163 |
= 3.5.4 =
|
164 |
* Added a note should a version of MySQL earlier than 5.6 is shared.
|
165 |
|
wp-email-capture.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: WP Email Capture
|
5 |
Plugin URI: https://www.wpemailcapture.com/?utm_source=plugin-link&utm_medium=plugin&utm_campaign=wpemailcapture
|
6 |
Description: Captures email addresses for insertion into software such as <a href="https://www.wpemailcapture.com/recommends/aweber" title="Email Marketing">Aweber</a> or <a href="https://www.wpemailcapture.com/recommends/mailchimp/">Mailchimp</a>
|
7 |
-
Version: 3.
|
8 |
Author: Winwar Media
|
9 |
Author URI: https://www.winwar.co.uk/?utm_source=author-link&utm_medium=plugin&utm_campaign=wpemailcapture
|
10 |
*/
|
@@ -19,7 +19,7 @@ define( 'WP_EMAIL_CAPTURE_PATH', dirname( __FILE__ ) );
|
|
19 |
define( 'WP_EMAIL_CAPTURE_URL', plugins_url( '', __FILE__ ) );
|
20 |
define( 'WP_EMAIL_CAPTURE_TEMP_MEMBERS_TABLE', $wpdb->prefix . 'wp_email_capture_temp_members' );
|
21 |
define( 'WP_EMAIL_CAPTURE_REGISTERED_MEMBERS_TABLE', $wpdb->prefix . 'wp_email_capture_registered_members' );
|
22 |
-
define( 'WP_EMAIL_CAPTURE_VERSION', '3.
|
23 |
define( 'WP_EMAIL_MIN_MYSQL_VERSION', '5.6' );
|
24 |
|
25 |
require_once WP_EMAIL_CAPTURE_PATH . '/inc/core.php';
|
4 |
Plugin Name: WP Email Capture
|
5 |
Plugin URI: https://www.wpemailcapture.com/?utm_source=plugin-link&utm_medium=plugin&utm_campaign=wpemailcapture
|
6 |
Description: Captures email addresses for insertion into software such as <a href="https://www.wpemailcapture.com/recommends/aweber" title="Email Marketing">Aweber</a> or <a href="https://www.wpemailcapture.com/recommends/mailchimp/">Mailchimp</a>
|
7 |
+
Version: 3.6
|
8 |
Author: Winwar Media
|
9 |
Author URI: https://www.winwar.co.uk/?utm_source=author-link&utm_medium=plugin&utm_campaign=wpemailcapture
|
10 |
*/
|
19 |
define( 'WP_EMAIL_CAPTURE_URL', plugins_url( '', __FILE__ ) );
|
20 |
define( 'WP_EMAIL_CAPTURE_TEMP_MEMBERS_TABLE', $wpdb->prefix . 'wp_email_capture_temp_members' );
|
21 |
define( 'WP_EMAIL_CAPTURE_REGISTERED_MEMBERS_TABLE', $wpdb->prefix . 'wp_email_capture_registered_members' );
|
22 |
+
define( 'WP_EMAIL_CAPTURE_VERSION', '3.6' );
|
23 |
define( 'WP_EMAIL_MIN_MYSQL_VERSION', '5.6' );
|
24 |
|
25 |
require_once WP_EMAIL_CAPTURE_PATH . '/inc/core.php';
|