Plugin Directory

Changeset 3190999


Ignore:
Timestamp:
11/18/2024 08:28:41 AM (15 months ago)
Author:
themefusecom
Message:

Version 2.6.2

Location:
brizy
Files:
12 edited
1 copied

Legend:

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

    r3189269 r3190999  
    55Tested up to: 6.7<br>
    66Requires PHP: 7.2.24<br>
    7 Stable tag: 2.6.1<br>
     7Stable tag: 2.6.2<br>
    88License: GPLv3<br>
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    136136
    137137## Changelog
     138
     139### 2.6.2 - 2024-11-18
     140* Fixed: Simplify the  check if compilation is required
    138141
    139142### 2.6.1 - 2024-11-15
  • brizy/tags/2.6.2/brizy.php

    r3189269 r3190999  
    66 * Author: Brizy.io
    77 * Author URI: https://brizy.io/
    8  * Version: 2.6.1
     8 * Version: 2.6.2
    99 * Text Domain: brizy
    1010 * License: GPLv3
     
    2020define('BRIZY_DEVELOPMENT', false );
    2121define('BRIZY_LOG', false );
    22 define('BRIZY_VERSION', '2.6.1');
     22define('BRIZY_VERSION', '2.6.2');
    2323define('BRIZY_MINIMUM_PRO_VERSION', '2.4.15');
    2424define('BRIZY_MINIMUM_COMPILER_VERSION', '300-wp');
  • brizy/tags/2.6.2/editor/compiler.php

    r3172728 r3190999  
    5858
    5959        $currentCompiler = preg_replace( "/((beta\d?)?-wp)$/", "", $post->get_compiler_version() );
    60         $v2 = preg_replace( "/((beta\d?)?-wp)$/", "", BRIZY_MINIMUM_COMPILER_VERSION );
    61 
    62 
    63         if ( $post->get_compiler() !== Brizy_Editor_Entity::COMPILER_EXTERNAL ) {
    64             return false;
    65         }
     60        $v2              = preg_replace( "/((beta\d?)?-wp)$/", "", BRIZY_MINIMUM_COMPILER_VERSION );
    6661
    6762        if ( version_compare( $currentCompiler, $v2, "<" ) ) {
    68             return true;
     63            return true;
    6964        }
    7065
     
    111106
    112107        return apply_filters( 'brizy_compiler_params', array(
    113                 'page_id'      => (int) $editorConfig['wp']['page'],
    114                 'free_version' => BRIZY_EDITOR_VERSION,
    115                 'free_url'     => $this->compilerDownloadUrl,
    116                 'config_json'  => json_encode( $editorConfig ),
    117             ) );
     108            'page_id'      => (int) $editorConfig['wp']['page'],
     109            'free_version' => BRIZY_EDITOR_VERSION,
     110            'free_url'     => $this->compilerDownloadUrl,
     111            'config_json'  => json_encode( $editorConfig ),
     112        ) );
    118113    }
    119114
  • brizy/tags/2.6.2/languages/brizy.pot

    r3189269 r3190999  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Brizy 2.6.1\n"
     5"Project-Id-Version: Brizy 2.6.2\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: 2024-11-15T07:10:43+00:00\n"
     12"POT-Creation-Date: 2024-11-18T08:26:45+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.11.0\n"
  • brizy/tags/2.6.2/readme.txt

    r3189269 r3190999  
    55Tested up to: 6.7
    66Requires PHP: 7.2.24
    7 Stable tag: 2.6.1
     7Stable tag: 2.6.2
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    133133
    134134== Changelog ==
     135
     136= 2.6.2 - 2024-11-18 =
     137* Fixed: Simplify the  check if compilation is required
    135138
    136139= 2.6.1 - 2024-11-15 =
  • brizy/tags/2.6.2/vendor/composer/installed.php

    r3189269 r3190999  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '6914f50e880283f2d180227274a675df25816e98',
     6        'reference' => '7643f0240a84b5b6e966d385b617b487a155ec91',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    4343            'pretty_version' => 'dev-master',
    4444            'version' => 'dev-master',
    45             'reference' => '6914f50e880283f2d180227274a675df25816e98',
     45            'reference' => '7643f0240a84b5b6e966d385b617b487a155ec91',
    4646            'type' => 'library',
    4747            'install_path' => __DIR__ . '/../../',
  • brizy/trunk/README.md

    r3189269 r3190999  
    55Tested up to: 6.7<br>
    66Requires PHP: 7.2.24<br>
    7 Stable tag: 2.6.1<br>
     7Stable tag: 2.6.2<br>
    88License: GPLv3<br>
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    136136
    137137## Changelog
     138
     139### 2.6.2 - 2024-11-18
     140* Fixed: Simplify the  check if compilation is required
    138141
    139142### 2.6.1 - 2024-11-15
  • brizy/trunk/brizy.php

    r3189269 r3190999  
    66 * Author: Brizy.io
    77 * Author URI: https://brizy.io/
    8  * Version: 2.6.1
     8 * Version: 2.6.2
    99 * Text Domain: brizy
    1010 * License: GPLv3
     
    2020define('BRIZY_DEVELOPMENT', false );
    2121define('BRIZY_LOG', false );
    22 define('BRIZY_VERSION', '2.6.1');
     22define('BRIZY_VERSION', '2.6.2');
    2323define('BRIZY_MINIMUM_PRO_VERSION', '2.4.15');
    2424define('BRIZY_MINIMUM_COMPILER_VERSION', '300-wp');
  • brizy/trunk/editor/compiler.php

    r3172728 r3190999  
    5858
    5959        $currentCompiler = preg_replace( "/((beta\d?)?-wp)$/", "", $post->get_compiler_version() );
    60         $v2 = preg_replace( "/((beta\d?)?-wp)$/", "", BRIZY_MINIMUM_COMPILER_VERSION );
    61 
    62 
    63         if ( $post->get_compiler() !== Brizy_Editor_Entity::COMPILER_EXTERNAL ) {
    64             return false;
    65         }
     60        $v2              = preg_replace( "/((beta\d?)?-wp)$/", "", BRIZY_MINIMUM_COMPILER_VERSION );
    6661
    6762        if ( version_compare( $currentCompiler, $v2, "<" ) ) {
    68             return true;
     63            return true;
    6964        }
    7065
     
    111106
    112107        return apply_filters( 'brizy_compiler_params', array(
    113                 'page_id'      => (int) $editorConfig['wp']['page'],
    114                 'free_version' => BRIZY_EDITOR_VERSION,
    115                 'free_url'     => $this->compilerDownloadUrl,
    116                 'config_json'  => json_encode( $editorConfig ),
    117             ) );
     108            'page_id'      => (int) $editorConfig['wp']['page'],
     109            'free_version' => BRIZY_EDITOR_VERSION,
     110            'free_url'     => $this->compilerDownloadUrl,
     111            'config_json'  => json_encode( $editorConfig ),
     112        ) );
    118113    }
    119114
  • brizy/trunk/languages/brizy.pot

    r3189269 r3190999  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Brizy 2.6.1\n"
     5"Project-Id-Version: Brizy 2.6.2\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: 2024-11-15T07:10:43+00:00\n"
     12"POT-Creation-Date: 2024-11-18T08:26:45+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.11.0\n"
  • brizy/trunk/readme.txt

    r3189269 r3190999  
    55Tested up to: 6.7
    66Requires PHP: 7.2.24
    7 Stable tag: 2.6.1
     7Stable tag: 2.6.2
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    133133
    134134== Changelog ==
     135
     136= 2.6.2 - 2024-11-18 =
     137* Fixed: Simplify the  check if compilation is required
    135138
    136139= 2.6.1 - 2024-11-15 =
  • brizy/trunk/vendor/composer/installed.php

    r3189269 r3190999  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '6914f50e880283f2d180227274a675df25816e98',
     6        'reference' => '7643f0240a84b5b6e966d385b617b487a155ec91',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    4343            'pretty_version' => 'dev-master',
    4444            'version' => 'dev-master',
    45             'reference' => '6914f50e880283f2d180227274a675df25816e98',
     45            'reference' => '7643f0240a84b5b6e966d385b617b487a155ec91',
    4646            'type' => 'library',
    4747            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.