Skip to content
This repository was archived by the owner on Aug 1, 2021. It is now read-only.

Commit 4483745

Browse files
v1.7.2
1 parent 89893e2 commit 4483745

File tree

6 files changed

+22
-9
lines changed

6 files changed

+22
-9
lines changed

assets/css/gutenberg.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
/**
2-
* @version 1.6.4
2+
* @version 1.7.2
33
* @author Technote
44
* @since 1.2.4
55
* @since 1.5.0 Changed: trivial change
66
* @since 1.6.0 Changed: Gutenbergへの対応 (#3)
77
* @since 1.6.3 Changed: trivial change
88
* @since 1.6.4 Changed: trivial change
9+
* @since 1.7.2 #107
910
* @copyright Technote All Rights Reserved
1011
* @license http://www.opensource.org/licenses/gpl-2.0.php GNU General Public License, version 2
1112
* @link https://technote.space/

marker-animation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Plugin URI: https://wordpress.org/plugins/marker-animation
55
Description: This plugin will add "Marker animation" function
66
Author: Technote
7-
Version: 1.7.1
7+
Version: 1.7.2
88
Author URI: https://technote.space
99
Text Domain: marker-animation
1010
Domain Path: /languages/

readme.txt

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: marker, marker animation, highlighter, 蛍光ペン, マーカー, アン
44
Requires at least: 4.6
55
Requires PHP: 5.6
66
Tested up to: 5.1.1
7-
Stable tag: 1.7.1
7+
Stable tag: 1.7.2
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -41,14 +41,18 @@ This plugin needs PHP5.6 or higher.
4141

4242
== Upgrade Notice ==
4343

44+
= 1.7.2 =
45+
* Gutenberg v5.3 に対応しました。 [詳細](https://github.com/technote-space/marker-animation/issues/107)
46+
* [その他の差分](https://github.com/technote-space/marker-animation/pull/109)
47+
4448
= 1.7.1 =
45-
* 『設定』のエクスポートが正しく動作しない問題を修正しました [詳細](https://github.com/wp-content-framework/custom_post/issues/73)
46-
* デフォルト設定の更新時に『設定』のデフォルト値が更新されない問題を修正しました [詳細](https://github.com/technote-space/marker-animation/issues/103)
49+
* 『設定』のエクスポートが正しく動作しない問題を修正しました [詳細](https://github.com/wp-content-framework/custom_post/issues/73)
50+
* デフォルト設定の更新時に『設定』のデフォルト値が更新されない問題を修正しました [詳細](https://github.com/technote-space/marker-animation/issues/103)
4751
* [その他の差分](https://github.com/technote-space/marker-animation/pull/106)
4852

4953
= 1.7.0 =
5054
* クラシックエディタの詳細設定の項目名を修正しました。
51-
* いくつかのパフォーマンスの改善を行いました [詳細](https://github.com/wp-content-framework/core/issues/138)
55+
* いくつかのパフォーマンスの改善を行いました [詳細](https://github.com/wp-content-framework/core/issues/138)
5256
* [その他の差分](https://github.com/technote-space/marker-animation/pull/101)
5357

5458
= 1.6.0 =
@@ -70,6 +74,11 @@ This plugin needs PHP5.6 or higher.
7074

7175
== Changelog ==
7276

77+
= 1.7.2 (2019/3/22) =
78+
* Fixed: [Gutenberg v5.3](https://github.com/technote-space/marker-animation/issues/107)
79+
* Changed: [Reset setting behavior](https://github.com/wp-content-framework/admin/issues/26)
80+
* Improved: [Performance](https://github.com/wp-content-framework/core/issues/160)
81+
7382
= 1.7.1 (2019/3/18) =
7483
* Added: [Presets](https://github.com/technote-space/marker-animation/issues/102)
7584
* Fixed: [Delete cache when update default settings](https://github.com/technote-space/marker-animation/issues/103)

src/classes/controllers/admin/dashboard.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* @version 1.7.1
3+
* @version 1.7.2
44
* @author Technote
55
* @since 1.0.0
66
* @since 1.2.0
@@ -10,6 +10,7 @@
1010
* @since 1.6.0 Fixed: デフォルト値の保存が正しく動作していない (#41)
1111
* @since 1.7.0 wp-content-framework/admin#20, wp-content-framework/common#57
1212
* @since 1.7.1 #103
13+
* @since 1.7.2 wp-content-framework/admin#26
1314
* @copyright Technote All Rights Reserved
1415
* @license http://www.opensource.org/licenses/gpl-2.0.php GNU General Public License, version 2
1516
* @link https://technote.space/

src/classes/models/editor.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* @version 1.6.10
3+
* @version 1.7.2
44
* @author Technote
55
* @since 1.0.0
66
* @since 1.2.0
@@ -14,6 +14,7 @@
1414
* @since 1.6.0 Changed: Gutenbergへの対応 (#3)
1515
* @since 1.6.4 Changed: 有効でない場合にエディタにボタンを追加しない (#61)
1616
* @since 1.6.10 #93
17+
* @since 1.7.2 #107
1718
* @copyright Technote All Rights Reserved
1819
* @license http://www.opensource.org/licenses/gpl-2.0.php GNU General Public License, version 2
1920
* @link https://technote.space/

src/views/admin/script/dashboard.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
<?php
22
/**
3-
* @version 1.5.0
3+
* @version 1.7.2
44
* @author Technote
55
* @since 1.0.0
66
* @since 1.3.0 Added: preset color
77
* @since 1.4.0 Deleted: preset color
88
* @since 1.5.0 Changed: trivial change
9+
* @since 1.7.2 wp-content-framework/admin#26
910
* @copyright Technote All Rights Reserved
1011
* @license http://www.opensource.org/licenses/gpl-2.0.php GNU General Public License, version 2
1112
* @link https://technote.space/

0 commit comments

Comments
 (0)