Plugin Directory

Changeset 3201584


Ignore:
Timestamp:
12/03/2024 11:19:02 AM (14 months ago)
Author:
leewillis77
Message:

Deploying 3.4.0

Location:
cart-recovery/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • cart-recovery/trunk/cart-recovery-for-wordpress.php

    r3168268 r3201584  
    66 * Description: An easy-to-use plugin that allows you to capture abandoned, and failed orders, and follow up.
    77 * Author: Ademti Software
    8  * Version: 3.3.3
     8 * Version: 3.4.0
    99 * WC requires at least: 9.0
    1010 * WC tested up to: 9.4
     
    3838}
    3939
    40 define( 'CRFW_VERSION', '3.3.3' );
    41 define( 'CRFW_DB_VERSION', 5 );
     40define( 'CRFW_VERSION', '3.4.0' );
     41define( 'CRFW_DB_VERSION', 6 );
    4242
    4343if ( version_compare( phpversion(), '5.5', '<' ) ) {
  • cart-recovery/trunk/classes/Main.php

    r3019706 r3201584  
    304304
    305305    /**
     306     * Adds a cart_id index to the crfw_cart_event table.
     307     *
     308     * @return void
     309     */
     310    private function upgrade_db_to_6() {
     311        global $wpdb;
     312
     313        require_once ABSPATH . 'wp-admin/includes/upgrade.php';
     314
     315        $charset_collate = $wpdb->get_charset_collate();
     316        $table_name = $wpdb->prefix . 'crfw_cart_event';
     317        $sql = "CREATE TABLE $table_name (
     318                    id INT NOT NULL AUTO_INCREMENT,
     319                    cart_id INT NOT NULL,
     320                    type varchar(255) NOT NULL DEFAULT 'note',
     321                    details text,
     322                    created INT NOT NULL,
     323                    PRIMARY KEY  (id)
     324                    KEY cart_id_idx (cart_id)
     325                ) $charset_collate";
     326        dbDelta($sql);
     327    }
     328
     329    /**
    306330     * Output the admin header wrappers.
    307331     */
  • cart-recovery/trunk/readme.txt

    r3178043 r3201584  
    77License: GPL v2
    88Requires PHP: 7.4
    9 Stable tag: 3.3.3
     9Stable tag: 3.4.0
    1010
    1111Cart recovery for WordPress brings abandoned cart recovery and tracking to your WordPress store.
     
    5151== Changelog ==
    5252
     53= 3.4.0 =
     54* Update: Performance improvement to cart event queries
     55
    5356= 3.3.3 =
    5457* Fix: Resolve issue where preview emails could fail if a zero-value product was selected
Note: See TracChangeset for help on using the changeset viewer.