Changeset 3411187
- Timestamp:
- 12/04/2025 04:22:04 PM (4 months ago)
- Location:
- live-rates-for-shipstation
- Files:
-
- 8 edited
- 1 copied
-
tags/1.1.1 (copied) (copied from live-rates-for-shipstation/trunk)
-
tags/1.1.1/changelog.txt (modified) (1 diff)
-
tags/1.1.1/core/settings-shipstation.php (modified) (3 diffs)
-
tags/1.1.1/live-rates-for-shipstation.php (modified) (2 diffs)
-
tags/1.1.1/readme.txt (modified) (3 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/core/settings-shipstation.php (modified) (3 diffs)
-
trunk/live-rates-for-shipstation.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
live-rates-for-shipstation/tags/1.1.1/changelog.txt
r3407166 r3411187 2 2 3 3 This 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 7 Relase 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. 4 12 5 13 = 1.1.0 = -
live-rates-for-shipstation/tags/1.1.1/core/settings-shipstation.php
r3407166 r3411187 65 65 \IQLRSS\Driver::plugin_prefix( 'admin', '-' ), 66 66 \IQLRSS\Driver::get_asset_url( 'js/admin.js' ), 67 array( 'jquery'),67 array(), 68 68 \IQLRSS\Driver::get( 'version', '1.0.0' ) 69 69 ); 70 71 70 72 71 } … … 168 167 public function enqueue_admin_assets() { 169 168 169 global $wp_scripts; 170 170 171 if( ! $this->maybe_enqueue( 'admin' ) ) { 171 172 return; … … 174 175 wp_enqueue_style( \IQLRSS\Driver::plugin_prefix( 'admin', '-' ) ); 175 176 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 // } 176 183 177 184 } -
live-rates-for-shipstation/tags/1.1.1/live-rates-for-shipstation.php
r3407166 r3411187 4 4 * Plugin URI: https://iqcomputing.com/contact/ 5 5 * Description: ShipStation shipping method with live rates. 6 * Version: 1.1. 06 * Version: 1.1.1 7 7 * Requries at least: 6.2 8 8 * Author: IQComputing … … 26 26 * @var String 27 27 */ 28 protected static $version = '1.1. 0';28 protected static $version = '1.1.1'; 29 29 30 30 -
live-rates-for-shipstation/tags/1.1.1/readme.txt
r3407166 r3411187 4 4 Requires at least: 5.9 5 5 Tested up to: 6.8 6 Stable tag: 1.1. 06 Stable tag: 1.1.1 7 7 License: GPLv3 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 51 51 == Changelog == 52 52 53 = 1.1.1 (2025-12-04) = 54 * Fixed JS conflict with WordPress 6.9 (nice!) 55 53 56 = 1.1.0 (2025-12-01) = 54 57 * Redux the Custom Packaging screen and options. … … 68 71 * Fixed issue of duplicate logs when debugging. 69 72 * 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 2 2 3 3 This 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 7 Relase 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. 4 12 5 13 = 1.1.0 = -
live-rates-for-shipstation/trunk/core/settings-shipstation.php
r3407166 r3411187 65 65 \IQLRSS\Driver::plugin_prefix( 'admin', '-' ), 66 66 \IQLRSS\Driver::get_asset_url( 'js/admin.js' ), 67 array( 'jquery'),67 array(), 68 68 \IQLRSS\Driver::get( 'version', '1.0.0' ) 69 69 ); 70 71 70 72 71 } … … 168 167 public function enqueue_admin_assets() { 169 168 169 global $wp_scripts; 170 170 171 if( ! $this->maybe_enqueue( 'admin' ) ) { 171 172 return; … … 174 175 wp_enqueue_style( \IQLRSS\Driver::plugin_prefix( 'admin', '-' ) ); 175 176 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 // } 176 183 177 184 } -
live-rates-for-shipstation/trunk/live-rates-for-shipstation.php
r3407166 r3411187 4 4 * Plugin URI: https://iqcomputing.com/contact/ 5 5 * Description: ShipStation shipping method with live rates. 6 * Version: 1.1. 06 * Version: 1.1.1 7 7 * Requries at least: 6.2 8 8 * Author: IQComputing … … 26 26 * @var String 27 27 */ 28 protected static $version = '1.1. 0';28 protected static $version = '1.1.1'; 29 29 30 30 -
live-rates-for-shipstation/trunk/readme.txt
r3407166 r3411187 4 4 Requires at least: 5.9 5 5 Tested up to: 6.8 6 Stable tag: 1.1. 06 Stable tag: 1.1.1 7 7 License: GPLv3 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 51 51 == Changelog == 52 52 53 = 1.1.1 (2025-12-04) = 54 * Fixed JS conflict with WordPress 6.9 (nice!) 55 53 56 = 1.1.0 (2025-12-01) = 54 57 * Redux the Custom Packaging screen and options. … … 68 71 * Fixed issue of duplicate logs when debugging. 69 72 * 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.