Plugin Directory

Changeset 3388946


Ignore:
Timestamp:
11/03/2025 02:42:56 PM (4 months ago)
Author:
sendsmaily
Message:

Release 1.4.1, see readme.txt for the changelog.

Location:
smaily-connect
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • smaily-connect/tags/1.4.1/admin/smaily-admin-settings.class.php

    r3340411 r3388946  
    289289            array(
    290290                'option_name' => Options::ABANDONED_CART_CUTOFF_OPTION,
    291                 'min'         => Options::ABANDONED_CART_DEFAULT_CUTOFF,
     291                'min'         => Options::ABANDONED_CART_MIN_CUTOFF,
    292292                'help'        => __( 'Time in minutes after which the cart is considered abandoned. Minimum 10 minutes.', 'smaily-connect' ),
    293293            )
  • smaily-connect/tags/1.4.1/includes/smaily-options.class.php

    r3356475 r3388946  
    5454        'autoresponder_id' => 0,
    5555    );
     56
     57    /**
     58     * Minimum value the abandoned cart cutoff time can be set to in minutes.
     59     *
     60     * @var array
     61     */
     62    const ABANDONED_CART_MIN_CUTOFF = 10;
    5663
    5764    /**
  • smaily-connect/tags/1.4.1/readme.txt

    r3385821 r3388946  
    66Tested up to: 6.8
    77WC tested up to: 9.6.1
    8 Stable tag: 1.4.0
     8Stable tag: 1.4.1
    99License: GPLv3 or later
    1010
  • smaily-connect/tags/1.4.1/smaily-connect.php

    r3385821 r3388946  
    1212 * Plugin URI:        https://smaily.com/help/user-manual/smaily-connect-for-wordpress/
    1313 * Text Domain:       smaily-connect
    14  * Version:           1.4.0
     14 * Version:           1.4.1
    1515*/
    1616
     
    2323 * Current plugin version.
    2424 */
    25 define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.4.0' );
     25define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.4.1' );
    2626
    2727/**
  • smaily-connect/trunk/admin/smaily-admin-settings.class.php

    r3340411 r3388946  
    289289            array(
    290290                'option_name' => Options::ABANDONED_CART_CUTOFF_OPTION,
    291                 'min'         => Options::ABANDONED_CART_DEFAULT_CUTOFF,
     291                'min'         => Options::ABANDONED_CART_MIN_CUTOFF,
    292292                'help'        => __( 'Time in minutes after which the cart is considered abandoned. Minimum 10 minutes.', 'smaily-connect' ),
    293293            )
  • smaily-connect/trunk/includes/smaily-options.class.php

    r3356475 r3388946  
    5454        'autoresponder_id' => 0,
    5555    );
     56
     57    /**
     58     * Minimum value the abandoned cart cutoff time can be set to in minutes.
     59     *
     60     * @var array
     61     */
     62    const ABANDONED_CART_MIN_CUTOFF = 10;
    5663
    5764    /**
  • smaily-connect/trunk/readme.txt

    r3385821 r3388946  
    66Tested up to: 6.8
    77WC tested up to: 9.6.1
    8 Stable tag: 1.4.0
     8Stable tag: 1.4.1
    99License: GPLv3 or later
    1010
  • smaily-connect/trunk/smaily-connect.php

    r3385821 r3388946  
    1212 * Plugin URI:        https://smaily.com/help/user-manual/smaily-connect-for-wordpress/
    1313 * Text Domain:       smaily-connect
    14  * Version:           1.4.0
     14 * Version:           1.4.1
    1515*/
    1616
     
    2323 * Current plugin version.
    2424 */
    25 define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.4.0' );
     25define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.4.1' );
    2626
    2727/**
Note: See TracChangeset for help on using the changeset viewer.