Changeset 3402229
- Timestamp:
- 11/25/2025 06:33:18 AM (8 weeks ago)
- Location:
- image-sizes/trunk
- Files:
-
- 4 edited
-
app/Admin.php (modified) (2 diffs)
-
image-sizes.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
image-sizes/trunk/app/Admin.php
r3392355 r3402229 208 208 $min = defined( 'THUMBPRESS_DEBUG' ) && THUMBPRESS_DEBUG ? '' : '.min'; 209 209 210 wp_enqueue_script( $this->slug , plugins_url( "/assets/js/thumb-notice{$min}.js", THUMBPRESS ), [ 'jquery' ], $this->version, true );210 wp_enqueue_script( $this->slug . '-thumb-notice', plugins_url( "/assets/js/thumb-notice{$min}.js", THUMBPRESS ), [ 'jquery' ], $this->version, true ); 211 211 $localized2 = array( 212 212 'ajaxurl' => admin_url( 'admin-ajax.php' ), … … 222 222 } 223 223 224 wp_enqueue_style( $this->slug , plugins_url( '/assets/css/admin.css', THUMBPRESS ), '', time(), 'all' );225 wp_enqueue_style( $this->slug . ' dashboard', plugins_url( '/assets/css/settings/dashboard.css', THUMBPRESS ), '', time(), 'all' );226 wp_enqueue_style( $this->slug . ' google-font', 'https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap' );227 wp_enqueue_style( $this->slug . ' font-awesome', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css' );228 wp_enqueue_script( $this->slug . ' font-awesome-js', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/js/all.js', array( 'jquery' ), time(), true );229 230 wp_enqueue_script( $this->slug , plugins_url( "/assets/js/admin{$min}.js", THUMBPRESS ), array( 'jquery' ), time(), true );224 wp_enqueue_style( $this->slug . '-admin', plugins_url( '/assets/css/admin.css', THUMBPRESS ), '', time(), 'all' ); 225 wp_enqueue_style( $this->slug . '-dashboard', plugins_url( '/assets/css/settings/dashboard.css', THUMBPRESS ), '', time(), 'all' ); 226 wp_enqueue_style( $this->slug . '-google-font', 'https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap' ); 227 wp_enqueue_style( $this->slug . '-font-awesome', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css' ); 228 wp_enqueue_script( $this->slug . '-font-awesome-js', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/js/all.js', array( 'jquery' ), time(), true ); 229 230 wp_enqueue_script( $this->slug . '-admin', plugins_url( "/assets/js/admin{$min}.js", THUMBPRESS ), array( 'jquery' ), time(), true ); 231 231 232 232 wp_enqueue_script( 'wp-pointer' ); -
image-sizes/trunk/image-sizes.php
r3392355 r3402229 4 4 * Plugin URI: https://thumbpress.co 5 5 * Description: Image Management Suite for Performance and Optimization 6 * Version: 5.8.3 36 * Version: 5.8.34 7 7 * Requires at least: 6.0 8 8 * Requires PHP: 7.0 -
image-sizes/trunk/readme.txt
r3392355 r3402229 5 5 Requires at least: 5.0 6 6 Tested up to: 6.8.3 7 Stable tag: 5.8.3 37 Stable tag: 5.8.34 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 163 163 164 164 == Changelog == 165 166 = v5.8.34 - 2025-11-25 = 167 - [fix] Fixed Free/Pro tab switching (clicks were being ignored) 165 168 166 169 = v5.8.33 - 2025-11-09 = -
image-sizes/trunk/vendor/composer/installed.php
r3392355 r3402229 2 2 'root' => array( 3 3 'name' => '__root__', 4 'pretty_version' => 'v5.8.3 3',5 'version' => '5.8.3 3.0',6 'reference' => ' cc20a832874dda4503fb2e381b0b34e73502b1fd',4 'pretty_version' => 'v5.8.34', 5 'version' => '5.8.34.0', 6 'reference' => '4a0dc1d44441d6ce0d272a10b89aa5a1522ec165', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 '__root__' => array( 14 'pretty_version' => 'v5.8.3 3',15 'version' => '5.8.3 3.0',16 'reference' => ' cc20a832874dda4503fb2e381b0b34e73502b1fd',14 'pretty_version' => 'v5.8.34', 15 'version' => '5.8.34.0', 16 'reference' => '4a0dc1d44441d6ce0d272a10b89aa5a1522ec165', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.