Plugin Directory

Changeset 3411187


Ignore:
Timestamp:
12/04/2025 04:22:04 PM (4 months ago)
Author:
IQComputing
Message:

Update to version 1.1.1 from GitHub

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

Legend:

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

    r3407166 r3411187  
    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.1.1 =
     6
     7Relase Date: December 04, 2025
     8
     9* Overview
     10    * Changes in how WordPress handles Modules means we cannot define jQuery as a dependency.
     11        * Removes dependency and add additional check in module JS for it's existence.
    412
    513= 1.1.0 =
  • live-rates-for-shipstation/tags/1.1.1/core/settings-shipstation.php

    r3407166 r3411187  
    6565            \IQLRSS\Driver::plugin_prefix( 'admin', '-' ),
    6666            \IQLRSS\Driver::get_asset_url( 'js/admin.js' ),
    67             array( 'jquery' ),
     67            array(),
    6868            \IQLRSS\Driver::get( 'version', '1.0.0' )
    6969        );
    70 
    7170
    7271    }
     
    168167    public function enqueue_admin_assets() {
    169168
     169        global $wp_scripts;
     170
    170171        if( ! $this->maybe_enqueue( 'admin' ) ) {
    171172            return;
     
    174175        wp_enqueue_style( \IQLRSS\Driver::plugin_prefix( 'admin', '-' ) );
    175176        wp_enqueue_script_module( \IQLRSS\Driver::plugin_prefix( 'admin', '-' ) );
     177
     178        // if( current_user_can( 'list_users' ) ) {
     179        //  $foo = wp_script_modules();
     180        //  printf( '<pre>%s</pre>', print_r( $foo, 1 ) );
     181        //  die( 'end' );
     182        // }
    176183
    177184    }
  • live-rates-for-shipstation/tags/1.1.1/live-rates-for-shipstation.php

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

    r3407166 r3411187  
    44Requires at least: 5.9
    55Tested up to: 6.8
    6 Stable tag: 1.1.0
     6Stable tag: 1.1.1
    77License: GPLv3 or later
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    5151== Changelog ==
    5252
     53= 1.1.1 (2025-12-04) =
     54* Fixed JS conflict with WordPress 6.9 (nice!)
     55
    5356= 1.1.0 (2025-12-01) =
    5457* Redux the Custom Packaging screen and options.
     
    6871* Fixed issue of duplicate logs when debugging.
    6972* Fixed issue where API Log would lose formatting during certain requests.
    70 
    71 = 1.0.7 (2025-10-08) =
    72 * Better rate reporting on the Edit Order screen.
    73 * Patches WP_Error misnomer on Shipping Zone screen.
    74 * Adds deactivate and uninstall hooks for data management and cleanup.
    75 
    76 = 1.0.6 (2025-09-22) =
    77 * Updates to the general readme.
  • live-rates-for-shipstation/trunk/changelog.txt

    r3407166 r3411187  
    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.1.1 =
     6
     7Relase Date: December 04, 2025
     8
     9* Overview
     10    * Changes in how WordPress handles Modules means we cannot define jQuery as a dependency.
     11        * Removes dependency and add additional check in module JS for it's existence.
    412
    513= 1.1.0 =
  • live-rates-for-shipstation/trunk/core/settings-shipstation.php

    r3407166 r3411187  
    6565            \IQLRSS\Driver::plugin_prefix( 'admin', '-' ),
    6666            \IQLRSS\Driver::get_asset_url( 'js/admin.js' ),
    67             array( 'jquery' ),
     67            array(),
    6868            \IQLRSS\Driver::get( 'version', '1.0.0' )
    6969        );
    70 
    7170
    7271    }
     
    168167    public function enqueue_admin_assets() {
    169168
     169        global $wp_scripts;
     170
    170171        if( ! $this->maybe_enqueue( 'admin' ) ) {
    171172            return;
     
    174175        wp_enqueue_style( \IQLRSS\Driver::plugin_prefix( 'admin', '-' ) );
    175176        wp_enqueue_script_module( \IQLRSS\Driver::plugin_prefix( 'admin', '-' ) );
     177
     178        // if( current_user_can( 'list_users' ) ) {
     179        //  $foo = wp_script_modules();
     180        //  printf( '<pre>%s</pre>', print_r( $foo, 1 ) );
     181        //  die( 'end' );
     182        // }
    176183
    177184    }
  • live-rates-for-shipstation/trunk/live-rates-for-shipstation.php

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

    r3407166 r3411187  
    44Requires at least: 5.9
    55Tested up to: 6.8
    6 Stable tag: 1.1.0
     6Stable tag: 1.1.1
    77License: GPLv3 or later
    88License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    5151== Changelog ==
    5252
     53= 1.1.1 (2025-12-04) =
     54* Fixed JS conflict with WordPress 6.9 (nice!)
     55
    5356= 1.1.0 (2025-12-01) =
    5457* Redux the Custom Packaging screen and options.
     
    6871* Fixed issue of duplicate logs when debugging.
    6972* Fixed issue where API Log would lose formatting during certain requests.
    70 
    71 = 1.0.7 (2025-10-08) =
    72 * Better rate reporting on the Edit Order screen.
    73 * Patches WP_Error misnomer on Shipping Zone screen.
    74 * Adds deactivate and uninstall hooks for data management and cleanup.
    75 
    76 = 1.0.6 (2025-09-22) =
    77 * Updates to the general readme.
Note: See TracChangeset for help on using the changeset viewer.