Plugin Directory

Changeset 996344


Ignore:
Timestamp:
09/24/2014 09:37:11 PM (12 years ago)
Author:
RightPress
Message:

Releasing version 1.0.3

Location:
chimpy-lite
Files:
6 edited
12 copied

Legend:

Unmodified
Added
Removed
  • chimpy-lite/tags/1.0.3/assets/css/style-admin.css

    r913404 r996344  
    5959}
    6060
    61 .chimpy-lite-field {
     61input[type="text"].chimpy-lite-field,
     62select.chimpy-lite-field {
    6263    width: 400px;
    6364}
  • chimpy-lite/tags/1.0.3/assets/js/chimpy-lite-frontend.js

    r887908 r996344  
    3030    function chimpy_lite_process_mailchimp_signup(button, context)
    3131    {
    32         if (button.parent().parent().valid()) {
     32        if (button.closest('.chimpy_lite_signup_form').valid()) {
    3333
    34             button.parent().parent().find('fieldset').fadeOut(function() {
     34            button.closest('.chimpy_lite_signup_form').find('fieldset').fadeOut(function() {
    3535
    36                 var  this_form = jQuery(this).parent();
     36                var  this_form = jQuery(this).closest('.chimpy_lite_signup_form');
    3737                this_form.find('#chimpy_lite_signup_'+context+'_processing').fadeIn();
    3838                button.prop('disabled', true);
     
    4242                    {
    4343                        'action': 'chimpy_lite_subscribe',
    44                         'data': button.parent().parent().serialize()
     44                        'data': button.closest('.chimpy_lite_signup_form').serialize()
    4545                    },
    4646                    function(response) {
  • chimpy-lite/tags/1.0.3/changelog

    r913404 r996344  
     1Version 1.0.3, September 25 2014
     2------------------------------------------------------------------------------------
     3[*] Improved frontend Javascript to work when shortcodes are wrapped in other code
     4
    15Version 1.0.2, May 13 2014
    26------------------------------------------------------------------------------------
  • chimpy-lite/tags/1.0.3/chimpy-lite.php

    r913404 r996344  
    55 * Plugin URI: http://www.rightpress.net/chimpy-lite
    66 * Description: Chimpy is the best MailChimp plugin. Just enter your MailChimp API key and you are ready to go. It works smoothly and features professional design.
    7  * Version: 1.0.2
     7 * Version: 1.0.3
    88 * Author: RightPress
    99 * Author URI: http://www.rightpress.net
    1010 * Requires at least: 3.5
    11  * Tested up to: 3.9
     11 * Tested up to: 4.0
    1212 *
    1313 * Text Domain: chimpy-lite
     
    4242define('CHIMPY_LITE_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__)));
    4343define('CHIMPY_LITE_PLUGIN_URL', plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__)));
    44 define('CHIMPY_LITE_VERSION', '1.0.2');
     44define('CHIMPY_LITE_VERSION', '1.0.3');
    4545
    4646if (!class_exists('ChimpyLite')) {
     
    32563256    }
    32573257
     3258    $GLOBALS['ChimpyLite'] = ChimpyLite::get_instance();
     3259
    32583260}
    32593261
    3260 $GLOBALS['ChimpyLite'] = ChimpyLite::get_instance();
    3261 
    32623262?>
  • chimpy-lite/tags/1.0.3/readme.txt

    r913404 r996344  
    44Tags: mailchimp wordpress, mailchimp plugin, mailchimp integration, mailchimp signup, mailchimp, newsletter, newsletter signup
    55Requires at least: 3.5
    6 Tested up to: 3.9
    7 Stable tag: 1.0.2
     6Tested up to: 4.0
     7Stable tag: 1.0.3
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    5555> [Learn More Now](http://codecanyon.net/item/chimpy-mailchimp-wordpress-plugin/6290216?ref=RightPress)
    5656
    57 <small>Form Design - [Sky Forms Pro](http://codecanyon.net/item/sky-forms-pro/5414510?ref=RightPress)</small>
     57<small>Form Design: [Sky Forms Pro](http://codecanyon.net/item/sky-forms-pro/5414510?ref=RightPress)</small>
     58<small>Other products by RightPress: [Subscriptio - WooCommerce Subscriptions](http://codecanyon.net/item/subscriptio-woocommerce-subscriptions/8754068?ref=RightPress), [WooCommerce Membership](http://codecanyon.net/item/woocommerce-membership/8746370?ref=RightPress), [WooCommerce Quote](http://codecanyon.net/item/woocommerce-quote/7411885?ref=RightPress), [WooCommerce Dynamic Pricing & Discounts](http://codecanyon.net/item/woocommerce-dynamic-pricing-discounts/7119279?ref=RightPress), [Chimpy - MailChimp WordPress Plugin](http://codecanyon.net/item/chimpy-mailchimp-wordpress-plugin/6290216?ref=RightPress), [WooChimp - WooCommerce MailChimp Integration](http://codecanyon.net/item/woochimp-woocommerce-mailchimp-integration/6044286?ref=RightPress), [WooCommerce PDF Invoice](http://codecanyon.net/item/woocommerce-pdf-invoice/5951088?ref=RightPress)</small>
    5859
    5960== Installation ==
     
    8485== Changelog ==
    8586
     87= 1.0.3 =
     88* Improved frontend Javascript to work when shortcodes are wrapped in other code
     89* Declaring support for WordPress 4.0
     90
     91= 1.0.2 =
     92* Several minor bug fixes
     93
     94= 1.0.1 =
     95* Declaring support for WordPress 3.9
     96
    8697= 1.0 =
    8798* Initial release
  • chimpy-lite/trunk/assets/css/style-admin.css

    r913404 r996344  
    5959}
    6060
    61 .chimpy-lite-field {
     61input[type="text"].chimpy-lite-field,
     62select.chimpy-lite-field {
    6263    width: 400px;
    6364}
  • chimpy-lite/trunk/assets/js/chimpy-lite-frontend.js

    r887908 r996344  
    3030    function chimpy_lite_process_mailchimp_signup(button, context)
    3131    {
    32         if (button.parent().parent().valid()) {
     32        if (button.closest('.chimpy_lite_signup_form').valid()) {
    3333
    34             button.parent().parent().find('fieldset').fadeOut(function() {
     34            button.closest('.chimpy_lite_signup_form').find('fieldset').fadeOut(function() {
    3535
    36                 var  this_form = jQuery(this).parent();
     36                var  this_form = jQuery(this).closest('.chimpy_lite_signup_form');
    3737                this_form.find('#chimpy_lite_signup_'+context+'_processing').fadeIn();
    3838                button.prop('disabled', true);
     
    4242                    {
    4343                        'action': 'chimpy_lite_subscribe',
    44                         'data': button.parent().parent().serialize()
     44                        'data': button.closest('.chimpy_lite_signup_form').serialize()
    4545                    },
    4646                    function(response) {
  • chimpy-lite/trunk/changelog

    r913404 r996344  
     1Version 1.0.3, September 25 2014
     2------------------------------------------------------------------------------------
     3[*] Improved frontend Javascript to work when shortcodes are wrapped in other code
     4
    15Version 1.0.2, May 13 2014
    26------------------------------------------------------------------------------------
  • chimpy-lite/trunk/chimpy-lite.php

    r913404 r996344  
    55 * Plugin URI: http://www.rightpress.net/chimpy-lite
    66 * Description: Chimpy is the best MailChimp plugin. Just enter your MailChimp API key and you are ready to go. It works smoothly and features professional design.
    7  * Version: 1.0.2
     7 * Version: 1.0.3
    88 * Author: RightPress
    99 * Author URI: http://www.rightpress.net
    1010 * Requires at least: 3.5
    11  * Tested up to: 3.9
     11 * Tested up to: 4.0
    1212 *
    1313 * Text Domain: chimpy-lite
     
    4242define('CHIMPY_LITE_PLUGIN_PATH', untrailingslashit(plugin_dir_path(__FILE__)));
    4343define('CHIMPY_LITE_PLUGIN_URL', plugins_url(basename(plugin_dir_path(__FILE__)), basename(__FILE__)));
    44 define('CHIMPY_LITE_VERSION', '1.0.2');
     44define('CHIMPY_LITE_VERSION', '1.0.3');
    4545
    4646if (!class_exists('ChimpyLite')) {
     
    32563256    }
    32573257
     3258    $GLOBALS['ChimpyLite'] = ChimpyLite::get_instance();
     3259
    32583260}
    32593261
    3260 $GLOBALS['ChimpyLite'] = ChimpyLite::get_instance();
    3261 
    32623262?>
  • chimpy-lite/trunk/readme.txt

    r913404 r996344  
    44Tags: mailchimp wordpress, mailchimp plugin, mailchimp integration, mailchimp signup, mailchimp, newsletter, newsletter signup
    55Requires at least: 3.5
    6 Tested up to: 3.9
    7 Stable tag: 1.0.2
     6Tested up to: 4.0
     7Stable tag: 1.0.3
    88License: GPLv3 or later
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    5555> [Learn More Now](http://codecanyon.net/item/chimpy-mailchimp-wordpress-plugin/6290216?ref=RightPress)
    5656
    57 <small>Form Design - [Sky Forms Pro](http://codecanyon.net/item/sky-forms-pro/5414510?ref=RightPress)</small>
     57<small>Form Design: [Sky Forms Pro](http://codecanyon.net/item/sky-forms-pro/5414510?ref=RightPress)</small>
     58<small>Other products by RightPress: [Subscriptio - WooCommerce Subscriptions](http://codecanyon.net/item/subscriptio-woocommerce-subscriptions/8754068?ref=RightPress), [WooCommerce Membership](http://codecanyon.net/item/woocommerce-membership/8746370?ref=RightPress), [WooCommerce Quote](http://codecanyon.net/item/woocommerce-quote/7411885?ref=RightPress), [WooCommerce Dynamic Pricing & Discounts](http://codecanyon.net/item/woocommerce-dynamic-pricing-discounts/7119279?ref=RightPress), [Chimpy - MailChimp WordPress Plugin](http://codecanyon.net/item/chimpy-mailchimp-wordpress-plugin/6290216?ref=RightPress), [WooChimp - WooCommerce MailChimp Integration](http://codecanyon.net/item/woochimp-woocommerce-mailchimp-integration/6044286?ref=RightPress), [WooCommerce PDF Invoice](http://codecanyon.net/item/woocommerce-pdf-invoice/5951088?ref=RightPress)</small>
    5859
    5960== Installation ==
     
    8485== Changelog ==
    8586
     87= 1.0.3 =
     88* Improved frontend Javascript to work when shortcodes are wrapped in other code
     89* Declaring support for WordPress 4.0
     90
     91= 1.0.2 =
     92* Several minor bug fixes
     93
     94= 1.0.1 =
     95* Declaring support for WordPress 3.9
     96
    8697= 1.0 =
    8798* Initial release
Note: See TracChangeset for help on using the changeset viewer.