From bc7fe48eedc6423ea84d353cc64d963a00cbd119 Mon Sep 17 00:00:00 2001 From: "themeisle[bot]" Date: Wed, 19 Oct 2022 03:53:14 +0000 Subject: [PATCH] chore(release): 2.1.0 #### [Version 2.1.0](https://github.com/Codeinwp/otter-blocks/compare/v2.0.16...v2.1.0) (2022-10-19) - Add Otter Patterns - Add Live Preview of Dynamic Values - Add Post Content option to Dynamic Values - Add Closing feature to Sticky Extension - Add class to body when some element is active in Sticky - Posts Block Redesign - WordPress 6.1 Compatibility - Fix Review Block padding not affecting Pros/Cons - Fix type in Review Block - Fix Border/Icon color inheritance in Blocks - Fix Section inconsistency in Global Settings - Fix Otter allowed_html for Forms - Fix the Welcome Modal showing more than once - Fix Section Vertical alignment not working on Mobile - Fix Tabs Block remove option not working - Fix Dynamic Image crashing when Woo value is used, and then Woo is deactivated - More bug fixes --- CHANGELOG.md | 20 ++++++++++++++++ composer.json | 2 +- otter-blocks.php | 4 ++-- package-lock.json | 2 +- package.json | 2 +- plugins/blocks-animation/blocks-animation.php | 2 +- plugins/blocks-css/blocks-css.php | 2 +- plugins/otter-pro/otter-pro.php | 4 ++-- readme.md | 23 +++++++++++++++++++ readme.txt | 23 +++++++++++++++++++ 10 files changed, 75 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 20e946b25..26fb28370 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +#### [Version 2.1.0](https://github.com/Codeinwp/otter-blocks/compare/v2.0.16...v2.1.0) (2022-10-19) + +- Add Otter Patterns +- Add Live Preview of Dynamic Values +- Add Post Content option to Dynamic Values +- Add Closing feature to Sticky Extension +- Add class to body when some element is active in Sticky +- Posts Block Redesign +- WordPress 6.1 Compatibility +- Fix Review Block padding not affecting Pros/Cons +- Fix type in Review Block +- Fix Border/Icon color inheritance in Blocks +- Fix Section inconsistency in Global Settings +- Fix Otter allowed_html for Forms +- Fix the Welcome Modal showing more than once +- Fix Section Vertical alignment not working on Mobile +- Fix Tabs Block remove option not working +- Fix Dynamic Image crashing when Woo value is used, and then Woo is deactivated +- More bug fixes + ##### [Version 2.0.16](https://github.com/Codeinwp/otter-blocks/compare/v2.0.15...v2.0.16) (2022-09-27) - Minor fixes. diff --git a/composer.json b/composer.json index eb81b739b..1fb49871e 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "codeinwp/otter-blocks", "description": "A set of awesome Gutenberg Blocks by ThemeIsle.", "type": "wordpress-plugin", - "version": "2.0.16", + "version": "2.1.0", "require-dev": { "squizlabs/php_codesniffer": "^3.3", "wp-coding-standards/wpcs": "^1", diff --git a/otter-blocks.php b/otter-blocks.php index e99d8c661..1059e6f98 100644 --- a/otter-blocks.php +++ b/otter-blocks.php @@ -7,7 +7,7 @@ * Plugin Name: Otter – Page Builder Blocks & Extensions for Gutenberg * Plugin URI: https://themeisle.com/plugins/otter-blocks * Description: Create beautiful and attracting posts, pages, and landing pages with Otter – Page Builder Blocks & Extensions for Gutenberg. Otter comes with dozens of Gutenberg blocks that are all you need to build beautiful pages. - * Version: 2.0.16 + * Version: 2.1.0 * Author: ThemeIsle * Author URI: https://themeisle.com * License: GPL-2.0+ @@ -26,7 +26,7 @@ define( 'OTTER_BLOCKS_BASEFILE', __FILE__ ); define( 'OTTER_BLOCKS_URL', plugins_url( '/', __FILE__ ) ); define( 'OTTER_BLOCKS_PATH', dirname( __FILE__ ) ); -define( 'OTTER_BLOCKS_VERSION', '2.0.16' ); +define( 'OTTER_BLOCKS_VERSION', '2.1.0' ); define( 'OTTER_BLOCKS_PRO_SUPPORT', true ); define( 'OTTER_BLOCKS_SHOW_NOTICES', false ); diff --git a/package-lock.json b/package-lock.json index 059c28de3..c11b9f271 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "otter-blocks", - "version": "2.0.16", + "version": "2.1.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index cfb7306c2..2f965ae97 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "otter-blocks", - "version": "2.0.16", + "version": "2.1.0", "description": "Otter – Page Builder Blocks & Extensions for Gutenberg", "scripts": { "build": "npm-run-all --parallel prod:*", diff --git a/plugins/blocks-animation/blocks-animation.php b/plugins/blocks-animation/blocks-animation.php index a1de315cf..3ce63fb50 100644 --- a/plugins/blocks-animation/blocks-animation.php +++ b/plugins/blocks-animation/blocks-animation.php @@ -10,7 +10,7 @@ * Plugin Name: Blocks Animation: CSS Animations for Gutenberg Blocks * Plugin URI: https://github.com/Codeinwp/otter-blocks * Description: Blocks Animation allows you to add CSS Animations to all of your Gutenberg blocks in the most elegent way. - * Version: 2.0.16 + * Version: 2.1.0 * Author: ThemeIsle * Author URI: https://themeisle.com * License: GPL-3.0+ diff --git a/plugins/blocks-css/blocks-css.php b/plugins/blocks-css/blocks-css.php index e15895f75..e7c74afdc 100644 --- a/plugins/blocks-css/blocks-css.php +++ b/plugins/blocks-css/blocks-css.php @@ -10,7 +10,7 @@ * Plugin Name: Blocks CSS: CSS Editor for Gutenberg Blocks * Plugin URI: https://github.com/Codeinwp/otter-blocks * Description: Blocks CSS allows you add custom CSS to your Blocks straight from the Block Editor (Gutenberg). - * Version: 2.0.16 + * Version: 2.1.0 * Author: ThemeIsle * Author URI: https://themeisle.com * License: GPL-3.0+ diff --git a/plugins/otter-pro/otter-pro.php b/plugins/otter-pro/otter-pro.php index 76dbfcfb6..b95f42eb7 100644 --- a/plugins/otter-pro/otter-pro.php +++ b/plugins/otter-pro/otter-pro.php @@ -7,7 +7,7 @@ * Plugin Name: Otter Pro * Plugin URI: https://themeisle.com/plugins/otter-blocks * Description: Create beautiful and attracting posts, pages, and landing pages with Otter – Page Builder Blocks & Extensions for Gutenberg. Otter comes with dozens of Gutenberg blocks that are all you need to build beautiful pages. - * Version: 2.0.16 + * Version: 2.1.0 * Author: ThemeIsle * Author URI: https://themeisle.com * License: GPL-2.0+ @@ -28,7 +28,7 @@ define( 'OTTER_PRO_PATH', dirname( __FILE__ ) ); define( 'OTTER_PRO_BUILD_URL', plugins_url( '/', __FILE__ ) . 'build/pro/' ); define( 'OTTER_PRO_BUILD_PATH', dirname( __FILE__ ) . '/build/pro/' ); -define( 'OTTER_PRO_VERSION', '2.0.16' ); +define( 'OTTER_PRO_VERSION', '2.1.0' ); require_once dirname( __FILE__ ) . '/autoloader.php'; $autoloader = new \ThemeIsle\OtterPro\Autoloader(); diff --git a/readme.md b/readme.md index 8d36e879f..11188d756 100644 --- a/readme.md +++ b/readme.md @@ -206,6 +206,29 @@ You can check Otter documentation [here](https://docs.themeisle.com/article/1478 ## Changelog ## +#### [Version 2.1.0](https://github.com/Codeinwp/otter-blocks/compare/v2.0.16...v2.1.0) (2022-10-19) + +- Add Otter Patterns +- Add Live Preview of Dynamic Values +- Add Post Content option to Dynamic Values +- Add Closing feature to Sticky Extension +- Add class to body when some element is active in Sticky +- Posts Block Redesign +- WordPress 6.1 Compatibility +- Fix Review Block padding not affecting Pros/Cons +- Fix type in Review Block +- Fix Border/Icon color inheritance in Blocks +- Fix Section inconsistency in Global Settings +- Fix Otter allowed_html for Forms +- Fix the Welcome Modal showing more than once +- Fix Section Vertical alignment not working on Mobile +- Fix Tabs Block remove option not working +- Fix Dynamic Image crashing when Woo value is used, and then Woo is deactivated +- More bug fixes + + + + ##### [Version 2.0.16](https://github.com/Codeinwp/otter-blocks/compare/v2.0.15...v2.0.16) (2022-09-27) - Minor fixes. diff --git a/readme.txt b/readme.txt index 1e5f9df33..1f93e6b0d 100644 --- a/readme.txt +++ b/readme.txt @@ -206,6 +206,29 @@ You can check Otter documentation [here](https://docs.themeisle.com/article/1478 == Changelog == +#### [Version 2.1.0](https://github.com/Codeinwp/otter-blocks/compare/v2.0.16...v2.1.0) (2022-10-19) + +- Add Otter Patterns +- Add Live Preview of Dynamic Values +- Add Post Content option to Dynamic Values +- Add Closing feature to Sticky Extension +- Add class to body when some element is active in Sticky +- Posts Block Redesign +- WordPress 6.1 Compatibility +- Fix Review Block padding not affecting Pros/Cons +- Fix type in Review Block +- Fix Border/Icon color inheritance in Blocks +- Fix Section inconsistency in Global Settings +- Fix Otter allowed_html for Forms +- Fix the Welcome Modal showing more than once +- Fix Section Vertical alignment not working on Mobile +- Fix Tabs Block remove option not working +- Fix Dynamic Image crashing when Woo value is used, and then Woo is deactivated +- More bug fixes + + + + ##### [Version 2.0.16](https://github.com/Codeinwp/otter-blocks/compare/v2.0.15...v2.0.16) (2022-09-27) - Minor fixes.