Changeset 3413161
- Timestamp:
- 12/06/2025 06:00:46 PM (2 months ago)
- Location:
- jch-optimize/trunk
- Files:
-
- 6 edited
-
jch-optimize.php (modified) (1 diff)
-
lib/src/Css/Components/CssRule.php (modified) (1 diff)
-
lib/src/Css/Components/NestingAtRule.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
vendor/composer/installed.php (modified) (2 diffs)
-
version.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
jch-optimize/trunk/jch-optimize.php
r3412704 r3413161 5 5 * Plugin URI: http://www.jch-optimize.net/ 6 6 * Description: Boost your WordPress site's performance with JCH Optimize as measured on PageSpeed 7 * Version: 5.1. 17 * Version: 5.1.2 8 8 * Author: Samuel Marshall 9 9 * License: GNU/GPLv3 -
jch-optimize/trunk/lib/src/Css/Components/CssRule.php
r3412704 r3413161 58 58 { 59 59 // Fallback to old behaviour if groups are missing. 60 if ( !isset($matches['selectorList'],$matches['declarationList'])) {60 if (empty($matches['selectorList']) && empty($matches['declarationList'])) { 61 61 return static::load($matches[0]); 62 62 } -
jch-optimize/trunk/lib/src/Css/Components/NestingAtRule.php
r3412704 r3413161 56 56 { 57 57 // If for some reason we didn't get the groups, fall back. 58 if ( !isset($matches['identifier'], $matches['rule'],$matches['cssRuleList'])) {58 if (empty($matches['identifier']) && empty($matches['rule']) && empty($matches['cssRuleList'])) { 59 59 return static::load($matches[0]); 60 60 } -
jch-optimize/trunk/readme.txt
r3412704 r3413161 4 4 Tags: performance, pagespeed, cache, optimize, seo 5 5 Tested up to: 6.9 6 Stable tag: 5.1. 16 Stable tag: 5.1.2 7 7 License: GPLv3 or later 8 8 Requires at least: 6.5.0 … … 80 80 81 81 == Changelog == 82 83 = 5.1.2 = 84 * @font-face broken in some CSS files 82 85 83 86 = 5.1.1 = -
jch-optimize/trunk/vendor/composer/installed.php
r3412704 r3413161 4 4 'pretty_version' => 'dev-master', 5 5 'version' => 'dev-master', 6 'reference' => ' 781c9a7e436505de7b07b7f0532d685389ad31db',6 'reference' => '3e82fb654ce394f74af3f0c180362ea9a685aec5', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-master', 15 15 'version' => 'dev-master', 16 'reference' => ' 781c9a7e436505de7b07b7f0532d685389ad31db',16 'reference' => '3e82fb654ce394f74af3f0c180362ea9a685aec5', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', -
jch-optimize/trunk/version.php
r3412704 r3413161 15 15 defined('_JCH_EXEC') or die; 16 16 17 const JCH_VERSION = '5.1. 1';17 const JCH_VERSION = '5.1.2'; 18 18 const JCH_DATE = '2025-12-06'; 19 19 const JCH_PRO = '0';
Note: See TracChangeset
for help on using the changeset viewer.