Skip to content

Commit 43f44f1

Browse files
authored
Merge pull request #64 from t-hamano/wp6.2
WP6.2
2 parents 573ab7d + 2cbbda7 commit 43f44f1

File tree

11 files changed

+2134
-1547
lines changed

11 files changed

+2134
-1547
lines changed

.wp-env.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"https://downloads.wordpress.org/plugin/classic-editor.zip"
55
],
66
"config": {
7-
"WP_DEBUG": true
7+
"WP_DEBUG": true,
8+
"SCRIPT_DEBUG": true
89
}
910
}

classes/class-classic-editor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public function admin_footer() {
132132
$settings = Settings::get_editor_settings();
133133
// phpcs:disable Generic.ControlStructures.InlineControlStructure
134134
?>
135-
<div id="chbe-replace-indent-dialog">
135+
<div id="chbe-replace-indent-dialog" class="chbe-dialog__inner">
136136
<p class="chbe-dialog__ttl"><?php echo esc_attr_e( 'Change Indentation', 'custom-html-block-extension' ); ?></p>
137137
<div class="chbe-dialog__row">
138138
<div class="chbe-dialog__col chbe-dialog__col--setting">

custom-html-block-extension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Description: Extend custom HTML blocks to evolve into an advanced code editor.
55
* Requires at least: 5.9
66
* Requires PHP: 7.3
7-
* Version: 3.1.0
7+
* Version: 3.2.0
88
* Author: Aki Hamano
99
* Author URI: https://github.com/t-hamano
1010
* License: GPL2 or later

package-lock.json

Lines changed: 1639 additions & 1152 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,18 @@
2020
},
2121
"devDependencies": {
2222
"@deboxsoft/cpx": "^1.5.0",
23-
"@wordpress/base-styles": "^4.10.0",
24-
"@wordpress/e2e-test-utils": "^8.3.0",
25-
"@wordpress/env": "^5.5.0",
23+
"@wordpress/base-styles": "^4.19.0",
24+
"@wordpress/e2e-test-utils": "^9.5.0",
25+
"@wordpress/env": "^5.13.0",
2626
"@wordpress/scripts": "^24.3.0",
2727
"opener": "^1.5.2",
2828
"prettier": "npm:[email protected]",
29-
"rimraf": "^3.0.2",
30-
"stylelint-config-recess-order": "^3.0.0",
31-
"stylelint-order": "^5.0.0"
29+
"rimraf": "^4.4.0",
30+
"stylelint-config-recess-order": "^4.0.0",
31+
"stylelint-order": "^6.0.3"
3232
},
3333
"dependencies": {
34-
"@wordpress/icons": "^9.10.0",
34+
"@wordpress/icons": "^9.19.0",
3535
"emmet-monaco-es": "^5.1.2",
3636
"monaco-editor": "^0.34.0",
3737
"react-notifications-component": "^4.0.1",

readme.txt

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Contributors: wildworks
33
Tags: gutenberg, block, html, highlighting, emmet
44
Donate link: https://www.paypal.me/thamanoJP
55
Requires at least: 5.9
6-
Tested up to: 6.1
7-
Stable tag: 3.1.0
6+
Tested up to: 6.2
7+
Stable tag: 3.2.0
88
Requires PHP: 7.3
99
License: GPLv2 or later
1010
License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -69,6 +69,15 @@ Source: https://www.marksimonson.com/fonts/view/anonymous-pro
6969

7070
== Changelog ==
7171

72+
= 3.2.0 =
73+
* Feature: Add modal HTML editor
74+
* Enhancement: Don't display toolbar buttons when preview mode
75+
* Fix: Wrong CSS for Monaco Editor in the block editor
76+
* Fix: Copy and cut lines don't work in the block editor
77+
* Clean: Polish block editor popover UI
78+
* Clean: Polish classic editor popover UI
79+
* Clean: Polish setting page UI
80+
7281
= 3.1.0 =
7382
* Tested to WordPress 6.1
7483
* Drop support for WordPress 5.6 through 5.8

0 commit comments

Comments
 (0)