Plugin Directory

Changeset 3413161


Ignore:
Timestamp:
12/06/2025 06:00:46 PM (2 months ago)
Author:
codealfa
Message:

Changes for version 5.1.2

Location:
jch-optimize/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • jch-optimize/trunk/jch-optimize.php

    r3412704 r3413161  
    55 * Plugin URI: http://www.jch-optimize.net/
    66 * Description: Boost your WordPress site's performance with JCH Optimize as measured on PageSpeed
    7  * Version: 5.1.1
     7 * Version: 5.1.2
    88 * Author: Samuel Marshall
    99 * License: GNU/GPLv3
  • jch-optimize/trunk/lib/src/Css/Components/CssRule.php

    r3412704 r3413161  
    5858    {
    5959        // Fallback to old behaviour if groups are missing.
    60         if (!isset($matches['selectorList'], $matches['declarationList'])) {
     60        if (empty($matches['selectorList']) && empty($matches['declarationList'])) {
    6161            return static::load($matches[0]);
    6262        }
  • jch-optimize/trunk/lib/src/Css/Components/NestingAtRule.php

    r3412704 r3413161  
    5656    {
    5757        // 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'])) {
    5959            return static::load($matches[0]);
    6060        }
  • jch-optimize/trunk/readme.txt

    r3412704 r3413161  
    44Tags: performance, pagespeed, cache, optimize, seo
    55Tested up to: 6.9
    6 Stable tag: 5.1.1
     6Stable tag: 5.1.2
    77License: GPLv3 or later
    88Requires at least: 6.5.0
     
    8080
    8181== Changelog ==
     82
     83= 5.1.2 =
     84* @font-face broken in some CSS files
    8285
    8386= 5.1.1 =
  • jch-optimize/trunk/vendor/composer/installed.php

    r3412704 r3413161  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '781c9a7e436505de7b07b7f0532d685389ad31db',
     6        'reference' => '3e82fb654ce394f74af3f0c180362ea9a685aec5',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-master',
    1515            'version' => 'dev-master',
    16             'reference' => '781c9a7e436505de7b07b7f0532d685389ad31db',
     16            'reference' => '3e82fb654ce394f74af3f0c180362ea9a685aec5',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
  • jch-optimize/trunk/version.php

    r3412704 r3413161  
    1515defined('_JCH_EXEC') or die;
    1616
    17 const JCH_VERSION  = '5.1.1';
     17const JCH_VERSION  = '5.1.2';
    1818const JCH_DATE     = '2025-12-06';
    1919const JCH_PRO      = '0';
Note: See TracChangeset for help on using the changeset viewer.