Plugin Directory

Changeset 3187246


Ignore:
Timestamp:
11/13/2024 09:00:33 AM (17 months ago)
Author:
morganhvidt
Message:

version 4.0.1

Location:
checkout-countdown-for-woocommerce
Files:
25 added
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • checkout-countdown-for-woocommerce/trunk/assets/checkout-countdown.css

    r3115281 r3187246  
    44    width: 100%;
    55    z-index: 9999;
    6 }
    7 .checkout-countdown-is-hidden {
    8     display: none;
    96}
    107@-webkit-keyframes checkout-countdown-loading-dot-keyframes {
     
    6259    animation-delay: 1s;
    6360}
     61.checkout-countdown-is-hidden {
     62    display: none !important;
     63}
  • checkout-countdown-for-woocommerce/trunk/checkout-countdown-for-woocommerce.php

    r3115281 r3187246  
    33 * Plugin Name:       Checkout Countdown for WooCommerce
    44 * Description:       A flexible WooCommerce cart/checkout countdown to help improve cart conversion.
    5  * Version:           4.0.0
     5 * Version:           4.0.1
    66 * Author:            Puri.io
    77 * Author URI:        https://puri.io/
    88 * Text Domain:       checkout-countdown-for-woocommerce
    9  * Domain Path:       /languages
     9 * Domain Path:       /languages/
    1010 *
    1111 * Requires PHP: 7.4
    1212 * Requires at least: 5.0
    1313 * WC requires at least: 5.0
    14  * WC tested up to: 9.0
     14 * WC tested up to: 9.4
    1515 */
    1616
     
    4545    function ccfwoo_admin_notifications() {
    4646
    47         $compatability = apply_filters( 'ccfwoo_extend_setup', array() );
     47        $compatibility = apply_filters( 'ccfwoo_extend_setup', array() );
    4848
    49         if ( isset( $compatability['pro'] ) && isset( $compatability['pro']['version'] ) ) {
     49        if ( isset( $compatibility['pro'] ) && isset( $compatibility['pro']['version'] ) ) {
    5050
    51             if ( version_compare( $compatability['pro']['version'], '3.0.0' ) < 0 ) {
     51            if ( version_compare( $compatibility['pro']['version'], '3.0.0' ) < 0 ) {
    5252                $class = 'notice notice-error';
    5353                $message = __( 'Update required to Checkout Countdown Pro 3.0+ or downgrade to Checkout Countdown Free 2.4.4', 'checkout-countdown-for-woocommerce' );
     
    9696        $this->constants = array(
    9797            'name' => 'Checkout Countdown for WooCommerce',
    98             'version' => '4.0.0',
     98            'version' => '4.0.1',
    9999            'prefix' => 'ccfwoo',
    100100            'admin_page' => 'checkout-countdown',
  • checkout-countdown-for-woocommerce/trunk/functions/enqueue.php

    r3115281 r3187246  
    66function ccfwoo_core_enqueue_scripts() {
    77
    8     wp_enqueue_style( 'ccfwoo-style', plugin_dir_url( __FILE__ ) . '../assets/checkout-countdown.min.css', array(), '4.0.0' );
     8    wp_enqueue_style( 'ccfwoo-style', plugin_dir_url( __FILE__ ) . '../assets/checkout-countdown.css', array(), '4.0.1' );
    99
    1010    if ( ccfwoo_get_option( 'bar_position', false, 'top' ) === 'top' ) {
     
    2929
    3030    // Load Javascript and Access settings as variables.
    31     wp_enqueue_script( 'ccfwoo-countdown', plugin_dir_url( __FILE__ ) . '../assets/checkout-countdown.min.js', array(), '4.0.0', true );
     31    wp_enqueue_script( 'ccfwoo-countdown', plugin_dir_url( __FILE__ ) . '../assets/checkout-countdown.min.js', array(), '4.0.1', true );
    3232
    3333    $countdown_text = sprintf(
  • checkout-countdown-for-woocommerce/trunk/languages/checkout-countdown-for-woocommerce.pot

    r3115281 r3187246  
    99"Language-Team: Puri.io\n"
    1010"Last-Translator: Puri.io\n"
    11 "POT-Creation-Date: 2024-07-10 06:01+0000\n"
     11"POT-Creation-Date: 2024-11-13 08:51+0000\n"
    1212"X-Poedit-Basepath: ..\n"
    1313"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
  • checkout-countdown-for-woocommerce/trunk/readme.txt

    r3115281 r3187246  
    77Donate link: https://www.paypal.me/morganhvidt/
    88Requires at least: 5.0
    9 Tested up to: 6.6
     9Tested up to: 6.7
    1010Requires PHP: 7.4
    1111Stable tag: trunk
     
    139139== Changelog ==
    140140
     141= 4.0.1 =
     142
     143* Fixed edge case where countdown-is-hidden would not be respected.
     144* Ready & tested for WordPress 6.7
     145* Ready & tested for WooCommerce 9.4
     146
    141147= 4.0.0 =
    142148
Note: See TracChangeset for help on using the changeset viewer.