Skip to content

Commit

Permalink
v3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nk-o committed Jan 13, 2025
1 parent 0e1c93f commit dfcea74
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 11 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

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

= 3.4.1 - Jan 13, 2025 =

* fixed blocks error in Widgets screen because 'core/editor' store is not available
* updated Google Fonts list

= 3.4.0 - Dec 18, 2024 =

* added WordPress 6.7 compatibility fixes
Expand Down
2 changes: 1 addition & 1 deletion build/gutenberg/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('jquery', 'lodash', 'react', 'react-dom', 'react-jsx-runtime', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-plugins', 'wp-rich-text', 'wp-token-list'), 'version' => '15c30a586b736b5631ce');
<?php return array('dependencies' => array('jquery', 'lodash', 'react', 'react-dom', 'react-jsx-runtime', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-date', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-keycodes', 'wp-notices', 'wp-plugins', 'wp-rich-text', 'wp-token-list'), 'version' => 'eec8c65ed035ee3f9360');
2 changes: 1 addition & 1 deletion build/gutenberg/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/gutenberg/plugins.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('lodash', 'react', 'react-dom', 'react-jsx-runtime', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-dom-ready', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins'), 'version' => '14cd796b16b771c47c54');
<?php return array('dependencies' => array('lodash', 'react', 'react-dom', 'react-jsx-runtime', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-data', 'wp-dom-ready', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins'), 'version' => '7729527bebaa317504c0');
2 changes: 1 addition & 1 deletion build/gutenberg/plugins.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions class-ghost-kit.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Ghost Kit
* Description: Page Builder Blocks and Extensions for Gutenberg
* Version: 3.4.0
* Version: 3.4.1
* Author: Ghost Kit Team
* Author URI: https://www.ghostkit.io/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=byline
* License: GPLv2 or later
Expand All @@ -17,7 +17,7 @@
}

if ( ! defined( 'GHOSTKIT_VERSION' ) ) {
define( 'GHOSTKIT_VERSION', '3.4.0' );
define( 'GHOSTKIT_VERSION', '3.4.1' );
}

if ( ! class_exists( 'GhostKit' ) ) :
Expand Down
6 changes: 3 additions & 3 deletions languages/ghostkit.pot
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Copyright (C) 2024 Ghost Kit Team
# Copyright (C) 2025 Ghost Kit Team
# This file is distributed under the GPLv2 or later.
msgid ""
msgstr ""
"Project-Id-Version: Ghost Kit 3.4.0\n"
"Project-Id-Version: Ghost Kit 3.4.1\n"
"Report-Msgid-Bugs-To: https://github.com/nk-o/ghostkit/issues\n"
"Last-Translator: nK\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2024-12-18T20:46:41+00:00\n"
"POT-Creation-Date: 2025-01-13T07:16:21+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.9.0\n"
"X-Domain: ghostkit\n"
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": "ghostkit",
"title": "Ghost Kit",
"version": "3.4.0",
"version": "3.4.1",
"description": "Page Builder Blocks and Extensions for Gutenberg",
"license": "GPL-2.0",
"author": "nK <https://nkdev.info>",
Expand Down
7 changes: 6 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.6
* Tested up to: 6.7
* Requires PHP: 7.2
* Stable tag: 3.4.0
* Stable tag: 3.4.1
* License: GPLv2 or later
* License URI: <http://www.gnu.org/licenses/gpl-2.0.html>

Expand Down Expand Up @@ -270,6 +270,11 @@ The plugin documentation provides a comprehensive source of information on block

## Changelog ##

= 3.4.1 - Jan 13, 2025 =

* fixed blocks error in Widgets screen because 'core/editor' store is not available
* updated Google Fonts list

= 3.4.0 - Dec 18, 2024 =

* added WordPress 6.7 compatibility fixes
Expand Down

0 comments on commit dfcea74

Please sign in to comment.