Skip to content

Commit

Permalink
v3.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nk-o committed Dec 21, 2024
1 parent 5cc59ad commit 3f24038
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 22 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

= 3.8.3 - Dec 21, 2024 =

* fixed XSS issue in admin blocks list page

= 3.8.2 - Dec 13, 2024 =

* **Pro**
Expand Down
36 changes: 18 additions & 18 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.2\n"
"Project-Id-Version: Lazy Blocks 3.8.3\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-13T06:30:22+00:00\n"
"POT-Creation-Date: 2024-12-21T16:11:11+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 All @@ -18,7 +18,7 @@ msgstr ""
#: lazy-blocks.php
#: classes/class-admin.php:252
#: classes/class-blocks.php:187
#: classes/class-blocks.php:1162
#: classes/class-blocks.php:1176
msgid "Lazy Blocks"
msgstr ""

Expand Down Expand Up @@ -76,61 +76,61 @@ msgid "Add Block"
msgstr ""

#. translators: %1$ - post title.
#: classes/class-blocks.php:346
#: classes/class-blocks.php:360
msgid "Duplicate “%1$s”"
msgstr ""

#: classes/class-blocks.php:349
#: classes/class-blocks.php:363
#: assets/block-builder/boxes/controls/control.js:246
msgid "Duplicate"
msgstr ""

#. translators: %1$ - post title.
#: classes/class-blocks.php:360
#: classes/class-blocks.php:374
msgid "Export “%1$s”"
msgstr ""

#: classes/class-blocks.php:363
#: classes/class-blocks.php:398
#: classes/class-blocks.php:377
#: classes/class-blocks.php:412
msgid "Export"
msgstr ""

#. translators: %1$ - post title.
#: classes/class-blocks.php:375
#: classes/class-blocks.php:389
msgid "Deactivate “%1$s”"
msgstr ""

#. translators: %1$ - post title.
#: classes/class-blocks.php:375
#: classes/class-blocks.php:389
msgid "Activate “%1$s”"
msgstr ""

#: classes/class-blocks.php:379
#: classes/class-blocks.php:402
#: classes/class-blocks.php:393
#: classes/class-blocks.php:416
msgid "Deactivate"
msgstr ""

#: classes/class-blocks.php:379
#: classes/class-blocks.php:400
#: classes/class-blocks.php:393
#: classes/class-blocks.php:414
msgid "Activate"
msgstr ""

#: classes/class-blocks.php:442
#: classes/class-blocks.php:456
#: assets/block-builder/boxes/general/index.js:101
msgid "Icon"
msgstr ""

#: classes/class-blocks.php:444
#: classes/class-blocks.php:458
#: assets/block-builder/boxes/general/index.js:75
msgid "Slug"
msgstr ""

#: classes/class-blocks.php:445
#: classes/class-blocks.php:459
#: assets/block-builder/boxes/general/index.js:114
msgid "Category"
msgstr ""

#: classes/class-blocks.php:446
#: classes/class-blocks.php:460
#: assets/block-builder/boxes/general/index.js:189
msgid "Description"
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.2
* Version: 3.8.3
* 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.2' );
define( 'LAZY_BLOCKS_VERSION', '3.8.3' );
}

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.2",
"version": "3.8.3",
"description": "No hassle Gutenberg blocks for WordPress developers",
"license": "GPL-2.0",
"author": "Lazy Blocks Team <https://www.lazyblocks.com/>",
Expand Down
6 changes: 5 additions & 1 deletion 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.2
* Stable tag: 3.8.3
* License: GPLv2 or later
* License URI: <http://www.gnu.org/licenses/gpl-2.0.html>

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

## Changelog

= 3.8.3 - Dec 21, 2024 =

* fixed XSS issue in admin blocks list page

= 3.8.2 - Dec 13, 2024 =

* **Pro**
Expand Down

0 comments on commit 3f24038

Please sign in to comment.