Plugin Directory

Changeset 3339837


Ignore:
Timestamp:
08/05/2025 06:43:30 PM (8 months ago)
Author:
IQComputing
Message:

Update to version 1.0.3 from GitHub

Location:
live-rates-for-shipstation
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • live-rates-for-shipstation/tags/1.0.3/changelog.txt

    r3339099 r3339837  
    22
    33This is a brief text document keeping track of changes to the plugin. For a full history, see the Github Repository.
     4
     5= 1.0.3 =
     6
     7Relase Date: August 05, 2025
     8
     9* Overview
     10    * Patches an issue where the Shipping Method would not display due to not being supported.
     11        * Shoutout to .org user @sportswreathshop for reporting this issue!
     12
     13* Code Updates
     14    * \IQLRSS\Core\Shipping_Method_Shipstation::__construct()
     15        * Shipping Method support conditional has been updated to check against the objects carriers.
    416
    517= 1.0.2 =
  • live-rates-for-shipstation/tags/1.0.3/core/shipping-method-shipstation.php

    r3339099 r3339837  
    8383
    8484        // Only show in Shipping Zones if API Key is invalid.
    85         if( ! empty( $saved_key ) && ! empty( $saved_carriers ) ) {
     85        if( ! empty( $saved_key ) && ! empty( $this->carriers ) ) {
    8686            $this->supports[] = 'shipping-zones';
    8787        }
  • live-rates-for-shipstation/tags/1.0.3/live-rates-for-shipstation.php

    r3339099 r3339837  
    44 * Plugin URI: https://iqcomputing.com/contact/
    55 * Description: ShipStation shipping method with live rates.
    6  * Version: 1.0.2
     6 * Version: 1.0.3
    77 * Requries at least: 5.9
    88 * Author: IQComputing
     
    2626     * @var String
    2727     */
    28     protected static $version = '1.0.2';
     28    protected static $version = '1.0.3';
    2929
    3030
  • live-rates-for-shipstation/tags/1.0.3/readme.txt

    r3339099 r3339837  
    44Requires at least: 5.9
    55Tested up to: 6.8
    6 Stable tag: 1.0.2
     6Stable tag: 1.0.3
    77License: GPLv3 or later
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    4949== Changelog ==
    5050
     51= 1.0.3 (2025-08-05) =
     52* Patches an issue with Shipping Method availability (Thanks to @sportswreathshop for reporting!)
     53
    5154= 1.0.2 (2025-08-04) =
    5255* Refines API caching that clears on settings save (thanks again to @dpkonofa for test/reporting!).
  • live-rates-for-shipstation/trunk/changelog.txt

    r3339099 r3339837  
    22
    33This is a brief text document keeping track of changes to the plugin. For a full history, see the Github Repository.
     4
     5= 1.0.3 =
     6
     7Relase Date: August 05, 2025
     8
     9* Overview
     10    * Patches an issue where the Shipping Method would not display due to not being supported.
     11        * Shoutout to .org user @sportswreathshop for reporting this issue!
     12
     13* Code Updates
     14    * \IQLRSS\Core\Shipping_Method_Shipstation::__construct()
     15        * Shipping Method support conditional has been updated to check against the objects carriers.
    416
    517= 1.0.2 =
  • live-rates-for-shipstation/trunk/core/shipping-method-shipstation.php

    r3339099 r3339837  
    8383
    8484        // Only show in Shipping Zones if API Key is invalid.
    85         if( ! empty( $saved_key ) && ! empty( $saved_carriers ) ) {
     85        if( ! empty( $saved_key ) && ! empty( $this->carriers ) ) {
    8686            $this->supports[] = 'shipping-zones';
    8787        }
  • live-rates-for-shipstation/trunk/live-rates-for-shipstation.php

    r3339099 r3339837  
    44 * Plugin URI: https://iqcomputing.com/contact/
    55 * Description: ShipStation shipping method with live rates.
    6  * Version: 1.0.2
     6 * Version: 1.0.3
    77 * Requries at least: 5.9
    88 * Author: IQComputing
     
    2626     * @var String
    2727     */
    28     protected static $version = '1.0.2';
     28    protected static $version = '1.0.3';
    2929
    3030
  • live-rates-for-shipstation/trunk/readme.txt

    r3339099 r3339837  
    44Requires at least: 5.9
    55Tested up to: 6.8
    6 Stable tag: 1.0.2
     6Stable tag: 1.0.3
    77License: GPLv3 or later
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    4949== Changelog ==
    5050
     51= 1.0.3 (2025-08-05) =
     52* Patches an issue with Shipping Method availability (Thanks to @sportswreathshop for reporting!)
     53
    5154= 1.0.2 (2025-08-04) =
    5255* Refines API caching that clears on settings save (thanks again to @dpkonofa for test/reporting!).
Note: See TracChangeset for help on using the changeset viewer.