Plugin Directory

Changeset 3187579


Ignore:
Timestamp:
11/13/2024 12:24:41 PM (17 months ago)
Author:
trackship
Message:

Version 1.8.8

Location:
trackship-for-woocommerce/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trackship-for-woocommerce/trunk/readme.txt

    r3186943 r3187579  
    55Tested up to: 6.7
    66Requires PHP: 7.4
    7 Stable tag: 1.8.7
     7Stable tag: 1.8.8
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    138138
    139139== Changelog ==
     140= 1.8.8 - 2024-11-13 =
     141* Fix - Translation issue with WordPress 6.7 fixed
     142
    140143= 1.8.7 - 2024-11-13 =
    141144* Update - Improved query for custom order number plugins.
  • trackship-for-woocommerce/trunk/trackship-for-woocommerce.php

    r3186915 r3187579  
    33 * Plugin Name: TrackShip for WooCommerce
    44 * Description: TrackShip for WooCommerce integrates TrackShip into your WooCommerce Store and auto-tracks your orders, automates your post-shipping workflow and allows you to provide a superior Post-Purchase experience to your customers.
    5  * Version: 1.8.7
     5 * Version: 1.8.8
    66 * Author: TrackShip
    77 * Author URI: https://trackship.com/
     
    1010 * Text Domain: trackship-for-woocommerce
    1111 * Domain Path: /language/
    12  * WC tested up to: 9.3.2
     12 * WC tested up to: 9.4.1
    1313 * Requires Plugins: woocommerce
    1414*/
     
    2525     * @var string
    2626    */
    27     public $version = '1.8.7';
     27    public $version = '1.8.8';
    2828    public $plugin_path;
    2929    public $ts_install;
     
    248248    */
    249249    public function on_plugins_loaded() {
     250        //load plugin textdomain
     251        load_plugin_textdomain( 'trackship-for-woocommerce', false, dirname( plugin_basename(__FILE__) ) . '/language/' );
     252       
    250253        $trackship_apikey = is_trackship_connected();
    251254
     
    256259        }
    257260        require_once $this->get_plugin_path() . '/includes/trackship-email-manager.php';
    258        
    259         //load plugin textdomain
    260         load_plugin_textdomain( 'trackship-for-woocommerce', false, dirname( plugin_basename(__FILE__) ) . '/language/' );
    261261    }
    262262
Note: See TracChangeset for help on using the changeset viewer.