Plugin Directory

Changeset 2734774


Ignore:
Timestamp:
05/31/2022 01:13:07 PM (4 years ago)
Author:
tribeinteractive
Message:

Plugin updated to v1.9.1

Location:
caddy
Files:
87 added
4 edited

Legend:

Unmodified
Added
Removed
  • caddy/trunk/README.txt

    r2722916 r2734774  
    55Tags: caddy, woocommerce, woo, cart, side cart, sticky cart, cart notices, popup cart, woocommerce cart, shopping cart, mini-cart, floating cart
    66Requires at least: 5.0
    7 Tested up to: 5.9.3
     7Tested up to: 6.0
    88Requires PHP: 7.0
    9 Stable tag: v1.9
     9Stable tag: v1.9.1
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9595== Changelog ==
    9696
     97= 1.9.1 =
     98* Fix: Added dynamic version number to public JS
     99* Improvement: WC 6.5.1 and WP 6.0 compatibility added
     100
    97101= 1.9 =
    98 
    99102* Fix: Removed "Save for later" tab when "save for later" options (in premium version) is disabled
    100103* Fix: Removed unused cc-fontawesome CSS
  • caddy/trunk/caddy.php

    r2722916 r2734774  
    44 * Plugin URI:        https://usecaddy.com
    55 * Description:       A high performance, conversion-boosting side cart for your WooCommerce store that improves the shopping experience & helps grow your sales.
    6  * Version:           1.9
     6 * Version:           1.9.1
    77 * Author:            Tribe Interactive
    88 * Author URI:        https://www.madebytribe.com
     
    1313 *
    1414 * WC requires at least: 3.0
    15  * WC tested up to: 5.6.0
     15 * WC tested up to: 6.5.1
    1616 */
    1717
     
    2525 */
    2626if ( ! defined( 'CADDY_VERSION' ) ) {
    27     define( 'CADDY_VERSION', '1.9' );
     27    define( 'CADDY_VERSION', '1.9.1' );
    2828}
    2929if ( ! defined( 'CADDY_PLUGIN_FILE' ) ) {
  • caddy/trunk/languages/caddy.pot

    r2722916 r2734774  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Caddy - Smart Side Cart for WooCommerce 1.9\n"
     5"Project-Id-Version: Caddy - Smart Side Cart for WooCommerce 1.9.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/caddy\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • caddy/trunk/public/class-caddy-public.php

    r2722916 r2734774  
    9595        wp_enqueue_script( 'cc-tabby-polyfills-js', CADDY_DIR_URL . '/public/js/tabby.polyfills.min.js', array( 'jquery' ), null, true );
    9696        wp_enqueue_script( 'cc-slick-js', CADDY_DIR_URL . '/public/js/slick.min.js', array( 'jquery' ), null, true );
    97         wp_enqueue_script( 'caddy-public', CADDY_DIR_URL . '/public/js/caddy-public.min.js', array( 'jquery' ), null, true );
     97        wp_enqueue_script( 'caddy-public', CADDY_DIR_URL . '/public/js/caddy-public.min.js', array( 'jquery' ), $this->version, true );
    9898
    9999        // make the ajaxurl var available to the above script
Note: See TracChangeset for help on using the changeset viewer.