Advanced Shipment Tracking for WooCommerce - Version 3.4.3

Version Description

  • Fix - Change esc_html__ to esc_html for dynamic variable in plain tracking info email template
Download this release

Release Info

Developer zorem
Plugin Icon 128x128 Advanced Shipment Tracking for WooCommerce
Version 3.4.3
Comparing to
See all releases

Code changes from version 3.4.2 to 3.4.3

includes/class-wc-advanced-shipment-tracking-install.php CHANGED
@@ -61,6 +61,7 @@ class WC_Advanced_Shipment_Tracking_Install {
61
  add_action( 'update_ts_shipment_status_order_mete', array( $this, 'update_ts_shipment_status_order_mete' ) );
62
  add_action( 'wp_ajax_update_ts_shipment_status_order_mete', array( $this, 'update_ts_shipment_status_order_mete' ) );
63
  add_action( 'ast_insert_shipping_provider', array( $this, 'ast_insert_shipping_provider' ), 10, 1 );
 
64
  }
65
 
66
  /**
61
  add_action( 'update_ts_shipment_status_order_mete', array( $this, 'update_ts_shipment_status_order_mete' ) );
62
  add_action( 'wp_ajax_update_ts_shipment_status_order_mete', array( $this, 'update_ts_shipment_status_order_mete' ) );
63
  add_action( 'ast_insert_shipping_provider', array( $this, 'ast_insert_shipping_provider' ), 10, 1 );
64
+ add_action( 'ast_insert_shipping_provider', array( $this, 'ast_insert_shipping_provider' ), 10, 1 );
65
  }
66
 
67
  /**
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: WooCommerce, delivery, shipping, shipment tracking, tracking
4
  Requires at least: 5.3
5
  Tested up to: 6.0
6
  Requires PHP: 7.2
7
- Stable tag: 3.4.2
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -105,6 +105,9 @@ Yes, if you use external shipping services that work with the WooCommerce REST A
105
 
106
  == Changelog ==
107
 
 
 
 
108
  = 3.4.2 =
109
  * Dev - Change CURL to wp_remote_get to get the shipping provider image
110
  * Dev - Remove text-domain from all the dynamic variables
4
  Requires at least: 5.3
5
  Tested up to: 6.0
6
  Requires PHP: 7.2
7
+ Stable tag: 3.4.3
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
105
 
106
  == Changelog ==
107
 
108
+ = 3.4.3 =
109
+ * Fix - Change esc_html__ to esc_html for dynamic variable in plain tracking info email template
110
+
111
  = 3.4.2 =
112
  * Dev - Change CURL to wp_remote_get to get the shipping provider image
113
  * Dev - Remove text-domain from all the dynamic variables
woocommerce-advanced-shipment-tracking.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: Advanced Shipment Tracking for WooCommerce
5
  * Plugin URI: https://www.zorem.com/products/woocommerce-advanced-shipment-tracking/
6
  * Description: Add shipment tracking information to your WooCommerce orders and provide customers with an easy way to track their orders. Shipment tracking Info will appear in customers accounts (in the order panel) and in WooCommerce order complete email.
7
- * Version: 3.4.2
8
  * Author: zorem
9
  * Author URI: https://www.zorem.com
10
  * License: GPL-2.0+
@@ -20,7 +20,7 @@ class Zorem_Woocommerce_Advanced_Shipment_Tracking {
20
  *
21
  * @var string
22
  */
23
- public $version = '3.4.2';
24
 
25
  /**
26
  * Initialize the main plugin function
4
  * Plugin Name: Advanced Shipment Tracking for WooCommerce
5
  * Plugin URI: https://www.zorem.com/products/woocommerce-advanced-shipment-tracking/
6
  * Description: Add shipment tracking information to your WooCommerce orders and provide customers with an easy way to track their orders. Shipment tracking Info will appear in customers accounts (in the order panel) and in WooCommerce order complete email.
7
+ * Version: 3.4.3
8
  * Author: zorem
9
  * Author URI: https://www.zorem.com
10
  * License: GPL-2.0+
20
  *
21
  * @var string
22
  */
23
+ public $version = '3.4.3';
24
 
25
  /**
26
  * Initialize the main plugin function