Changeset 3337922
- Timestamp:
- 08/01/2025 04:08:34 PM (8 months ago)
- Location:
- live-rates-for-shipstation
- Files:
-
- 12 edited
- 1 copied
-
tags/1.0.1 (copied) (copied from live-rates-for-shipstation/trunk)
-
tags/1.0.1/README.md (modified) (1 diff)
-
tags/1.0.1/changelog.txt (modified) (1 diff)
-
tags/1.0.1/core/shipping-method-shipstation.php (modified) (1 diff)
-
tags/1.0.1/core/shipstation-api.php (modified) (2 diffs)
-
tags/1.0.1/live-rates-for-shipstation.php (modified) (2 diffs)
-
tags/1.0.1/readme.txt (modified) (2 diffs)
-
trunk/README.md (modified) (1 diff)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/core/shipping-method-shipstation.php (modified) (1 diff)
-
trunk/core/shipstation-api.php (modified) (2 diffs)
-
trunk/live-rates-for-shipstation.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
live-rates-for-shipstation/tags/1.0.1/README.md
r3335616 r3337922 4 4 5 5 [](https://iqcomputing.com) 6 [](https://wordpress.org/plugins/live-rates-for-shipstation/) 6 7 7 8 Live Rates for ShipStation is a free Open Source plugin that works with [ShipStation](https://www.shipstation.com/) and [WooCommerce](https://woocommerce.com/) to pull in shipping estimates from the most common shipping providers. -
live-rates-for-shipstation/tags/1.0.1/changelog.txt
r3335616 r3337922 3 3 This is a brief text document keeping track of changes to the plugin. For a full history, see the Github Repository. 4 4 5 = 1.0.1 = 6 7 Relase Date: August 01, 2025 8 9 * Overview 10 * Patches an issue where the individual requests method would not return their requests back to the shipping method. 11 * Shoutout to .org user @dpkonofa for their assistance in debugging this issue! 12 * Tries another method to discern ShipStation Core Carriers from Manually Connected Carriers using the `primary` carrier property. 13 * ShipStation suggests the `balance` flag should be empty for Manually Connected Carriers, but we find that this is not always the case. 14 15 * Code Updates 16 * \IQLRSS\Core\Shipping_Method_Shipstation::get_individual_requests() now returns it's request array. 17 * \IQLRSS\Core\Shipstation_Api::get_carriers() `is_shipstation` value discerned using `primary` Carrier API property. 18 5 19 = 1.0.0 = 6 20 7 Release Date: X 00, 000021 Release Date: July 28, 2025 8 22 9 23 * Overview -
live-rates-for-shipstation/tags/1.0.1/core/shipping-method-shipstation.php
r3335616 r3337922 548 548 } 549 549 550 return $item_requests; 551 550 552 } 551 553 -
live-rates-for-shipstation/tags/1.0.1/core/shipstation-api.php
r3335616 r3337922 162 162 ) ) ); 163 163 164 $data['carriers'][ $carrier['carrier_id'] ]['is_shipstation'] = ( ! empty( $carrier[' nickname'] ) && is_numeric( $carrier['nickname'] ) );164 $data['carriers'][ $carrier['carrier_id'] ]['is_shipstation'] = ( ! empty( $carrier['primary'] ) ); 165 165 $data['carriers'][ $carrier['carrier_id'] ]['name'] = $data['carriers'][ $carrier['carrier_id'] ]['friendly_name']; 166 166 … … 255 255 ); 256 256 257 // Denote Manual Connected Carrier.258 if( ! empty( $est['carrier_nickname'] ) && ! is_numeric( $est['carrier_nickname'] ) ) {259 $est['carrier_name'] .= ' ' . esc_html__( '(Manual)', 'live-rates-for-shipstation' );260 }261 262 257 $data[] = $est; 263 258 -
live-rates-for-shipstation/tags/1.0.1/live-rates-for-shipstation.php
r3335616 r3337922 4 4 * Plugin URI: https://iqcomputing.com/contact/ 5 5 * Description: ShipStation shipping method with live rates. 6 * Version: 1.0. 06 * Version: 1.0.1 7 7 * Requries at least: 5.9 8 8 * Author: IQComputing … … 26 26 * @var String 27 27 */ 28 protected static $version = '1.0. 0';28 protected static $version = '1.0.1'; 29 29 30 30 -
live-rates-for-shipstation/tags/1.0.1/readme.txt
r3335616 r3337922 29 29 == IQComputing == 30 30 31 * Like us on [Facebook](https://www.facebook.com/iqcomputing / "IQComputing on Facebook")32 * Follow us on [Twitter](https://twitter.com/iqcomputing/ "IQComputing on Twitter")33 * Fork on [Github](https://github.com/IQComputing/live-rates-for-shipstation "IQComputing on Github")31 * Like us on [Facebook](https://www.facebook.com/iqcomputing) 32 * Follow us on [Twitter](https://twitter.com/iqcomputing/) 33 * Fork on [Github](https://github.com/IQComputing/live-rates-for-shipstation) 34 34 35 35 == Installation == 36 36 37 [ShipStation for WooCommerce](https://woocommerce.com/products/shipstation-integration/) "ShipStation for WooCommerce plugin page")is a required plugin.38 [WooCommerce](https://wordpress.org/plugins/woocommerce/ "WooCommerce plugin page") is a required plugin.37 [ShipStation for WooCommerce](https://woocommerce.com/products/shipstation-integration/) is a required plugin. 38 [WooCommerce](https://wordpress.org/plugins/woocommerce/) is a required plugin. 39 39 40 40 1. Ensure that the WooCommerce plugin is installed and active. … … 49 49 == Changelog == 50 50 51 = 1.0.0 (0000-00-00) = 51 = 1.0.1 (2025-08-01) = 52 * Patches an issue with Individual Shipping Requests (thanks @dpkonofa !). 53 * Attempt to discern ShipStation Carriers from Manually Connected Carriers. 54 55 = 1.0.0 (2025-07-28) = 52 56 * Initial release -
live-rates-for-shipstation/trunk/README.md
r3335616 r3337922 4 4 5 5 [](https://iqcomputing.com) 6 [](https://wordpress.org/plugins/live-rates-for-shipstation/) 6 7 7 8 Live Rates for ShipStation is a free Open Source plugin that works with [ShipStation](https://www.shipstation.com/) and [WooCommerce](https://woocommerce.com/) to pull in shipping estimates from the most common shipping providers. -
live-rates-for-shipstation/trunk/changelog.txt
r3335616 r3337922 3 3 This is a brief text document keeping track of changes to the plugin. For a full history, see the Github Repository. 4 4 5 = 1.0.1 = 6 7 Relase Date: August 01, 2025 8 9 * Overview 10 * Patches an issue where the individual requests method would not return their requests back to the shipping method. 11 * Shoutout to .org user @dpkonofa for their assistance in debugging this issue! 12 * Tries another method to discern ShipStation Core Carriers from Manually Connected Carriers using the `primary` carrier property. 13 * ShipStation suggests the `balance` flag should be empty for Manually Connected Carriers, but we find that this is not always the case. 14 15 * Code Updates 16 * \IQLRSS\Core\Shipping_Method_Shipstation::get_individual_requests() now returns it's request array. 17 * \IQLRSS\Core\Shipstation_Api::get_carriers() `is_shipstation` value discerned using `primary` Carrier API property. 18 5 19 = 1.0.0 = 6 20 7 Release Date: X 00, 000021 Release Date: July 28, 2025 8 22 9 23 * Overview -
live-rates-for-shipstation/trunk/core/shipping-method-shipstation.php
r3335616 r3337922 548 548 } 549 549 550 return $item_requests; 551 550 552 } 551 553 -
live-rates-for-shipstation/trunk/core/shipstation-api.php
r3335616 r3337922 162 162 ) ) ); 163 163 164 $data['carriers'][ $carrier['carrier_id'] ]['is_shipstation'] = ( ! empty( $carrier[' nickname'] ) && is_numeric( $carrier['nickname'] ) );164 $data['carriers'][ $carrier['carrier_id'] ]['is_shipstation'] = ( ! empty( $carrier['primary'] ) ); 165 165 $data['carriers'][ $carrier['carrier_id'] ]['name'] = $data['carriers'][ $carrier['carrier_id'] ]['friendly_name']; 166 166 … … 255 255 ); 256 256 257 // Denote Manual Connected Carrier.258 if( ! empty( $est['carrier_nickname'] ) && ! is_numeric( $est['carrier_nickname'] ) ) {259 $est['carrier_name'] .= ' ' . esc_html__( '(Manual)', 'live-rates-for-shipstation' );260 }261 262 257 $data[] = $est; 263 258 -
live-rates-for-shipstation/trunk/live-rates-for-shipstation.php
r3335616 r3337922 4 4 * Plugin URI: https://iqcomputing.com/contact/ 5 5 * Description: ShipStation shipping method with live rates. 6 * Version: 1.0. 06 * Version: 1.0.1 7 7 * Requries at least: 5.9 8 8 * Author: IQComputing … … 26 26 * @var String 27 27 */ 28 protected static $version = '1.0. 0';28 protected static $version = '1.0.1'; 29 29 30 30 -
live-rates-for-shipstation/trunk/readme.txt
r3335616 r3337922 29 29 == IQComputing == 30 30 31 * Like us on [Facebook](https://www.facebook.com/iqcomputing / "IQComputing on Facebook")32 * Follow us on [Twitter](https://twitter.com/iqcomputing/ "IQComputing on Twitter")33 * Fork on [Github](https://github.com/IQComputing/live-rates-for-shipstation "IQComputing on Github")31 * Like us on [Facebook](https://www.facebook.com/iqcomputing) 32 * Follow us on [Twitter](https://twitter.com/iqcomputing/) 33 * Fork on [Github](https://github.com/IQComputing/live-rates-for-shipstation) 34 34 35 35 == Installation == 36 36 37 [ShipStation for WooCommerce](https://woocommerce.com/products/shipstation-integration/) "ShipStation for WooCommerce plugin page")is a required plugin.38 [WooCommerce](https://wordpress.org/plugins/woocommerce/ "WooCommerce plugin page") is a required plugin.37 [ShipStation for WooCommerce](https://woocommerce.com/products/shipstation-integration/) is a required plugin. 38 [WooCommerce](https://wordpress.org/plugins/woocommerce/) is a required plugin. 39 39 40 40 1. Ensure that the WooCommerce plugin is installed and active. … … 49 49 == Changelog == 50 50 51 = 1.0.0 (0000-00-00) = 51 = 1.0.1 (2025-08-01) = 52 * Patches an issue with Individual Shipping Requests (thanks @dpkonofa !). 53 * Attempt to discern ShipStation Carriers from Manually Connected Carriers. 54 55 = 1.0.0 (2025-07-28) = 52 56 * Initial release
Note: See TracChangeset
for help on using the changeset viewer.