@@ -11,81 +11,83 @@ Add a page to wp-admin for debugging the HTML API.
11
11
12
12
== Changelog ==
13
13
14
- = 0.1 =
15
- * Initial release.
14
+ = 1.9 =
16
15
17
- = 0.2 =
18
- * Remove redundant module.
19
- * Rearrange debugging panes.
20
- * Add option to show invisible characters.
16
+ = 1.8 =
17
+ * Highlight spans in HTML input on hover.
18
+ * Fix a bug in tree construction with self-closing tags in foreign content.
21
19
22
- = 0.3 =
23
- * Add button to copy instant playground link.
20
+ = 1.7 =
21
+ * Update DOM tree when HTML document is mutated.
22
+ * Fix deprecation notice on WordPress 6.7.
23
+ * Register script modules unconditionally.
24
24
25
- = 0.4 =
26
- * Improve debugger visibility controls.
27
- * Add handling for real/virtual nodes.
25
+ = 1.6 =
26
+ * Replace TABLE based layout with CSS grid.
27
+ * Fix a crash on meta tags with a content attribute.
28
+ * Display namespace on tag closers.
29
+ * Display normalized HTML when supported.
28
30
29
- = 0.5 =
30
- * Use regular REST API result response shape.
31
- * Display text content of "atomic" HTML API nodes like `textarea` or `xmp`.
31
+ = 1.5 =
32
+ * Improve initial rendering and reduce layout shift.
33
+ * Allow copying playground links to latest, beta, and nightly versions.
34
+ * Allow copying playground links to specific wordpress-develop PRs.
32
35
33
- = 0.6 =
34
- * Add better unsupported error messages when possible. (WordPress >= 6.7)
36
+ = 1.4 =
37
+ * Show invisible characters in the tree in attribute names, values, and tag names.
38
+ * Handle DOCTYPE nodes.
39
+ * Prevent newlines from automatically being added to the HTML input.
40
+ * Use async event directives if available.
41
+ * Handle doctype tokens and display information about quirks-mode.
35
42
36
- = 0.7 =
37
- * Fix some issues where parsing errors could crash the client.
43
+ = 1.3 =
44
+ * Replace wp-api-fetch script dependency with native fetch.
45
+ * Improve error messages.
46
+ * Display templates consistently between DOM and HTML API trees.
47
+ * Use "qualified" names. SVG and MathML tags and attributes have some specialized casing.
38
48
39
- = 0.8 =
40
- * Show invisible characters in processed HTML spans .
41
- * Fix null-byte rendering in the initial page render .
49
+ = 1.2 =
50
+ * Handle CDATA sections .
51
+ * Use WordPress Script Modules API for all modules .
42
52
43
- = 0.9 =
44
- * Fix a bug where "}" was replaced as an invisible character.
45
- * Add a quirks mode toggle that allows changing the doctype used.
53
+ = 1.1 =
54
+ * Print tag namespaces.
46
55
47
56
= 1.0 =
48
57
* Prevent flash of "�" replacing null-byte in input on initial render.
49
58
* Support HTML API quirks mode.
50
59
* Support for full HTML processor.
51
60
* Configurable hover information on nodes: depth and breadcrumbs or insertion mode.
52
61
53
- = 1.1 =
54
- * Print tag namespaces.
62
+ = 0.9 =
63
+ * Fix a bug where "}" was replaced as an invisible character.
64
+ * Add a quirks mode toggle that allows changing the doctype used.
55
65
56
- = 1.2 =
57
- * Handle CDATA sections .
58
- * Use WordPress Script Modules API for all modules .
66
+ = 0.8 =
67
+ * Show invisible characters in processed HTML spans .
68
+ * Fix null-byte rendering in the initial page render .
59
69
60
- = 1.3 =
61
- * Replace wp-api-fetch script dependency with native fetch.
62
- * Improve error messages.
63
- * Display templates consistently between DOM and HTML API trees.
64
- * Use "qualified" names. SVG and MathML tags and attributes have some specialized casing.
70
+ = 0.7 =
71
+ * Fix some issues where parsing errors could crash the client.
65
72
66
- = 1.4 =
67
- * Show invisible characters in the tree in attribute names, values, and tag names.
68
- * Handle DOCTYPE nodes.
69
- * Prevent newlines from automatically being added to the HTML input.
70
- * Use async event directives if available.
71
- * Handle doctype tokens and display information about quirks-mode.
73
+ = 0.6 =
74
+ * Add better unsupported error messages when possible. (WordPress >= 6.7)
72
75
73
- = 1.5 =
74
- * Improve initial rendering and reduce layout shift.
75
- * Allow copying playground links to latest, beta, and nightly versions.
76
- * Allow copying playground links to specific wordpress-develop PRs.
76
+ = 0.5 =
77
+ * Use regular REST API result response shape.
78
+ * Display text content of "atomic" HTML API nodes like `textarea` or `xmp`.
77
79
78
- = 1.6 =
79
- * Replace TABLE based layout with CSS grid.
80
- * Fix a crash on meta tags with a content attribute.
81
- * Display namespace on tag closers.
82
- * Display normalized HTML when supported.
80
+ = 0.4 =
81
+ * Improve debugger visibility controls.
82
+ * Add handling for real/virtual nodes.
83
83
84
- = 1.7 =
85
- * Update DOM tree when HTML document is mutated.
86
- * Fix deprecation notice on WordPress 6.7.
87
- * Register script modules unconditionally.
84
+ = 0.3 =
85
+ * Add button to copy instant playground link.
88
86
89
- = 1.8 =
90
- * Highlight spans in HTML input on hover.
91
- * Fix a bug in tree construction with self-closing tags in foreign content.
87
+ = 0.2 =
88
+ * Remove redundant module.
89
+ * Rearrange debugging panes.
90
+ * Add option to show invisible characters.
91
+
92
+ = 0.1 =
93
+ * Initial release.
0 commit comments