Skip to content

Commit 387ea08

Browse files
authored
Sync branch [skip ci]
2 parents 7e777fb + 27858f6 commit 387ea08

16 files changed

Lines changed: 31 additions & 29 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
##### [Version 3.2.2](https://github.com/Codeinwp/otter-blocks/compare/v3.2.1...v3.2.2) (2026-08-12)
2+
3+
- Form submissions can now be exported as a CSV file, with the export button offering a choice between CSV and XML formats.
4+
- Fixed a fatal error when a dynamic block class was not available during block registration.
5+
- Updated dependencies
6+
17
##### [Version 3.2.1](https://github.com/Codeinwp/otter-blocks/compare/v3.2.0...v3.2.1) (2026-07-22)
28

39
- Fixed an issue where the close button placed inside a popup could not be clicked when the popup content overlapped it.

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": "3.2.1",
5+
"version": "3.2.2",
66
"repositories":[
77
{
88
"type":"composer",

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: 3.2.1
10+
* Version: 3.2.2
1111
* Author: ThemeIsle
1212
* Author URI: https://themeisle.com
1313
* Requires at least: 6.6
@@ -27,7 +27,7 @@
2727
define( 'OTTER_BLOCKS_BASEFILE', __FILE__ );
2828
define( 'OTTER_BLOCKS_URL', plugins_url( '/', __FILE__ ) );
2929
define( 'OTTER_BLOCKS_PATH', __DIR__ );
30-
define( 'OTTER_BLOCKS_VERSION', '3.2.1' );
30+
define( 'OTTER_BLOCKS_VERSION', '3.2.2' );
3131
define( 'OTTER_BLOCKS_PRO_SUPPORT', true );
3232
define( 'OTTER_BLOCKS_SHOW_NOTICES', false );
3333
define( 'OTTER_PRODUCT_SLUG', basename( OTTER_BLOCKS_PATH ) );

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": "3.2.1",
3+
"version": "3.2.2",
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: 3.2.1
13+
* Version: 3.2.2
1414
* Author: ThemeIsle
1515
* Author URI: https://themeisle.com
1616
* Requires at least: 6.6

plugins/blocks-animation/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
**Requires at least:** 6.6
55
**Tested up to:** 7.0
66
**Requires PHP:** 5.4
7-
**Stable tag:** 3.2.1
7+
**Stable tag:** 3.2.2
88
**License:** GPLv3
99
**License URI:** https://www.gnu.org/licenses/gpl-3.0.en.html
1010

plugins/blocks-animation/readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: animation, gutenberg blocks, css, effects, transitions
44
Requires at least: 6.6
55
Tested up to: 7.0
66
Requires PHP: 5.4
7-
Stable tag: 3.2.1
7+
Stable tag: 3.2.2
88
License: GPLv3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
1010

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: 3.2.1
13+
* Version: 3.2.2
1414
* Author: ThemeIsle
1515
* Author URI: https://themeisle.com
1616
* Requires at least: 6.6

plugins/blocks-css/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
**Requires at least:** 6.6
55
**Tested up to:** 7.0
66
**Requires PHP:** 5.4
7-
**Stable tag:** 3.2.1
7+
**Stable tag:** 3.2.2
88
**License:** GPLv3
99
**License URI:** https://www.gnu.org/licenses/gpl-3.0.en.html
1010

0 commit comments

Comments
 (0)