File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 3
3
* Plugin Name: HTML API Debugger
4
4
* Plugin URI: https://github.com/sirreal/html-api-debugger
5
5
* Description: Add a page to wp-admin for debugging the HTML API.
6
- * Version: 2.0
6
+ * Version: 2.1
7
7
* Requires at least: 6.6
8
8
* Tested up to: 6.7
9
9
* Author: Jon Surrell
22
22
require_once __DIR__ . '/html-api-integration.php ' ;
23
23
24
24
const SLUG = 'html-api-debugger ' ;
25
- const VERSION = '2.0 ' ;
25
+ const VERSION = '2.1 ' ;
26
26
27
27
/** Set up the plugin. */
28
28
function init () {
Original file line number Diff line number Diff line change @@ -3,14 +3,17 @@ Contributors: jonsurrell
3
3
Tags: HTML API, development, debug
4
4
Requires at least: 6.6
5
5
Tested up to: 6.7
6
- Stable tag: 2.0
6
+ Stable tag: 2.1
7
7
License: GPLv2 or later
8
8
License URI: https://www.gnu.org/licenses/gpl-2.0.html
9
9
10
10
Add a page to wp-admin for debugging the HTML API.
11
11
12
12
== Changelog ==
13
13
14
+ = 2.1 =
15
+ * Add text-wrap styling fallback for unsupported browsers.
16
+
14
17
= 2.0 =
15
18
* Add ability to replay token processing.
16
19
* Fix quirks mode fragment parsing.
Original file line number Diff line number Diff line change 69
69
outline : 1px dotted # 111 ;
70
70
vertical-align : top;
71
71
word-break : break-all;
72
+ text-wrap : auto;
72
73
text-wrap : pretty;
73
74
}
74
75
88
89
}
89
90
90
91
.html-text {
92
+ text-wrap : auto;
91
93
text-wrap : pretty;
92
94
box-shadow : 0 0 0 0 hotpink;
93
95
transition : ease box-shadow 120ms ;
You can’t perform that action at this time.
0 commit comments