Plugin Directory

Changeset 3266071


Ignore:
Timestamp:
04/03/2025 07:44:37 AM (11 months ago)
Author:
sendsmaily
Message:

Release 1.12.2, see readme.txt for the changelog.

Location:
smaily-for-woocommerce
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • smaily-for-woocommerce/tags/1.12.2/inc/Base/Cron.php

    r3198193 r3266071  
    239239            // Query for Smaily autoresponder.
    240240            $query = [
    241                 'autoresponder' => $results['result']['cart_autoresponder_id'], // autoresponder ID.
    242                 'addresses'     => [ $addresses ],
     241                'autoresponder'     => $results['result']['cart_autoresponder_id'], // autoresponder ID.
     242                'addresses'         => [ $addresses ],
     243                'force_opt_in'      => false,
     244                'is_abandoned_cart' => true,
    243245            ];
    244246            // Send data to Smaily.
  • smaily-for-woocommerce/tags/1.12.2/readme.txt

    r3255181 r3266071  
    55Requires at least: 4.5
    66Tested up to: 6.7
    7 WC tested up to: 9.3.1
    8 Stable tag: 1.12.1
     7WC tested up to: 9.7
     8Stable tag: 1.12.2
    99License: GPLv3
    1010
     
    152152== Changelog ==
    153153
     154= 1.12.2 =
     155
     156- Adds `"is_abandoned_cart" = "true"` field to abandoned cart automation payload
     157- Does not opt-in customers who received abandoned cart email
     158- WooCommerce 9.7 compatibility
     159
    154160= 1.12.1 =
    155161
  • smaily-for-woocommerce/tags/1.12.2/smaily-for-woocommerce.php

    r3255181 r3266071  
    1414 * Plugin URI: https://github.com/sendsmaily/smaily-woocommerce-plugin
    1515 * Description: Smaily email marketing and automation extension plugin for WooCommerce. Set up easy sync for your contacts, add opt-in subscription form, import products directly to your email template and send abandoned cart reminder emails.
    16  * Version: 1.12.1
     16 * Version: 1.12.2
    1717 * License: GPL3
    1818 * Author: Smaily
     
    4949define( 'SMAILY_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
    5050define( 'SMAILY_PLUGIN_NAME', plugin_basename( __FILE__ ) );
    51 define( 'SMAILY_PLUGIN_VERSION', '1.12.1' );
     51define( 'SMAILY_PLUGIN_VERSION', '1.12.2' );
    5252
    5353// Required to use functions is_plugin_active and deactivate_plugins.
  • smaily-for-woocommerce/tags/1.12.2/vendor/composer/installed.php

    r3255181 r3266071  
    22    'root' => array(
    33        'name' => 'smaily/smaily_for_woocommerce',
    4         'pretty_version' => '1.12.1',
    5         'version' => '1.12.1.0',
    6         'reference' => 'daec98fd5dfbff339eee28571485c2000eae1695',
     4        'pretty_version' => '1.12.2',
     5        'version' => '1.12.2.0',
     6        'reference' => '46d68d2e752c6b81d077e5d387c0d2fa3210c964',
    77        'type' => 'plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'smaily/smaily_for_woocommerce' => array(
    14             'pretty_version' => '1.12.1',
    15             'version' => '1.12.1.0',
    16             'reference' => 'daec98fd5dfbff339eee28571485c2000eae1695',
     14            'pretty_version' => '1.12.2',
     15            'version' => '1.12.2.0',
     16            'reference' => '46d68d2e752c6b81d077e5d387c0d2fa3210c964',
    1717            'type' => 'plugin',
    1818            'install_path' => __DIR__ . '/../../',
  • smaily-for-woocommerce/trunk/inc/Base/Cron.php

    r3198193 r3266071  
    239239            // Query for Smaily autoresponder.
    240240            $query = [
    241                 'autoresponder' => $results['result']['cart_autoresponder_id'], // autoresponder ID.
    242                 'addresses'     => [ $addresses ],
     241                'autoresponder'     => $results['result']['cart_autoresponder_id'], // autoresponder ID.
     242                'addresses'         => [ $addresses ],
     243                'force_opt_in'      => false,
     244                'is_abandoned_cart' => true,
    243245            ];
    244246            // Send data to Smaily.
  • smaily-for-woocommerce/trunk/readme.txt

    r3255181 r3266071  
    55Requires at least: 4.5
    66Tested up to: 6.7
    7 WC tested up to: 9.3.1
    8 Stable tag: 1.12.1
     7WC tested up to: 9.7
     8Stable tag: 1.12.2
    99License: GPLv3
    1010
     
    152152== Changelog ==
    153153
     154= 1.12.2 =
     155
     156- Adds `"is_abandoned_cart" = "true"` field to abandoned cart automation payload
     157- Does not opt-in customers who received abandoned cart email
     158- WooCommerce 9.7 compatibility
     159
    154160= 1.12.1 =
    155161
  • smaily-for-woocommerce/trunk/smaily-for-woocommerce.php

    r3255181 r3266071  
    1414 * Plugin URI: https://github.com/sendsmaily/smaily-woocommerce-plugin
    1515 * Description: Smaily email marketing and automation extension plugin for WooCommerce. Set up easy sync for your contacts, add opt-in subscription form, import products directly to your email template and send abandoned cart reminder emails.
    16  * Version: 1.12.1
     16 * Version: 1.12.2
    1717 * License: GPL3
    1818 * Author: Smaily
     
    4949define( 'SMAILY_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
    5050define( 'SMAILY_PLUGIN_NAME', plugin_basename( __FILE__ ) );
    51 define( 'SMAILY_PLUGIN_VERSION', '1.12.1' );
     51define( 'SMAILY_PLUGIN_VERSION', '1.12.2' );
    5252
    5353// Required to use functions is_plugin_active and deactivate_plugins.
  • smaily-for-woocommerce/trunk/vendor/composer/installed.php

    r3255181 r3266071  
    22    'root' => array(
    33        'name' => 'smaily/smaily_for_woocommerce',
    4         'pretty_version' => '1.12.1',
    5         'version' => '1.12.1.0',
    6         'reference' => 'daec98fd5dfbff339eee28571485c2000eae1695',
     4        'pretty_version' => '1.12.2',
     5        'version' => '1.12.2.0',
     6        'reference' => '46d68d2e752c6b81d077e5d387c0d2fa3210c964',
    77        'type' => 'plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'smaily/smaily_for_woocommerce' => array(
    14             'pretty_version' => '1.12.1',
    15             'version' => '1.12.1.0',
    16             'reference' => 'daec98fd5dfbff339eee28571485c2000eae1695',
     14            'pretty_version' => '1.12.2',
     15            'version' => '1.12.2.0',
     16            'reference' => '46d68d2e752c6b81d077e5d387c0d2fa3210c964',
    1717            'type' => 'plugin',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.