Changeset 3093733
- Timestamp:
- 05/28/2024 09:13:28 AM (20 months ago)
- Location:
- woocommerce-shipstation-integration
- Files:
-
- 14 edited
- 1 copied
-
tags/4.4.3 (copied) (copied from woocommerce-shipstation-integration/trunk)
-
tags/4.4.3/changelog.txt (modified) (1 diff)
-
tags/4.4.3/includes/api-requests/class-wc-shipstation-api-export.php (modified) (1 diff)
-
tags/4.4.3/includes/api-requests/class-wc-shipstation-api-shipnotify.php (modified) (2 diffs)
-
tags/4.4.3/includes/class-wc-shipstation-privacy.php (modified) (1 diff)
-
tags/4.4.3/languages/woocommerce-shipstation.pot (modified) (1 diff)
-
tags/4.4.3/readme.txt (modified) (2 diffs)
-
tags/4.4.3/woocommerce-shipstation.php (modified) (3 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/includes/api-requests/class-wc-shipstation-api-export.php (modified) (1 diff)
-
trunk/includes/api-requests/class-wc-shipstation-api-shipnotify.php (modified) (2 diffs)
-
trunk/includes/class-wc-shipstation-privacy.php (modified) (1 diff)
-
trunk/languages/woocommerce-shipstation.pot (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/woocommerce-shipstation.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-shipstation-integration/tags/4.4.3/changelog.txt
r3067979 r3093733 1 1 *** ShipStation for WooCommerce *** 2 3 = 4.4.3 - 2024-05-27 = 4 * Tweak - Performance enhancement. 2 5 3 6 = 4.4.2 - 2024-04-09 = -
woocommerce-shipstation-integration/tags/4.4.3/includes/api-requests/class-wc-shipstation-api-export.php
r3054381 r3093733 415 415 $order->add_order_note( __( 'Order has been exported to Shipstation', 'woocommerce-shipstation-integration' ) ); 416 416 $order->update_meta_data( '_shipstation_exported', 'yes' ); 417 $order->save ();417 $order->save_meta_data(); 418 418 } 419 419 } -
woocommerce-shipstation-integration/tags/4.4.3/includes/api-requests/class-wc-shipstation-api-shipnotify.php
r3067979 r3093733 301 301 302 302 $order->update_meta_data( '_shipstation_shipped_item_count', $current_shipped_items + $shipped_item_count ); 303 $order->save ();303 $order->save_meta_data(); 304 304 } else { 305 305 // If we don't have items from SS and order items in WC, or cannot parse … … 330 330 $order->update_meta_data( '_tracking_number', $tracking_number ); 331 331 $order->update_meta_data( '_date_shipped', $timestamp ); 332 $order->save ();332 $order->save_meta_data(); 333 333 } 334 334 -
woocommerce-shipstation-integration/tags/4.4.3/includes/class-wc-shipstation-privacy.php
r3054381 r3093733 168 168 $order->delete_meta_data( '_date_shipped' ); 169 169 $order->delete_meta_data( '_shipstation_exported' ); 170 $order->save ();170 $order->save_meta_data(); 171 171 172 172 return array( true, false, array( __( 'ShipStation Order Data Erased.', 'woocommerce-shipstation-integration' ) ) ); -
woocommerce-shipstation-integration/tags/4.4.3/languages/woocommerce-shipstation.pot
r3067979 r3093733 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WooCommerce - ShipStation Integration 4.4. 2\n"5 "Project-Id-Version: WooCommerce - ShipStation Integration 4.4.3\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "https://wordpress.org/support/plugin/woocommerce-shipstation\n" 8 "POT-Creation-Date: 2024-0 4-09 21:17:34+00:00\n"8 "POT-Creation-Date: 2024-05-28 09:12:56+00:00\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" -
woocommerce-shipstation-integration/tags/4.4.3/readme.txt
r3067979 r3093733 4 4 Requires at least: 6.3 5 5 Tested up to: 6.5 6 WC tested up to: 8. 77 WC requires at least: 8. 56 WC tested up to: 8.9 7 WC requires at least: 8.7 8 8 Requires PHP: 7.4 9 9 Requires Plugins: woocommerce 10 Stable tag: 4.4. 210 Stable tag: 4.4.3 11 11 License: GPLv3 12 12 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 49 49 50 50 == Changelog == 51 52 = 4.4.3 - 2024-05-27 = 53 * Tweak - Performance enhancement. 51 54 52 55 = 4.4.2 - 2024-04-09 = -
woocommerce-shipstation-integration/tags/4.4.3/woocommerce-shipstation.php
r3067979 r3093733 3 3 * Plugin Name: WooCommerce - ShipStation Integration 4 4 * Plugin URI: https://woocommerce.com/products/shipstation-integration/ 5 * Version: 4.4. 25 * Version: 4.4.3 6 6 * Description: Adds ShipStation label printing support to WooCommerce. Requires server DomDocument support. 7 7 * Author: WooCommerce … … 11 11 * Requires at least: 6.3 12 12 * Tested up to: 6.5 13 * WC tested up to: 8. 714 * WC requires at least: 8. 513 * WC tested up to: 8.9 14 * WC requires at least: 8.7 15 15 * Requires Plugins: woocommerce 16 16 * … … 51 51 } 52 52 53 define( 'WC_SHIPSTATION_VERSION', '4.4. 2' ); // WRCS: DEFINED_VERSION.53 define( 'WC_SHIPSTATION_VERSION', '4.4.3' ); // WRCS: DEFINED_VERSION. 54 54 55 55 if ( ! defined( 'WC_SHIPSTATION_EXPORT_LIMIT' ) ) { -
woocommerce-shipstation-integration/trunk/changelog.txt
r3067979 r3093733 1 1 *** ShipStation for WooCommerce *** 2 3 = 4.4.3 - 2024-05-27 = 4 * Tweak - Performance enhancement. 2 5 3 6 = 4.4.2 - 2024-04-09 = -
woocommerce-shipstation-integration/trunk/includes/api-requests/class-wc-shipstation-api-export.php
r3054381 r3093733 415 415 $order->add_order_note( __( 'Order has been exported to Shipstation', 'woocommerce-shipstation-integration' ) ); 416 416 $order->update_meta_data( '_shipstation_exported', 'yes' ); 417 $order->save ();417 $order->save_meta_data(); 418 418 } 419 419 } -
woocommerce-shipstation-integration/trunk/includes/api-requests/class-wc-shipstation-api-shipnotify.php
r3067979 r3093733 301 301 302 302 $order->update_meta_data( '_shipstation_shipped_item_count', $current_shipped_items + $shipped_item_count ); 303 $order->save ();303 $order->save_meta_data(); 304 304 } else { 305 305 // If we don't have items from SS and order items in WC, or cannot parse … … 330 330 $order->update_meta_data( '_tracking_number', $tracking_number ); 331 331 $order->update_meta_data( '_date_shipped', $timestamp ); 332 $order->save ();332 $order->save_meta_data(); 333 333 } 334 334 -
woocommerce-shipstation-integration/trunk/includes/class-wc-shipstation-privacy.php
r3054381 r3093733 168 168 $order->delete_meta_data( '_date_shipped' ); 169 169 $order->delete_meta_data( '_shipstation_exported' ); 170 $order->save ();170 $order->save_meta_data(); 171 171 172 172 return array( true, false, array( __( 'ShipStation Order Data Erased.', 'woocommerce-shipstation-integration' ) ) ); -
woocommerce-shipstation-integration/trunk/languages/woocommerce-shipstation.pot
r3067979 r3093733 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WooCommerce - ShipStation Integration 4.4. 2\n"5 "Project-Id-Version: WooCommerce - ShipStation Integration 4.4.3\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "https://wordpress.org/support/plugin/woocommerce-shipstation\n" 8 "POT-Creation-Date: 2024-0 4-09 21:17:34+00:00\n"8 "POT-Creation-Date: 2024-05-28 09:12:56+00:00\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" -
woocommerce-shipstation-integration/trunk/readme.txt
r3067979 r3093733 4 4 Requires at least: 6.3 5 5 Tested up to: 6.5 6 WC tested up to: 8. 77 WC requires at least: 8. 56 WC tested up to: 8.9 7 WC requires at least: 8.7 8 8 Requires PHP: 7.4 9 9 Requires Plugins: woocommerce 10 Stable tag: 4.4. 210 Stable tag: 4.4.3 11 11 License: GPLv3 12 12 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 49 49 50 50 == Changelog == 51 52 = 4.4.3 - 2024-05-27 = 53 * Tweak - Performance enhancement. 51 54 52 55 = 4.4.2 - 2024-04-09 = -
woocommerce-shipstation-integration/trunk/woocommerce-shipstation.php
r3067979 r3093733 3 3 * Plugin Name: WooCommerce - ShipStation Integration 4 4 * Plugin URI: https://woocommerce.com/products/shipstation-integration/ 5 * Version: 4.4. 25 * Version: 4.4.3 6 6 * Description: Adds ShipStation label printing support to WooCommerce. Requires server DomDocument support. 7 7 * Author: WooCommerce … … 11 11 * Requires at least: 6.3 12 12 * Tested up to: 6.5 13 * WC tested up to: 8. 714 * WC requires at least: 8. 513 * WC tested up to: 8.9 14 * WC requires at least: 8.7 15 15 * Requires Plugins: woocommerce 16 16 * … … 51 51 } 52 52 53 define( 'WC_SHIPSTATION_VERSION', '4.4. 2' ); // WRCS: DEFINED_VERSION.53 define( 'WC_SHIPSTATION_VERSION', '4.4.3' ); // WRCS: DEFINED_VERSION. 54 54 55 55 if ( ! defined( 'WC_SHIPSTATION_EXPORT_LIMIT' ) ) {
Note: See TracChangeset
for help on using the changeset viewer.