Plugin Directory

Changeset 2574971


Ignore:
Timestamp:
07/29/2021 08:49:32 PM (5 years ago)
Author:
liip
Message:

Preparing for 3.3.2 release

Location:
wp-bootstrap-blocks/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • wp-bootstrap-blocks/trunk/languages/wp-bootstrap-blocks-de_CH.po

    r2563339 r2574971  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Bootstrap Blocks 3.3.1\n"
     5"Project-Id-Version: Bootstrap Blocks 3.3.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-bootstrap-"
    77"blocks\n"
  • wp-bootstrap-blocks/trunk/languages/wp-bootstrap-blocks-de_DE.po

    r2563339 r2574971  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Bootstrap Blocks 3.3.1\n"
     5"Project-Id-Version: Bootstrap Blocks 3.3.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-bootstrap-"
    77"blocks\n"
  • wp-bootstrap-blocks/trunk/languages/wp-bootstrap-blocks.pot

    r2563339 r2574971  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Bootstrap Blocks 3.3.1\n"
     5"Project-Id-Version: Bootstrap Blocks 3.3.2\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-bootstrap-blocks\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
  • wp-bootstrap-blocks/trunk/readme.txt

    r2563339 r2574971  
    66Tested up to: 5.8
    77Requires PHP: 5.6
    8 Stable tag: 3.3.1
     8Stable tag: 3.3.2
    99License: GPLv2
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    121121
    122122== Changelog ==
     123
     124= 3.3.2 =
     125
     126* [FIX] Remove deprecated `wp-editor` dependency in newer versions of WordPress to avoid deprecation notice in widget screen (WordPress >= 5.8).
    123127
    124128= 3.3.1 =
  • wp-bootstrap-blocks/trunk/src/class-wp-bootstrap-blocks.php

    r2563339 r2574971  
    3434     * @var string
    3535     */
    36     public static $version = '3.3.1';
     36    public static $version = '3.3.2';
    3737
    3838    /**
     
    182182        $index_dependencies = isset( $index_asset['dependencies'] ) ? $index_asset['dependencies'] : array();
    183183        global $wp_version;
    184         if ( version_compare( $wp_version, '5.2', '<' ) ) {
    185             // We have to filter out the dependency to 'wp-block-editor' since it's not available in WordPress 5.1 and older.
    186             $index_dependencies = array_filter(
    187                 $index_dependencies,
    188                 function ( $dependency ) {
    189                     return 'wp-block-editor' !== $dependency;
    190                 }
    191             );
    192         }
     184        $wp_editor_dependency_to_remove = version_compare( $wp_version, '5.2', '<' ) ? 'wp-block-editor' : 'wp-editor';
     185        $index_dependencies = array_filter(
     186            $index_dependencies,
     187            function ( $dependency ) use ( $wp_editor_dependency_to_remove ) {
     188                return $wp_editor_dependency_to_remove !== $dependency;
     189            }
     190        );
    193191
    194192        $index_version = isset( $index_asset['version'] ) ? $index_asset['version'] : filemtime( $index_path );
  • wp-bootstrap-blocks/trunk/wp-bootstrap-blocks.php

    r2563339 r2574971  
    66 * Author: Liip AG
    77 * Author URI: https://liip.ch
    8  * Version: 3.3.1
     8 * Version: 3.3.2
    99 * License: GPL2+
    1010 * License URI: https://www.gnu.org/licenses/gpl-2.0.txt
Note: See TracChangeset for help on using the changeset viewer.