Skip to content

Commit f4c3904

Browse files
committed
chore(release): 2.6.0
#### [Version 2.6.0](v2.5.2...v2.6.0) (2023-12-18) ### New Features - **New Onboarding Wizard for Raft Theme**: Introduced a New Onboarding Wizard to enhance the setup experience for the Raft theme. ### Bug Fixes - **Button Group Error on Nofollow Disable**: Resolved an issue where disabling Add Nofollow and refreshing the page caused errors in the Button group. - **Block Conditions PHP Array Issue**: Fixed a problem where block conditions were throwing a PHP array error. - **Styling Loss in Widgets Area with Elementor**: Addressed the issue where blocks added in the widgets area lost styling when Elementor was activated. - **Slider Images in Neves Header Not Rendering**: Fixed a bug where slider images were not being rendered if added in Neves header.
1 parent 3ce1761 commit f4c3904

File tree

10 files changed

+50
-9
lines changed

10 files changed

+50
-9
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
#### [Version 2.6.0](https://github.com/Codeinwp/otter-blocks/compare/v2.5.2...v2.6.0) (2023-12-18)
2+
3+
### New Features
4+
- **New Onboarding Wizard for Raft Theme**: Introduced a New Onboarding Wizard to enhance the setup experience for the Raft theme.
5+
6+
### Bug Fixes
7+
- **Button Group Error on Nofollow Disable**: Resolved an issue where disabling Add Nofollow and refreshing the page caused errors in the Button group.
8+
- **Block Conditions PHP Array Issue**: Fixed a problem where block conditions were throwing a PHP array error.
9+
- **Styling Loss in Widgets Area with Elementor**: Addressed the issue where blocks added in the widgets area lost styling when Elementor was activated.
10+
- **Slider Images in Neves Header Not Rendering**: Fixed a bug where slider images were not being rendered if added in Neves header.
11+
112
##### [Version 2.5.2](https://github.com/Codeinwp/otter-blocks/compare/v2.5.1...v2.5.2) (2023-11-22)
213

314
### Bug Fixes

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "codeinwp/otter-blocks",
33
"description": "A set of awesome Gutenberg Blocks by ThemeIsle.",
44
"type": "wordpress-plugin",
5-
"version": "2.5.2",
5+
"version": "2.6.0",
66
"require-dev": {
77
"squizlabs/php_codesniffer": "^3.3",
88
"wp-coding-standards/wpcs": "^1",

otter-blocks.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Plugin Name: Otter – Page Builder Blocks & Extensions for Gutenberg
88
* Plugin URI: https://themeisle.com/plugins/otter-blocks
99
* 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.
10-
* Version: 2.5.2
10+
* Version: 2.6.0
1111
* Author: ThemeIsle
1212
* Author URI: https://themeisle.com
1313
* License: GPL-2.0+
@@ -26,7 +26,7 @@
2626
define( 'OTTER_BLOCKS_BASEFILE', __FILE__ );
2727
define( 'OTTER_BLOCKS_URL', plugins_url( '/', __FILE__ ) );
2828
define( 'OTTER_BLOCKS_PATH', dirname( __FILE__ ) );
29-
define( 'OTTER_BLOCKS_VERSION', '2.5.2' );
29+
define( 'OTTER_BLOCKS_VERSION', '2.6.0' );
3030
define( 'OTTER_BLOCKS_PRO_SUPPORT', true );
3131
define( 'OTTER_BLOCKS_SHOW_NOTICES', false );
3232

package-lock.json

Lines changed: 1 addition & 1 deletion
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": "otter-blocks",
3-
"version": "2.5.2",
3+
"version": "2.6.0",
44
"description": "Otter – Page Builder Blocks & Extensions for Gutenberg",
55
"scripts": {
66
"build": "npm-run-all --parallel prod:*",

plugins/blocks-animation/blocks-animation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Plugin Name: Blocks Animation: CSS Animations for Gutenberg Blocks
1111
* Plugin URI: https://github.com/Codeinwp/otter-blocks
1212
* Description: Blocks Animation allows you to add CSS Animations to all of your Gutenberg blocks in the most elegent way.
13-
* Version: 2.5.2
13+
* Version: 2.6.0
1414
* Author: ThemeIsle
1515
* Author URI: https://themeisle.com
1616
* License: GPL-3.0+

plugins/blocks-css/blocks-css.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Plugin Name: Blocks CSS: CSS Editor for Gutenberg Blocks
1111
* Plugin URI: https://github.com/Codeinwp/otter-blocks
1212
* Description: Blocks CSS allows you add custom CSS to your Blocks straight from the Block Editor (Gutenberg).
13-
* Version: 2.5.2
13+
* Version: 2.6.0
1414
* Author: ThemeIsle
1515
* Author URI: https://themeisle.com
1616
* License: GPL-3.0+

plugins/otter-pro/otter-pro.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Plugin Name: Otter Pro
88
* Plugin URI: https://themeisle.com/plugins/otter-blocks
99
* 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.
10-
* Version: 2.5.2
10+
* Version: 2.6.0
1111
* Author: ThemeIsle
1212
* Author URI: https://themeisle.com
1313
* License: GPL-2.0+
@@ -28,7 +28,7 @@
2828
define( 'OTTER_PRO_PATH', dirname( __FILE__ ) );
2929
define( 'OTTER_PRO_BUILD_URL', plugins_url( '/', __FILE__ ) . 'build/pro/' );
3030
define( 'OTTER_PRO_BUILD_PATH', dirname( __FILE__ ) . '/build/pro/' );
31-
define( 'OTTER_PRO_VERSION', '2.5.2' );
31+
define( 'OTTER_PRO_VERSION', '2.6.0' );
3232

3333
require_once dirname( __FILE__ ) . '/autoloader.php';
3434
$autoloader = new \ThemeIsle\OtterPro\Autoloader();

readme.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,8 @@ Otter Blocks is an open-source project, and we welcome contributors to be part o
265265
- Interested in our other plugins? Take a look [here](https://themeisle.com/wordpress-plugins/?utm_source=wpadmin&utm_medium=readme&utm_campaign=otter-blocks).
266266
- Get the most out of Otter Blocks with our helpful [YouTube Tutorials Playlist](https://youtube.com/playlist?list=PLmRasCVwuvpSep2MOsIoE0ncO9JE3FcKP).
267267

268+
The plugin is relying on the service behind api.themeisle.com for accessing the patterns list, AI prompts and Onboarding. No account is required to access the service template collection and the privacy policy can be found [here](https://themeisle.com/privacy-policy/).
269+
268270
## Screenshots ##
269271

270272
1. Gutenberg Block Animations
@@ -317,6 +319,20 @@ The Patterns have been designed to make it easier for you to build your site usi
317319

318320
## Changelog ##
319321

322+
#### [Version 2.6.0](https://github.com/Codeinwp/otter-blocks/compare/v2.5.2...v2.6.0) (2023-12-18)
323+
324+
### New Features
325+
- **New Onboarding Wizard for Raft Theme**: Introduced a New Onboarding Wizard to enhance the setup experience for the Raft theme.
326+
327+
### Bug Fixes
328+
- **Button Group Error on Nofollow Disable**: Resolved an issue where disabling Add Nofollow and refreshing the page caused errors in the Button group.
329+
- **Block Conditions PHP Array Issue**: Fixed a problem where block conditions were throwing a PHP array error.
330+
- **Styling Loss in Widgets Area with Elementor**: Addressed the issue where blocks added in the widgets area lost styling when Elementor was activated.
331+
- **Slider Images in Neves Header Not Rendering**: Fixed a bug where slider images were not being rendered if added in Neves header.
332+
333+
334+
335+
320336
##### [Version 2.5.2](https://github.com/Codeinwp/otter-blocks/compare/v2.5.1...v2.5.2) (2023-11-22)
321337

322338
### Bug Fixes

readme.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,20 @@ The Patterns have been designed to make it easier for you to build your site usi
319319

320320
== Changelog ==
321321

322+
#### [Version 2.6.0](https://github.com/Codeinwp/otter-blocks/compare/v2.5.2...v2.6.0) (2023-12-18)
323+
324+
### New Features
325+
- **New Onboarding Wizard for Raft Theme**: Introduced a New Onboarding Wizard to enhance the setup experience for the Raft theme.
326+
327+
### Bug Fixes
328+
- **Button Group Error on Nofollow Disable**: Resolved an issue where disabling Add Nofollow and refreshing the page caused errors in the Button group.
329+
- **Block Conditions PHP Array Issue**: Fixed a problem where block conditions were throwing a PHP array error.
330+
- **Styling Loss in Widgets Area with Elementor**: Addressed the issue where blocks added in the widgets area lost styling when Elementor was activated.
331+
- **Slider Images in Neves Header Not Rendering**: Fixed a bug where slider images were not being rendered if added in Neves header.
332+
333+
334+
335+
322336
##### [Version 2.5.2](https://github.com/Codeinwp/otter-blocks/compare/v2.5.1...v2.5.2) (2023-11-22)
323337

324338
### Bug Fixes

0 commit comments

Comments
 (0)