Plugin Directory

Changeset 3342971


Ignore:
Timestamp:
08/11/2025 03:24:56 PM (6 months ago)
Author:
themefusecom
Message:

Version 2.7.7

Location:
brizy
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • brizy/tags/2.7.7/README.md

    r3342936 r3342971  
    55Tested up to: 6.8.2<br>
    66Requires PHP: 7.2.24<br>
    7 Stable tag: 2.7.6<br>
     7Stable tag: 2.7.7<br>
    88License: GPLv3<br>
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    136136
    137137## Changelog
     138
     139### 2.7.7 - 2025-08-11
     140* Fixed: Compiler editor version
    138141
    139142### 2.7.6 - 2025-08-11
  • brizy/tags/2.7.7/brizy.php

    r3342936 r3342971  
    66 * Author: Brizy.io
    77 * Author URI: https://brizy.io/
    8  * Version: 2.7.6
     8 * Version: 2.7.7
    99 * Text Domain: brizy
    1010 * License: GPLv3
     
    1919define( 'BRIZY_DEVELOPMENT', false );
    2020define( 'BRIZY_LOG', false );
    21 define( 'BRIZY_VERSION', '2.7.6' );
     21define( 'BRIZY_VERSION', '2.7.7' );
    2222define( 'BRIZY_MINIMUM_PRO_VERSION', '2.7.1' );
    2323define( 'BRIZY_MINIMUM_COMPILER_VERSION', '315-wp' );
    24 define( 'BRIZY_RECOMPILE_TAG', 1754921673 );
    25 define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '326-wp'   );
     24define( 'BRIZY_RECOMPILE_TAG', 1754925803 );
     25define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '326-wp'    );
    2626define( 'BRIZY_SYNC_VERSION', '326' );
    2727define( 'BRIZY_FILE', __FILE__ );
  • brizy/tags/2.7.7/languages/brizy.pot

    r3342936 r3342971  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Brizy 2.7.6\n"
     5"Project-Id-Version: Brizy 2.7.7\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/workspace\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-08-11T14:14:35+00:00\n"
     12"POT-Creation-Date: 2025-08-11T15:23:25+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
  • brizy/tags/2.7.7/public/asset-enqueue-manager.php

    r3327926 r3342971  
    145145    {
    146146        $styles = [];
     147
     148        if (is_array($this->project->getCompiledStyles())) {
     149            foreach ($this->project->getCompiledAssetGroup()->getPageStyles() as $asset) {
     150                if ($asset = apply_filters('brizy_add_style', $asset)) {
     151                    $this->styles[$this->getHandle($asset)] = $asset;
     152                }
     153            }
     154        }
     155
    147156        foreach ($this->posts as $editorPost) {
    148157            $sectionSet = $editorPost->getCompiledSectionManager();
     
    164173
    165174        }
     175
    166176        $assetAggregator = new AssetAggregator($styles);
    167177        foreach ($assetAggregator->getAssetList() as $asset) {
     
    175185            }
    176186        }
    177         // enqueue
    178         if (is_array($this->project->getCompiledStyles())) {
    179             foreach ($this->project->getCompiledAssetGroup()->getPageStyles() as $asset) {
    180                 if ($asset = apply_filters('brizy_add_style', $asset)) {
    181                     $this->styles[$this->getHandle($asset)] = $asset;
    182                 }
    183             }
    184         }
     187
    185188        foreach ($this->styles as $handle => $asset) {
    186189            if ($asset->getType() == Asset::TYPE_FILE) {
  • brizy/tags/2.7.7/readme.txt

    r3342936 r3342971  
    55Tested up to: 6.8.2
    66Requires PHP: 7.2.24
    7 Stable tag: 2.7.6
     7Stable tag: 2.7.7
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    137137
    138138== Changelog ==
     139
     140= 2.7.7 - 2025-08-11 =
     141* Fixed: Compiler editor version
    139142
    140143= 2.7.6 - 2025-08-11 =
  • brizy/tags/2.7.7/vendor/composer/installed.php

    r3342936 r3342971  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '572abb255dce0a4c22fdd4f142098062006c954a',
     6        'reference' => '6e0088a3615b24fc9410ff3b6d719c7b4189911b',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    4343            'pretty_version' => 'dev-master',
    4444            'version' => 'dev-master',
    45             'reference' => '572abb255dce0a4c22fdd4f142098062006c954a',
     45            'reference' => '6e0088a3615b24fc9410ff3b6d719c7b4189911b',
    4646            'type' => 'library',
    4747            'install_path' => __DIR__ . '/../../',
  • brizy/trunk/README.md

    r3342936 r3342971  
    55Tested up to: 6.8.2<br>
    66Requires PHP: 7.2.24<br>
    7 Stable tag: 2.7.6<br>
     7Stable tag: 2.7.7<br>
    88License: GPLv3<br>
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    136136
    137137## Changelog
     138
     139### 2.7.7 - 2025-08-11
     140* Fixed: Compiler editor version
    138141
    139142### 2.7.6 - 2025-08-11
  • brizy/trunk/brizy.php

    r3342936 r3342971  
    66 * Author: Brizy.io
    77 * Author URI: https://brizy.io/
    8  * Version: 2.7.6
     8 * Version: 2.7.7
    99 * Text Domain: brizy
    1010 * License: GPLv3
     
    1919define( 'BRIZY_DEVELOPMENT', false );
    2020define( 'BRIZY_LOG', false );
    21 define( 'BRIZY_VERSION', '2.7.6' );
     21define( 'BRIZY_VERSION', '2.7.7' );
    2222define( 'BRIZY_MINIMUM_PRO_VERSION', '2.7.1' );
    2323define( 'BRIZY_MINIMUM_COMPILER_VERSION', '315-wp' );
    24 define( 'BRIZY_RECOMPILE_TAG', 1754921673 );
    25 define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '326-wp'   );
     24define( 'BRIZY_RECOMPILE_TAG', 1754925803 );
     25define( 'BRIZY_EDITOR_VERSION', BRIZY_DEVELOPMENT ? 'dev' : '326-wp'    );
    2626define( 'BRIZY_SYNC_VERSION', '326' );
    2727define( 'BRIZY_FILE', __FILE__ );
  • brizy/trunk/languages/brizy.pot

    r3342936 r3342971  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Brizy 2.7.6\n"
     5"Project-Id-Version: Brizy 2.7.7\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/workspace\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-08-11T14:14:35+00:00\n"
     12"POT-Creation-Date: 2025-08-11T15:23:25+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.12.0\n"
  • brizy/trunk/public/asset-enqueue-manager.php

    r3327926 r3342971  
    145145    {
    146146        $styles = [];
     147
     148        if (is_array($this->project->getCompiledStyles())) {
     149            foreach ($this->project->getCompiledAssetGroup()->getPageStyles() as $asset) {
     150                if ($asset = apply_filters('brizy_add_style', $asset)) {
     151                    $this->styles[$this->getHandle($asset)] = $asset;
     152                }
     153            }
     154        }
     155
    147156        foreach ($this->posts as $editorPost) {
    148157            $sectionSet = $editorPost->getCompiledSectionManager();
     
    164173
    165174        }
     175
    166176        $assetAggregator = new AssetAggregator($styles);
    167177        foreach ($assetAggregator->getAssetList() as $asset) {
     
    175185            }
    176186        }
    177         // enqueue
    178         if (is_array($this->project->getCompiledStyles())) {
    179             foreach ($this->project->getCompiledAssetGroup()->getPageStyles() as $asset) {
    180                 if ($asset = apply_filters('brizy_add_style', $asset)) {
    181                     $this->styles[$this->getHandle($asset)] = $asset;
    182                 }
    183             }
    184         }
     187
    185188        foreach ($this->styles as $handle => $asset) {
    186189            if ($asset->getType() == Asset::TYPE_FILE) {
  • brizy/trunk/readme.txt

    r3342936 r3342971  
    55Tested up to: 6.8.2
    66Requires PHP: 7.2.24
    7 Stable tag: 2.7.6
     7Stable tag: 2.7.7
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    137137
    138138== Changelog ==
     139
     140= 2.7.7 - 2025-08-11 =
     141* Fixed: Compiler editor version
    139142
    140143= 2.7.6 - 2025-08-11 =
  • brizy/trunk/vendor/composer/installed.php

    r3342936 r3342971  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '572abb255dce0a4c22fdd4f142098062006c954a',
     6        'reference' => '6e0088a3615b24fc9410ff3b6d719c7b4189911b',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    4343            'pretty_version' => 'dev-master',
    4444            'version' => 'dev-master',
    45             'reference' => '572abb255dce0a4c22fdd4f142098062006c954a',
     45            'reference' => '6e0088a3615b24fc9410ff3b6d719c7b4189911b',
    4646            'type' => 'library',
    4747            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.