Version Description
- 2022-01-05 =
- * Fix - Remove 'translate : true' in package.json.
Download this release
Release Info
Developer | harriswong |
Plugin | WooCommerce ShipStation Gateway |
Version | 4.1.49 |
Comparing to | |
See all releases |
Code changes from version 4.1.48 to 4.1.49
- changelog.txt +3 -0
- readme.txt +4 -1
- woocommerce-shipstation.php +2 -2
changelog.txt
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
*** ShipStation for WooCommerce ***
|
2 |
|
|
|
|
|
|
|
3 |
= 4.1.48 - 2021-11-03 =
|
4 |
* Fix - Critical Error when null value is passed to appendChild method.
|
5 |
* Fix - $logging_enabled compared against string instead of boolean.
|
1 |
*** ShipStation for WooCommerce ***
|
2 |
|
3 |
+
= 4.1.49 - 2022-01-05 =
|
4 |
+
* Fix - Remove 'translate : true' in package.json.
|
5 |
+
|
6 |
= 4.1.48 - 2021-11-03 =
|
7 |
* Fix - Critical Error when null value is passed to appendChild method.
|
8 |
* Fix - $logging_enabled compared against string instead of boolean.
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: shipping, woocommerce, automattic
|
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 5.8
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 4.1.
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -46,6 +46,9 @@ If you get stuck, you can ask for help in the Plugin Forum.
|
|
46 |
|
47 |
== Changelog ==
|
48 |
|
|
|
|
|
|
|
49 |
= 4.1.48 - 2021-11-03 =
|
50 |
* Fix - Critical Error when null value is passed to appendChild method.
|
51 |
* Fix - $logging_enabled compared against string instead of boolean.
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 5.8
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 4.1.49
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
46 |
|
47 |
== Changelog ==
|
48 |
|
49 |
+
= 4.1.49 - 2022-01-05 =
|
50 |
+
* * Fix - Remove 'translate : true' in package.json.
|
51 |
+
|
52 |
= 4.1.48 - 2021-11-03 =
|
53 |
* Fix - Critical Error when null value is passed to appendChild method.
|
54 |
* Fix - $logging_enabled compared against string instead of boolean.
|
woocommerce-shipstation.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Plugin Name: WooCommerce - ShipStation Integration
|
4 |
* Plugin URI: https://woocommerce.com/products/shipstation-integration/
|
5 |
-
* Version: 4.1.
|
6 |
* Description: Adds ShipStation label printing support to WooCommerce. Requires server DomDocument support.
|
7 |
* Author: WooCommerce
|
8 |
* Author URI: https://woocommerce.com/
|
@@ -41,7 +41,7 @@ function woocommerce_shipstation_init() {
|
|
41 |
return;
|
42 |
}
|
43 |
|
44 |
-
define( 'WC_SHIPSTATION_VERSION', '4.1.
|
45 |
define( 'WC_SHIPSTATION_FILE', __FILE__ );
|
46 |
|
47 |
if ( ! defined( 'WC_SHIPSTATION_EXPORT_LIMIT' ) ) {
|
2 |
/**
|
3 |
* Plugin Name: WooCommerce - ShipStation Integration
|
4 |
* Plugin URI: https://woocommerce.com/products/shipstation-integration/
|
5 |
+
* Version: 4.1.49
|
6 |
* Description: Adds ShipStation label printing support to WooCommerce. Requires server DomDocument support.
|
7 |
* Author: WooCommerce
|
8 |
* Author URI: https://woocommerce.com/
|
41 |
return;
|
42 |
}
|
43 |
|
44 |
+
define( 'WC_SHIPSTATION_VERSION', '4.1.49' ); // WRCS: DEFINED_VERSION.
|
45 |
define( 'WC_SHIPSTATION_FILE', __FILE__ );
|
46 |
|
47 |
if ( ! defined( 'WC_SHIPSTATION_EXPORT_LIMIT' ) ) {
|