Skip to content

Commit 412305c

Browse files
authored
Merge pull request #108 from liip/fix/rename-blocks
fix(): Rename blocks
2 parents 93eac53 + f0897a1 commit 412305c

14 files changed

+20
-16
lines changed

build/index.asset.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?php return array('dependencies' => array('wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => '2a125809b525a250b9ebef8d56322b37');
1+
<?php return array('dependencies' => array('wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n'), 'version' => '880a7b58237fe7651d7b3ff82836e11b');

build/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

languages/wp-bootstrap-blocks-de_CH.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is distributed under the same license as the Bootstrap Blocks plugin.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Bootstrap Blocks 4.2.0\n"
5+
"Project-Id-Version: Bootstrap Blocks 4.2.1\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-bootstrap-"
77
"blocks\n"
88
"POT-Creation-Date: 2022-05-12T07:38:53+00:00\n"

languages/wp-bootstrap-blocks-de_DE.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is distributed under the same license as the Bootstrap Blocks plugin.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Bootstrap Blocks 4.2.0\n"
5+
"Project-Id-Version: Bootstrap Blocks 4.2.1\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-bootstrap-"
77
"blocks\n"
88
"POT-Creation-Date: 2022-05-12T07:38:53+00:00\n"

languages/wp-bootstrap-blocks.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is distributed under the GPL2+.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: Bootstrap Blocks 4.2.0\n"
5+
"Project-Id-Version: Bootstrap Blocks 4.2.1\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-bootstrap-blocks\n"
77
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
88
"Language-Team: LANGUAGE <[email protected]>\n"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wp-bootstrap-blocks",
3-
"version": "4.2.0",
3+
"version": "4.2.1",
44
"private": true,
55
"description": "Bootstrap Gutenberg Blocks for WordPress",
66
"author": "Liip AG",

readme.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Tags: gutenberg, blocks, bootstrap
55
Requires at least: 5.0
66
Tested up to: 6.0
77
Requires PHP: 5.6
8-
Stable tag: 4.2.0
8+
Stable tag: 4.2.1
99
License: GPLv2
1010
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1111

@@ -143,11 +143,15 @@ Please create a new GitHub issue and let us know: [https://github.com/liip/boots
143143

144144
== Changelog ==
145145

146-
= 4.2.0 =
146+
= 4.2.1 =
147147

148148
**NOTICE:** Version 4.x of the plugin will be the last version to support WordPress versions lower than 5.3.
149149
If you're on a lower version of WordPress think about updating it if you still would like receive updates for this plugin.
150150

151+
* [FIX] Rename blocks to `<Blockname> (Bootstrap)` for better discoverability when searching for a block.
152+
153+
= 4.2.0 =
154+
151155
* [FEATURE] Reflect noGutters and horizontalGutters options visually in editor (WordPress >= 5.4).
152156
* [CHANGE] Add missing "Medium" size to vertical gutter options. If you're using the [`wpBootstrapBlocks.row.verticalGuttersOptions`](https://github.com/liip/bootstrap-blocks-wordpress-plugin#wpbootstrapblocksrowverticalguttersoptions) JavaScript filter to modify the options please check if the new option (`gy-4`) doesn't conflict with your custom options.
153157
* [FIX] Fix label of default css grid gutter option ("Medium" instead of "None").

src/button/block.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import './editor.scss';
1212

1313
registerBlockType( 'wp-bootstrap-blocks/button', {
1414
// Block name. Block names must be string that contains a namespace prefix. Example: my-plugin/my-custom-block.
15-
title: __( 'Bootstrap Button', 'wp-bootstrap-blocks' ), // Block title.
15+
title: __( 'Button (Bootstrap)', 'wp-bootstrap-blocks' ), // Block title.
1616
icon: button,
1717
category: 'wp-bootstrap-blocks', // Block category — Group blocks together based on common traits E.g. common, formatting, layout widgets, embed.
1818
keywords: [

src/class-wp-bootstrap-blocks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class WP_Bootstrap_Blocks {
3333
*
3434
* @var string
3535
*/
36-
public static $version = '4.2.0';
36+
public static $version = '4.2.1';
3737

3838
/**
3939
* The plugin token.

0 commit comments

Comments
 (0)