MailChimp Forms by MailMunch - Version 2.1.1

Version Description

Download this release

Release Info

Developer mailmunch
Plugin Icon 128x128 MailChimp Forms by MailMunch
Version 2.1.1
Comparing to
See all releases

Code changes from version 2.1.0 to 2.1.1

admin/class-mailchimp-mailmunch-admin.php CHANGED
@@ -198,7 +198,7 @@ class Mailchimp_Mailmunch_Admin {
198
 
199
  public function initiate_api() {
200
  if (empty($this->mailmunch_api)) {
201
- $this->mailmunch_api = new Mailmunch_Api();
202
  }
203
  return $this->mailmunch_api;
204
  }
198
 
199
  public function initiate_api() {
200
  if (empty($this->mailmunch_api)) {
201
+ $this->mailmunch_api = new Mailchimp_Mailmunch_Api();
202
  }
203
  return $this->mailmunch_api;
204
  }
includes/class-mailchimp-mailmunch-sidebar-widget.php CHANGED
@@ -54,7 +54,7 @@ class Mailchimp_Mailmunch_Sidebar_Widget extends WP_Widget {
54
  $form_id = $instance[ 'form_id' ];
55
  }
56
 
57
- $mm = new Mailmunch_Api();
58
  $result = $mm->widgets("Sidebar");
59
  if ( !is_wp_error( $result ) ) {
60
  $widgets = json_decode($result['body']);
54
  $form_id = $instance[ 'form_id' ];
55
  }
56
 
57
+ $mm = new Mailchimp_Mailmunch_Api();
58
  $result = $mm->widgets("Sidebar");
59
  if ( !is_wp_error( $result ) ) {
60
  $widgets = json_decode($result['body']);
includes/class-mailchimp-mailmunch.php CHANGED
@@ -18,7 +18,7 @@ define( 'MAILCHIMP_MAILMUNCH_URL', "http://wordpress.mailmunch.co" );
18
  define( 'MAILCHIMP_MAILMUNCH_HOME_URL', "http://app.mailmunch.co" );
19
  define( 'MAILCHIMP_MAILMUNCH_SLUG', "mailchimp-mailmunch" );
20
  define( 'MAILCHIMP_MAILMUNCH_PREFIX', 'mc_mm' );
21
- define( 'MAILCHIMP_MAILMUNCH_VERSION', '2.1.0' );
22
 
23
  /**
24
  * The core plugin class.
18
  define( 'MAILCHIMP_MAILMUNCH_HOME_URL', "http://app.mailmunch.co" );
19
  define( 'MAILCHIMP_MAILMUNCH_SLUG', "mailchimp-mailmunch" );
20
  define( 'MAILCHIMP_MAILMUNCH_PREFIX', 'mc_mm' );
21
+ define( 'MAILCHIMP_MAILMUNCH_VERSION', '2.1.1' );
22
 
23
  /**
24
  * The core plugin class.
includes/class-mailmunch-api.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- class Mailmunch_Api {
3
  protected $base_url = MAILCHIMP_MAILMUNCH_URL;
4
  protected $headers = array('Accept' => 'application/json');
5
  protected $requestType = 'get';
1
  <?php
2
+ class Mailchimp_Mailmunch_Api {
3
  protected $base_url = MAILCHIMP_MAILMUNCH_URL;
4
  protected $headers = array('Accept' => 'application/json');
5
  protected $requestType = 'get';
mailchimp-mailmunch.php CHANGED
@@ -16,7 +16,7 @@
16
  * Plugin Name: MailChimp Forms by MailMunch
17
  * Plugin URI: http://connect.mailchimp.com/integrations/mailmunch-email-list-builder
18
  * Description: The MailChimp plugin allows you to quickly and easily add signup forms for your MailChimp lists. Popup, Embedded, Top Bar and a variety of different options available.
19
- * Version: 2.1.0
20
  * Author: MailMunch
21
  * Author URI: http://www.mailmunch.co
22
  * License: GPL-2.0+
16
  * Plugin Name: MailChimp Forms by MailMunch
17
  * Plugin URI: http://connect.mailchimp.com/integrations/mailmunch-email-list-builder
18
  * Description: The MailChimp plugin allows you to quickly and easily add signup forms for your MailChimp lists. Popup, Embedded, Top Bar and a variety of different options available.
19
+ * Version: 2.1.1
20
  * Author: MailMunch
21
  * Author URI: http://www.mailmunch.co
22
  * License: GPL-2.0+
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: mailchimp,mailchimp form,mailchimp newsletter,mailchimp plugin,newsletter,
4
 
5
  Requires at least: 3.0.1
6
  Tested up to: 4.2
7
- Stable tag: 2.1.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -166,6 +166,17 @@ With MailChimp you can build a list of email subscribers. MailChimp allows you t
166
 
167
  == Changelog ==
168
 
 
 
 
 
 
 
 
 
 
 
 
169
  = MailChimp Forms 2.0.8 =
170
  * More MailChimp form themes
171
 
4
 
5
  Requires at least: 3.0.1
6
  Tested up to: 4.2
7
+ Stable tag: 2.1.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
166
 
167
  == Changelog ==
168
 
169
+ = MailChimp Forms 2.1.1 =
170
+ * Improved MailChimp Widget
171
+
172
+ = MailChimp Forms 2.1.0 =
173
+ * Refactored MailChimp Popup
174
+ * Improved MailChimp Form targeting
175
+
176
+ = MailChimp Forms 2.0.9 =
177
+ * Fixed MailChimp integration bug
178
+ * Fixed MailChimp lists not found bug
179
+
180
  = MailChimp Forms 2.0.8 =
181
  * More MailChimp form themes
182