Changeset 2574971
- Timestamp:
- 07/29/2021 08:49:32 PM (5 years ago)
- Location:
- wp-bootstrap-blocks/trunk
- Files:
-
- 6 edited
-
languages/wp-bootstrap-blocks-de_CH.po (modified) (1 diff)
-
languages/wp-bootstrap-blocks-de_DE.po (modified) (1 diff)
-
languages/wp-bootstrap-blocks.pot (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
src/class-wp-bootstrap-blocks.php (modified) (2 diffs)
-
wp-bootstrap-blocks.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-bootstrap-blocks/trunk/languages/wp-bootstrap-blocks-de_CH.po
r2563339 r2574971 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Bootstrap Blocks 3.3. 1\n"5 "Project-Id-Version: Bootstrap Blocks 3.3.2\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-bootstrap-" 7 7 "blocks\n" -
wp-bootstrap-blocks/trunk/languages/wp-bootstrap-blocks-de_DE.po
r2563339 r2574971 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Bootstrap Blocks 3.3. 1\n"5 "Project-Id-Version: Bootstrap Blocks 3.3.2\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-bootstrap-" 7 7 "blocks\n" -
wp-bootstrap-blocks/trunk/languages/wp-bootstrap-blocks.pot
r2563339 r2574971 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Bootstrap Blocks 3.3. 1\n"5 "Project-Id-Version: Bootstrap Blocks 3.3.2\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-bootstrap-blocks\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -
wp-bootstrap-blocks/trunk/readme.txt
r2563339 r2574971 6 6 Tested up to: 5.8 7 7 Requires PHP: 5.6 8 Stable tag: 3.3. 18 Stable tag: 3.3.2 9 9 License: GPLv2 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 121 121 122 122 == 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). 123 127 124 128 = 3.3.1 = -
wp-bootstrap-blocks/trunk/src/class-wp-bootstrap-blocks.php
r2563339 r2574971 34 34 * @var string 35 35 */ 36 public static $version = '3.3. 1';36 public static $version = '3.3.2'; 37 37 38 38 /** … … 182 182 $index_dependencies = isset( $index_asset['dependencies'] ) ? $index_asset['dependencies'] : array(); 183 183 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 ); 193 191 194 192 $index_version = isset( $index_asset['version'] ) ? $index_asset['version'] : filemtime( $index_path ); -
wp-bootstrap-blocks/trunk/wp-bootstrap-blocks.php
r2563339 r2574971 6 6 * Author: Liip AG 7 7 * Author URI: https://liip.ch 8 * Version: 3.3. 18 * Version: 3.3.2 9 9 * License: GPL2+ 10 10 * License URI: https://www.gnu.org/licenses/gpl-2.0.txt
Note: See TracChangeset
for help on using the changeset viewer.