From e6cc196eada766b2248764c0631f23e7546a7b45 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Thu, 3 Feb 2022 15:51:11 +0900 Subject: [PATCH 01/10] =?UTF-8?q?fix=20/=20card=20:=20=E3=83=96=E3=83=AC?= =?UTF-8?q?=E3=82=A4=E3=82=AF=E3=83=9D=E3=82=A4=E3=83=B3=E3=83=88=E3=81=AE?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../card/deprecated/hooks/1.23.0/index.js | 45 +++++++++++++++++++ .../_pro/card/deprecated/hooks/index.js | 2 + src/blocks/_pro/card/index.js | 6 +-- .../vk-blocks__card__deprecated-1-23-0.html | 20 +++++++++ 4 files changed, 70 insertions(+), 3 deletions(-) create mode 100644 src/blocks/_pro/card/deprecated/hooks/1.23.0/index.js create mode 100644 test/e2e-tests/fixtures/blocks/vk-blocks__card__deprecated-1-23-0.html diff --git a/src/blocks/_pro/card/deprecated/hooks/1.23.0/index.js b/src/blocks/_pro/card/deprecated/hooks/1.23.0/index.js new file mode 100644 index 000000000..18365a54d --- /dev/null +++ b/src/blocks/_pro/card/deprecated/hooks/1.23.0/index.js @@ -0,0 +1,45 @@ +export const prefix = 'vk_card_'; +const generateInlineCss = (attributes) => { + let { clientId, mobile, tablet, pc, unit } = attributes; + + //For recovering block. + if (undefined === unit) { + unit = 'px'; + } + if (undefined === mobile) { + mobile = 150; + } + if (undefined === tablet) { + tablet = 150; + } + if (undefined === pc) { + pc = 150; + } + + const cardImgSelector = `.${prefix}${clientId} .vk_card_item .vk_post_imgOuter::before`; + return `@media (max-width: 576px) { + ${cardImgSelector}{ + padding-top:${mobile}${unit}!important; + } + } + @media (min-width: 577px) and (max-width: 768px) { + ${cardImgSelector}{ + padding-top:${tablet}${unit}!important; + } + } + @media (min-width: 769px) { + ${cardImgSelector}{ + padding-top:${pc}${unit}!important; + } + }`; +}; + +export default function CardHook( {el,attributes}) { + const cssTag = generateInlineCss(attributes); + return ( +
+ {cssTag} + {el} +
+ ); +} diff --git a/src/blocks/_pro/card/deprecated/hooks/index.js b/src/blocks/_pro/card/deprecated/hooks/index.js index 375eb40cc..e250a667c 100644 --- a/src/blocks/_pro/card/deprecated/hooks/index.js +++ b/src/blocks/_pro/card/deprecated/hooks/index.js @@ -1,7 +1,9 @@ +import CardHook1_23_0 from './1.23.0' import CardHook1_0_4 from './1.0.4' import CardHook0_0_1 from './0.0.1' export default [ + CardHook1_23_0, CardHook1_0_4, // Fix: https://github.com/vektor-inc/vk-blocks-pro/issues/376 // 存在不明なバージョンの後方互換 diff --git a/src/blocks/_pro/card/index.js b/src/blocks/_pro/card/index.js index c1fdca528..bf5e8b45c 100644 --- a/src/blocks/_pro/card/index.js +++ b/src/blocks/_pro/card/index.js @@ -86,17 +86,17 @@ const generateInlineCss = (attributes) => { } const cardImgSelector = `.${prefix}${clientId} .vk_card_item .vk_post_imgOuter::before`; - return `@media (max-width: 576px) { + return `@media (max-width: 575.98px) { ${cardImgSelector}{ padding-top:${mobile}${unit}!important; } } - @media (min-width: 577px) and (max-width: 768px) { + @media (min-width: 576px) and (max-width: 991.98px) { ${cardImgSelector}{ padding-top:${tablet}${unit}!important; } } - @media (min-width: 769px) { + @media (min-width: 992px) { ${cardImgSelector}{ padding-top:${pc}${unit}!important; } diff --git a/test/e2e-tests/fixtures/blocks/vk-blocks__card__deprecated-1-23-0.html b/test/e2e-tests/fixtures/blocks/vk-blocks__card__deprecated-1-23-0.html new file mode 100644 index 000000000..2dc9bbac6 --- /dev/null +++ b/test/e2e-tests/fixtures/blocks/vk-blocks__card__deprecated-1-23-0.html @@ -0,0 +1,20 @@ + +
+
タイトル

本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文

Read more
+
+ \ No newline at end of file From 1925c19cc2996025f34060ae8b6c6881af7dead1 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Thu, 3 Feb 2022 15:57:17 +0900 Subject: [PATCH 02/10] fix / card : deprecated --- ...deprecated-1-23-0__button-customClass.html | 20 +++++++++++++++++++ ...cated-1-23-0__button-linkTarget-blank.html | 20 +++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 test/e2e-tests/fixtures/blocks/vk-blocks__card__deprecated-1-23-0__button-customClass.html create mode 100644 test/e2e-tests/fixtures/blocks/vk-blocks__card__deprecated-1-23-0__button-linkTarget-blank.html diff --git a/test/e2e-tests/fixtures/blocks/vk-blocks__card__deprecated-1-23-0__button-customClass.html b/test/e2e-tests/fixtures/blocks/vk-blocks__card__deprecated-1-23-0__button-customClass.html new file mode 100644 index 000000000..9fabdcc0a --- /dev/null +++ b/test/e2e-tests/fixtures/blocks/vk-blocks__card__deprecated-1-23-0__button-customClass.html @@ -0,0 +1,20 @@ + +
+
タイトル

本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文

Read more
+
+ \ No newline at end of file diff --git a/test/e2e-tests/fixtures/blocks/vk-blocks__card__deprecated-1-23-0__button-linkTarget-blank.html b/test/e2e-tests/fixtures/blocks/vk-blocks__card__deprecated-1-23-0__button-linkTarget-blank.html new file mode 100644 index 000000000..5da18c274 --- /dev/null +++ b/test/e2e-tests/fixtures/blocks/vk-blocks__card__deprecated-1-23-0__button-linkTarget-blank.html @@ -0,0 +1,20 @@ + +
+
タイトル

本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文

Read more
+
+ \ No newline at end of file From 15db05328bc8a3f5ee8cd3c0546e54dcd1c0b97d Mon Sep 17 00:00:00 2001 From: shimotmk Date: Fri, 4 Feb 2022 17:41:24 +0900 Subject: [PATCH 03/10] =?UTF-8?q?fix=20/=20card=20:=20Filter=E3=81=AE?= =?UTF-8?q?=E6=9B=B8=E3=81=8D=E6=96=B9=E3=82=92=E3=83=9C=E3=82=BF=E3=83=B3?= =?UTF-8?q?=E3=81=A8=E5=90=8C=E6=A7=98=E3=81=AB=E4=BF=AE=E6=AD=A3=20?= =?UTF-8?q?=E5=8F=82=E8=80=83=20#834?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/blocks/_pro/card/index.js | 76 ++++++++++++++++------------------- 1 file changed, 35 insertions(+), 41 deletions(-) diff --git a/src/blocks/_pro/card/index.js b/src/blocks/_pro/card/index.js index bf5e8b45c..34d43764a 100644 --- a/src/blocks/_pro/card/index.js +++ b/src/blocks/_pro/card/index.js @@ -103,10 +103,7 @@ const generateInlineCss = (attributes) => { }`; }; -addFilter( - 'editor.BlockEdit', - 'vk-blocks/card-addInlineEditorsCss', - createHigherOrderComponent((BlockEdit) => { +const VKCardInlineEditorCss = createHigherOrderComponent((BlockEdit) => { return (props) => { const { attributes, setAttributes, clientId } = props; @@ -126,43 +123,40 @@ addFilter( } return ; }; - }, 'addInlineEditorsCss') -); - -addFilter( - 'blocks.getSaveElement', - 'vk-blocks/card-addInlineFrontCss', - (el, type, attributes) => { - if ('vk-blocks/card' === type.name) { - //現在実行されている deprecated内の save関数のindexを取得 - const deprecatedFuncIndex = deprecated.findIndex( - (item) => item.save === type.save - ); +}, 'VKCardInlineEditorCss'); +addFilter('editor.BlockEdit', 'vk-blocks/card', VKCardInlineEditorCss); - // 最新版 - if (-1 === deprecatedFuncIndex) { - // NOTE: useBlockProps + style要素を挿入する場合、useBlockPropsを使った要素が最初(上)にこないと、 - // カスタムクラスを追加する処理が失敗する - const cssTag = generateInlineCss(attributes); - return ( - <> - {el} - - - ); - //後方互換 - } - let DeprecatedHook; - // Deprecated Hooks が Deprecated Save関数より少ない場合にエラーが出ないように。 - if (deprecatedHooks.length > deprecatedFuncIndex) { - DeprecatedHook = deprecatedHooks[deprecatedFuncIndex]; - } else { - DeprecatedHook = deprecatedHooks[deprecatedHooks.length - 1]; - } - return ; +const VKCardInlineCss = (el, type, attributes) => { + if ('vk-blocks/card' === type.name) { + //現在実行されている deprecated内の save関数のindexを取得 + const deprecatedFuncIndex = deprecated.findIndex( + (item) => item.save === type.save + ); + + // 最新版 + if (-1 === deprecatedFuncIndex) { + // NOTE: useBlockProps + style要素を挿入する場合、useBlockPropsを使った要素が最初(上)にこないと、 + // カスタムクラスを追加する処理が失敗する + const cssTag = generateInlineCss(attributes); + return ( + <> + {el} + + + ); + + //後方互換 } - return el; - }, - 11 -); + let DeprecatedHook; + // Deprecated Hooks が Deprecated Save関数より少ない場合にエラーが出ないように。 + if (deprecatedHooks.length > deprecatedFuncIndex) { + DeprecatedHook = deprecatedHooks[deprecatedFuncIndex]; + } else { + DeprecatedHook = deprecatedHooks[deprecatedHooks.length - 1]; + } + return ; + } + return el; +}; +addFilter('blocks.getSaveElement', 'vk-blocks/card', VKCardInlineCss, 11); From b238138510dcfc5e6c8980cd6bb5e828f428de27 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Fri, 4 Feb 2022 17:42:18 +0900 Subject: [PATCH 04/10] fix / card : lint --- src/blocks/_pro/card/index.js | 35 +++++++++++++++++------------------ 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/src/blocks/_pro/card/index.js b/src/blocks/_pro/card/index.js index 34d43764a..9f665dc3a 100644 --- a/src/blocks/_pro/card/index.js +++ b/src/blocks/_pro/card/index.js @@ -104,30 +104,29 @@ const generateInlineCss = (attributes) => { }; const VKCardInlineEditorCss = createHigherOrderComponent((BlockEdit) => { - return (props) => { - const { attributes, setAttributes, clientId } = props; + return (props) => { + const { attributes, setAttributes, clientId } = props; - if ('vk-blocks/card' === props.name) { - useEffect(() => { - setAttributes({ clientId }); - }, []); + if ('vk-blocks/card' === props.name) { + useEffect(() => { + setAttributes({ clientId }); + }, []); - const cssTag = generateInlineCss(attributes); + const cssTag = generateInlineCss(attributes); - return ( - <> - - - - ); - } - return ; - }; + return ( + <> + + + + ); + } + return ; + }; }, 'VKCardInlineEditorCss'); addFilter('editor.BlockEdit', 'vk-blocks/card', VKCardInlineEditorCss); - -const VKCardInlineCss = (el, type, attributes) => { +const VKCardInlineCss = (el, type, attributes) => { if ('vk-blocks/card' === type.name) { //現在実行されている deprecated内の save関数のindexを取得 const deprecatedFuncIndex = deprecated.findIndex( From 56c7106bec1297f063d90b2d35b81ed636e4c3ab Mon Sep 17 00:00:00 2001 From: shimotmk Date: Tue, 8 Feb 2022 10:08:08 +0900 Subject: [PATCH 05/10] =?UTF-8?q?fix=20/=20card=20:=20CardHook=E3=81=AEsav?= =?UTF-8?q?e=E6=95=B0=E3=82=92=E8=AA=BF=E6=95=B4=20=E5=8F=82=E8=80=83=20#8?= =?UTF-8?q?34?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/blocks/_pro/card/deprecated/hooks/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/blocks/_pro/card/deprecated/hooks/index.js b/src/blocks/_pro/card/deprecated/hooks/index.js index e250a667c..1b01590b7 100644 --- a/src/blocks/_pro/card/deprecated/hooks/index.js +++ b/src/blocks/_pro/card/deprecated/hooks/index.js @@ -2,9 +2,13 @@ import CardHook1_23_0 from './1.23.0' import CardHook1_0_4 from './1.0.4' import CardHook0_0_1 from './0.0.1' +// saveの数分必要 export default [ CardHook1_23_0, CardHook1_0_4, + CardHook1_0_4, + CardHook1_0_4, + CardHook1_0_4, // Fix: https://github.com/vektor-inc/vk-blocks-pro/issues/376 // 存在不明なバージョンの後方互換 CardHook0_0_1, From 935dcdc3a90017340e1cb8e7107195d802c534eb Mon Sep 17 00:00:00 2001 From: shimotmk Date: Tue, 8 Feb 2022 10:08:50 +0900 Subject: [PATCH 06/10] fix / card : deprecated --- .../_pro/card/deprecated/hooks/1.23.0/index.js | 6 +++--- .../_pro/card/deprecated/save/1.23.0/save.js | 14 ++++++++++++++ src/blocks/_pro/card/deprecated/save/index.js | 5 +++++ 3 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 src/blocks/_pro/card/deprecated/save/1.23.0/save.js diff --git a/src/blocks/_pro/card/deprecated/hooks/1.23.0/index.js b/src/blocks/_pro/card/deprecated/hooks/1.23.0/index.js index 18365a54d..f0f8bc196 100644 --- a/src/blocks/_pro/card/deprecated/hooks/1.23.0/index.js +++ b/src/blocks/_pro/card/deprecated/hooks/1.23.0/index.js @@ -37,9 +37,9 @@ const generateInlineCss = (attributes) => { export default function CardHook( {el,attributes}) { const cssTag = generateInlineCss(attributes); return ( -
- {cssTag} + <> {el} -
+ + ); } diff --git a/src/blocks/_pro/card/deprecated/save/1.23.0/save.js b/src/blocks/_pro/card/deprecated/save/1.23.0/save.js new file mode 100644 index 000000000..1d793243e --- /dev/null +++ b/src/blocks/_pro/card/deprecated/save/1.23.0/save.js @@ -0,0 +1,14 @@ +import { InnerBlocks, useBlockProps } from '@wordpress/block-editor'; + +export default function save({ attributes }) { + const { clientId } = attributes; + const blockProps = useBlockProps.save({ + className: `vk_posts vk_card_${clientId}`, + }); + + return ( +
+ +
+ ); +} diff --git a/src/blocks/_pro/card/deprecated/save/index.js b/src/blocks/_pro/card/deprecated/save/index.js index 6e083897f..5038a821f 100644 --- a/src/blocks/_pro/card/deprecated/save/index.js +++ b/src/blocks/_pro/card/deprecated/save/index.js @@ -3,6 +3,7 @@ import save0374 from './0.37.4/save'; import save0400 from './0.40.0/save'; import save0601 from './0.60.1/save'; import save1_0_4 from './1.0.4/save'; +import save1_23_0 from './1.23.0/save'; const blockAttributes = { postId: { @@ -139,6 +140,10 @@ const blockAttributes3 = { } const deprecated = [ + { + attributes: blockAttributes3, + save: save1_23_0 + }, { attributes:blockAttributes3, save: save1_0_4 From 471ab80d5b35aa7f9be3c8429b73d139616b6e85 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Tue, 8 Feb 2022 10:09:29 +0900 Subject: [PATCH 07/10] fix / card : deprecated --- .../vk-blocks__card__button-customClass.html | 36 +++++++++---------- ...blocks__card__button-linkTarget-blank.html | 36 +++++++++---------- .../blocks/vk-blocks__card__default.html | 36 +++++++++---------- 3 files changed, 54 insertions(+), 54 deletions(-) diff --git a/test/e2e-tests/fixtures/blocks/vk-blocks__card__button-customClass.html b/test/e2e-tests/fixtures/blocks/vk-blocks__card__button-customClass.html index 9fabdcc0a..5ea6ef8ed 100644 --- a/test/e2e-tests/fixtures/blocks/vk-blocks__card__button-customClass.html +++ b/test/e2e-tests/fixtures/blocks/vk-blocks__card__button-customClass.html @@ -1,20 +1,20 @@ - -
-
タイトル

本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文

Read more
-
- \ No newline at end of file + } + @media (min-width: 992px) { + .vk_card_7b0196e4-0b13-4bf7-8f07-0305b7e62485 .vk_card_item .vk_post_imgOuter::before{ + padding-top:150px!important; + } + } + \ No newline at end of file diff --git a/test/e2e-tests/fixtures/blocks/vk-blocks__card__button-linkTarget-blank.html b/test/e2e-tests/fixtures/blocks/vk-blocks__card__button-linkTarget-blank.html index 5da18c274..9e6ab0210 100644 --- a/test/e2e-tests/fixtures/blocks/vk-blocks__card__button-linkTarget-blank.html +++ b/test/e2e-tests/fixtures/blocks/vk-blocks__card__button-linkTarget-blank.html @@ -1,20 +1,20 @@ - -
-
タイトル

本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文

Read more
-
- \ No newline at end of file + } + @media (min-width: 992px) { + .vk_card_6243e772-7759-4d08-a383-de700dffaf78 .vk_card_item .vk_post_imgOuter::before{ + padding-top:150px!important; + } + } + \ No newline at end of file diff --git a/test/e2e-tests/fixtures/blocks/vk-blocks__card__default.html b/test/e2e-tests/fixtures/blocks/vk-blocks__card__default.html index 2dc9bbac6..13f98b3ae 100644 --- a/test/e2e-tests/fixtures/blocks/vk-blocks__card__default.html +++ b/test/e2e-tests/fixtures/blocks/vk-blocks__card__default.html @@ -1,20 +1,20 @@ - -
-
タイトル

本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文

Read more
-
- \ No newline at end of file + } + @media (min-width: 992px) { + .vk_card_8a3802d8-a3d9-4de6-94d7-32ff2bb02ebc .vk_card_item .vk_post_imgOuter::before{ + padding-top:150px!important; + } + } + \ No newline at end of file From bf8a4eaa3c08a16d1feaf4038019b988d4dc0050 Mon Sep 17 00:00:00 2001 From: shimotmk Date: Tue, 8 Feb 2022 10:28:44 +0900 Subject: [PATCH 08/10] update readme --- readme.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/readme.txt b/readme.txt index a6e7cfd6c..641bedfca 100644 --- a/readme.txt +++ b/readme.txt @@ -63,6 +63,8 @@ e.g. == Changelog == +[ fix ][ Card(Pro) ] fix unify breakpoints. + = 1.24.4 = [ Specification Change ][ Heading Design ] Strengthen selector on editor screen From ffdc12ef07fda63ecc72a4b0bf0f5a10045aef6e Mon Sep 17 00:00:00 2001 From: kurudrive Date: Thu, 10 Feb 2022 04:04:23 +0900 Subject: [PATCH 09/10] =?UTF-8?q?fix=20:=20=E3=83=9C=E3=82=BF=E3=83=B3?= =?UTF-8?q?=E3=81=AE=20align=20=E3=81=8C=E5=8A=B9=E3=81=8B=E3=81=AA?= =?UTF-8?q?=E3=81=84=E4=B8=8D=E5=85=B7=E5=90=88=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/blocks/button/style.scss | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/blocks/button/style.scss b/src/blocks/button/style.scss index 33007c4b4..b162daa01 100644 --- a/src/blocks/button/style.scss +++ b/src/blocks/button/style.scss @@ -61,7 +61,10 @@ $vk-color-dark:#343a40; .vk_button, .editor-styles-wrapper .vk_button { box-sizing: border-box; - margin: 0 auto 5px; /* 他テーマで0だと左寄せになる場合があるのでautoに変更 */ + /* 他テーマで0だと左寄せになる場合があるのでautoに変更 */ + /* → いやいや、vk_button が100% div じゃない時にそれでは右寄せなど効かなくなるので margin 左右は指定ナシに戻し */ + margin-top:0; + margin-bottom:5px; text-align: center; /* テキストのみの時のセンター揃え */ &-color-custom { a:hover { From 367b0650bdab05e358db2e6079b95d8af21309a6 Mon Sep 17 00:00:00 2001 From: kurudrive Date: Thu, 10 Feb 2022 04:12:40 +0900 Subject: [PATCH 10/10] [ Change version ] 1.24.5 --- inc/vk-blocks/languages/vk-blocks.pot | 4 ++-- readme.txt | 4 +++- vk-blocks.php | 4 ++-- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/inc/vk-blocks/languages/vk-blocks.pot b/inc/vk-blocks/languages/vk-blocks.pot index 05da8707b..a4a3d74e6 100644 --- a/inc/vk-blocks/languages/vk-blocks.pot +++ b/inc/vk-blocks/languages/vk-blocks.pot @@ -2,14 +2,14 @@ # This file is distributed under the same license as the VK Blocks Pro plugin. msgid "" msgstr "" -"Project-Id-Version: VK Blocks Pro 1.24.3\n" +"Project-Id-Version: VK Blocks Pro 1.24.5\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/vk-blocks-pro\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-02-07T16:11:44+00:00\n" +"POT-Creation-Date: 2022-02-09T19:08:37+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.5.0-alpha-3f4c34b\n" "X-Domain: vk-blocks\n" diff --git a/readme.txt b/readme.txt index 641bedfca..1cc9db944 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: Tags: Gutenberg,FAQ,alert Requires at least: 5.8 Tested up to: 5.9.0 -Stable tag: 1.24.4 +Stable tag: 1.24.5 Requires PHP: 7.0 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -63,6 +63,8 @@ e.g. == Changelog == += 1.24.5 = +[ fix ][ Button ] Fix button alignment [ fix ][ Card(Pro) ] fix unify breakpoints. = 1.24.4 = diff --git a/vk-blocks.php b/vk-blocks.php index 0f70eddb2..543060e43 100644 --- a/vk-blocks.php +++ b/vk-blocks.php @@ -3,8 +3,8 @@ * Plugin Name: VK Blocks Pro * Plugin URI: https://github.com/vektor-inc/vk-blocks * Description: This is a plugin that extends Gutenberg's blocks. - * Version: 1.24.4 - * Stable tag: 1.24.4 + * Version: 1.24.5 + * Stable tag: 1.24.5 * Requires at least: 5.8 * Author: Vektor,Inc. * Author URI: https://vektor-inc.co.jp