Skip to content

Commit e4e88d3

Browse files
committed
Merge branch 'develop' into feat/getting-started-onboarding
# Conflicts: # package-lock.json
2 parents 2931542 + 77fda6f commit e4e88d3

File tree

9 files changed

+3111
-3120
lines changed

9 files changed

+3111
-3120
lines changed

languages/stackable-ultimate-gutenberg-blocks.pot

Lines changed: 3087 additions & 3103 deletions
Large diffs are not rendered by default.

package-lock.json

Lines changed: 8 additions & 8 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": "stackable",
3-
"version": "3.18.0",
3+
"version": "3.18.1",
44
"private": true,
55
"description": "Blocks for everyone",
66
"author": "Benjamin Intal of Gambit",

plugin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Author: Gambit Technologies, Inc
77
* Author URI: http://gambit.ph
88
* Text Domain: stackable-ultimate-gutenberg-blocks
9-
* Version: 3.18.0
9+
* Version: 3.18.1
1010
*
1111
* @package Stackable
1212
* @fs_premium_only /freemius.php, /freemius/
@@ -46,7 +46,7 @@ function stackable_multiple_plugins_check() {
4646

4747
defined( 'STACKABLE_SHOW_PRO_NOTICES' ) || define( 'STACKABLE_SHOW_PRO_NOTICES', true );
4848
defined( 'STACKABLE_BUILD' ) || define( 'STACKABLE_BUILD', 'free' );
49-
defined( 'STACKABLE_VERSION' ) || define( 'STACKABLE_VERSION', '3.18.0' );
49+
defined( 'STACKABLE_VERSION' ) || define( 'STACKABLE_VERSION', '3.18.1' );
5050
defined( 'STACKABLE_FILE' ) || define( 'STACKABLE_FILE', __FILE__ );
5151
defined( 'STACKABLE_I18N' ) || define( 'STACKABLE_I18N', 'stackable-ultimate-gutenberg-blocks' ); // Plugin slug.
5252
defined( 'STACKABLE_DESIGN_LIBRARY_URL' ) || define( 'STACKABLE_DESIGN_LIBRARY_URL', 'https://stackable-files.pages.dev' ); // Design Library CDN URL

readme.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: blocks, gutenberg, gutenberg blocks, page builder, WordPress blocks
44
Requires at least: 6.5.5
55
Tested up to: 6.8.2
66
Requires PHP: 7.3
7-
Stable tag: 3.18.0
7+
Stable tag: 3.18.1
88
License: GPLv3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1010

@@ -305,6 +305,13 @@ Nope. Stackable only works with Gutenberg, the new WordPress editor.
305305

306306
== Changelog ==
307307

308+
= 3.18.1 =
309+
* Fixed: Block styles - error encountered when creating divider and icon button block styles #3583
310+
* Fixed: Role Manager settings doesn't display when changing the site language #3565
311+
* Fixed: Auto-deactivate free/premium when another is acitvated and show an admin notice #3574
312+
* Fixed: Block styles - show the correct block title when deleting a style #387
313+
* Fixed: PHP error on stackable_add_welcome_notification when doing some REST API calls #3579
314+
308315
= 3.18.0 =
309316

310317
[Introducing: Global Block Styles](https://wpstackable.com/blog/introducing-block-styles/?utm_source=wp-repo&utm_campaign=readme&utm_medium=link)

src/block/divider/edit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,5 +137,5 @@ export default compose(
137137
withBlockWrapperIsHovered,
138138
withQueryLoopContext,
139139
withBlockAttributeContext,
140-
withBlockStyleContext( blockStyles ),
140+
withBlockStyleContext( dividerStyles ),
141141
)( Edit )

src/block/icon-button/edit.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,5 +121,5 @@ export default compose(
121121
withBlockWrapper,
122122
withQueryLoopContext,
123123
withBlockAttributeContext,
124-
withBlockStyleContext( blockStyles ),
124+
withBlockStyleContext( iconButtonStyles ),
125125
)( Edit )

src/dynamic-breakpoints.php

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

src/welcome/admin.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -556,7 +556,7 @@ body.toplevel_page_stk-custom-fields {
556556
flex: 1 0 auto;
557557
display: flex;
558558
flex-direction: column;
559-
justify-content: end;
559+
justify-content: flex-end;
560560
}
561561
.s-save-changes-inner-wrapper {
562562
bottom: 20px;
@@ -599,7 +599,7 @@ body.toplevel_page_stk-custom-fields {
599599
}
600600
.s-search-setting {
601601
display: flex;
602-
justify-content: end;
602+
justify-content: flex-end;
603603
position: absolute;
604604
right: 30px;
605605
.s-search-setting__input {

0 commit comments

Comments
 (0)