Skip to content

Commit

Permalink
v3.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nk-o committed Dec 10, 2024
1 parent 667f4d7 commit c4fe1e0
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 17 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@

All notable changes to this project will be documented in this file.

= 3.8.0 - Dec 4, 2024 =
= 3.8.1 - Dec 10, 2024 =

* remove experimental notice under WPML setting
* minor changes in readme
* **Pro**:
* fixed block crash when conditional logic added to the control which is no longer exists

= 3.8.0 - Dec 7, 2024 =

* added WordPress 6.7 compatibility
* added better error messages to block Inspector and to the editor toolbar when block has invalid required controls
Expand Down
2 changes: 1 addition & 1 deletion build/block-builder.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('lodash', 'react', 'react-dom', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins'), 'version' => 'b7feb8d53da0102c2f95');
<?php return array('dependencies' => array('lodash', 'react', 'react-dom', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins'), 'version' => 'c03983a25791120149ab');
2 changes: 1 addition & 1 deletion build/block-builder.js

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions languages/lazy-blocks.json
Original file line number Diff line number Diff line change
Expand Up @@ -489,9 +489,6 @@
"WPML Translation": [
""
],
"Experimental feature, may not work as expected.": [
""
],
"Type": [
""
],
Expand Down
8 changes: 2 additions & 6 deletions languages/lazy-blocks.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# This file is distributed under the GPLv2 or later.
msgid ""
msgstr ""
"Project-Id-Version: Lazy Blocks 3.8.0\n"
"Project-Id-Version: Lazy Blocks 3.8.1\n"
"Report-Msgid-Bugs-To: https://github.com/nk-crew/lazyblocks/issues\n"
"Last-Translator: Lazy Blocks Team\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2024-12-06T20:57:23+00:00\n"
"POT-Creation-Date: 2024-12-10T12:32:18+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.11.0\n"
"X-Domain: lazy-blocks\n"
Expand Down Expand Up @@ -728,10 +728,6 @@ msgstr ""
msgid "WPML Translation"
msgstr ""

#: assets/block-builder/boxes/selected-control-settings/settings-rows/translate.js:20
msgid "Experimental feature, may not work as expected."
msgstr ""

#: assets/block-builder/boxes/selected-control-settings/settings-rows/type.js:109
msgid "Type"
msgstr ""
Expand Down
4 changes: 2 additions & 2 deletions lazy-blocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Lazy Blocks
* Description: Easily create custom blocks and custom meta fields for Gutenberg without hard coding.
* Version: 3.8.0
* Version: 3.8.1
* Author: Lazy Blocks Team
* Author URI: https://www.lazyblocks.com/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=byline
* License: GPLv2 or later
Expand All @@ -17,7 +17,7 @@
}

if ( ! defined( 'LAZY_BLOCKS_VERSION' ) ) {
define( 'LAZY_BLOCKS_VERSION', '3.8.0' );
define( 'LAZY_BLOCKS_VERSION', '3.8.1' );
}

if ( ! class_exists( 'LazyBlocks' ) ) :
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lazy-blocks",
"title": "Lazy Blocks",
"version": "3.8.0",
"version": "3.8.1",
"description": "No hassle Gutenberg blocks for WordPress developers",
"license": "GPL-2.0",
"author": "Lazy Blocks Team <https://www.lazyblocks.com/>",
Expand Down
11 changes: 9 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Requires at least: 6.2
* Tested up to: 6.7
* Requires PHP: 7.2
* Stable tag: 3.8.0
* Stable tag: 3.8.1
* License: GPLv2 or later
* License URI: <http://www.gnu.org/licenses/gpl-2.0.html>

Expand Down Expand Up @@ -136,7 +136,14 @@ The manual installation method involves downloading our Lazy Blocks plugin and u

## Changelog

= 3.8.0 - Dec 4, 2024 =
= 3.8.1 - Dec 10, 2024 =

* remove experimental notice under WPML setting
* minor changes in readme
* **Pro**:
* fixed block crash when conditional logic added to the control which is no longer exists

= 3.8.0 - Dec 7, 2024 =

* added WordPress 6.7 compatibility
* added better error messages to block Inspector and to the editor toolbar when block has invalid required controls
Expand Down

0 comments on commit c4fe1e0

Please sign in to comment.