Skip to content

Commit 62e5bd0

Browse files
authored
Merge branch 'feature/8.0.0/DOC-3147' into feature/8.0.0/DOC-3147_TINY-10903
2 parents 4f50319 + bb1d6ab commit 62e5bd0

2 files changed

Lines changed: 98 additions & 11 deletions

File tree

modules/ROOT/pages/8.0-release-notes.adoc

Lines changed: 96 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,16 @@ tinymce.init({
9292

9393
For more information on the Accessibility Checker plugin, see: xref:a11ychecker.adoc[Accessibility Checker].
9494

95+
=== PowerPaste
96+
97+
The {productname} {release-version} release includes an accompanying release of the **PowerPaste** premium plugin.
98+
99+
==== Word import of lists with a "lighter" level failed parsing.
100+
101+
When users pasted content from Microsoft Word documents containing lists styled with Word’s "No List" setting into the editor with PowerPaste enabled, the operation failed due to a parsing error. As a result, the content was not inserted into the editor, causing disruption to content workflows. {productname} {release-version} addresses this issue by updating the **PowerPaste** parser to correctly handle lists with the "No List" style. As a result, users can now successfully paste such content into the editor without encountering errors.
102+
103+
For information on the **PowerPaste** plugin, see: xref:introduction-to-powerpaste.adoc[PowerPaste].
104+
95105

96106
[[accompanying-premium-plugin-end-of-life-announcement]]
97107
== Accompanying Premium plugin end-of-life announcement
@@ -132,11 +142,24 @@ For information on using Enhanced Skins & Icon Packs, see: xref:enhanced-skins-a
132142

133143
{productname} {release-version} also includes the following improvement<s>:
134144

135-
// === <TINY-vwxyz 1 changelog entry>
136-
// #TINY-vwxyz1
145+
=== Instructions on how to navigate the color swatch, image select and insert table widget are now announced by screen readers.
146+
// #TINY-12189
137147

138-
// CCFR here.
148+
Previously, interactive elements such as the color swatch, create table grid, and image select were missing an `aria-label`. This resulted in a lack of instructions for keyboard users and hindered overall accessibility.
149+
150+
{productname} {release-version} now includes `aria-labels` for these elements, providing clear keyboard navigation instructions. This improvement ensures a more accessible experience for all users.
151+
152+
=== Resize handles are more accessible with `role` and `aria-valuetext` attributes.
153+
// #TINY-11421
154+
155+
In previous versions of {productname}, the editor's resize handle lacked a `role` attribute, raising accessibility concerns.
156+
157+
In {productname} {release-version}, the resize handle now includes a `role` seperator and an `aria-valuetext` attribute that dynamically reflects the current dimensions of the editor. These improvements enhance accessibility and ensure more accurate announcements by screen readers.
139158

159+
=== The translate API now automatically replaces three dots in a row with an ellipsis character.
160+
// #TINY-12155
161+
162+
Previously, menu items and tooltips containing three consecutive periods (`...`) were read aloud by the JAWS screen reader as "dot dot dot," which could confuse users relying on assistive technologies. To enhance accessibility, the `translate` API in {productname} {release-version} now automatically replaces three dots with the typographic ellipsis character (`…`) across all translations. This update ensures a consistent visual appearance while improving screen reader behavior, as the ellipsis character is not read aloud. The change is implemented directly in the translation function, ensuring comprehensive coverage across all languages.
140163

141164
[[additions]]
142165
== Additions
@@ -154,10 +177,17 @@ For information on using Enhanced Skins & Icon Packs, see: xref:enhanced-skins-a
154177

155178
{productname} {release-version} also includes the following change<s>:
156179

157-
// === <TINY-vwxyz 1 changelog entry>
158-
// #TINY-vwxyz1
180+
=== Changed the default value for the `pagebreak_separator` option.
181+
// #TINY-12013
159182

160-
// CCFR here.
183+
In previous versions of {productname}, inserting a page break in the editor did not translate correctly when exporting using the xref:exportpdf.adoc[Export to PDF] plugin. Similarly, the xref:exportword.adoc[Export to Word] plugin also failed to preserve page breaks in the exported documents. As a result, exported files lacked the intended page breaks, leading to confusing output for users.
184+
185+
With the release of {productname} {release-version}, this issue has been resolved by updating the default HTML value of the `pagebreak_separator` option:
186+
187+
* **Old value** – `'<!-- pagebreak -->'`
188+
* **New value** – `'<div style="break-after: page"></div>'`
189+
190+
This change aligns better with modern standards and ensures that page breaks are now accurately rendered in exported documents.
161191

162192

163193
[[removed]]
@@ -170,16 +200,73 @@ For information on using Enhanced Skins & Icon Packs, see: xref:enhanced-skins-a
170200

171201
// CCFR here.
172202

203+
=== Removed undocumented `documentBaseUrl` property from Editor instances. `documentBaseURI` is the supported property now.
204+
// #TINY-12182
205+
206+
An undocumented `documentBaseUrl` property was previously accessible on `Editor` instances. This property was not part of the supported public API and could lead to confusion or inconsistent usage across implementations.
207+
208+
To improve API clarity and maintain a well-defined interface, the `documentBaseUrl` property has been removed. Integrators should use the officially supported `documentBaseURI` property to access the base URI of the document.
173209

174210
[[bug-fixes]]
175211
== Bug fixes
176212

177213
{productname} {release-version} also includes the following bug fix<es>:
178214

179-
// === <TINY-vwxyz 1 changelog entry>
180-
// #TINY-vwxyz1
215+
=== In inline mode, pressing the back button dismissed the context toolbar and moved focus from the selected image to the editor.
216+
// #TINY-12118
181217

182-
// CCFR here.
218+
In inline mode, the context form toolbar incorrectly shifted focus from the selected image to the editor container. As a result, the plugin which relies on the current selection to apply changes was unable to apply attributes like `alt` text to the correct image.
219+
220+
{productname} {release-version} resolves this by ensuring that the focus is preserved properly, ensuring that the plugin now applies changes such as `alt` text to the correct image in inline mode.
221+
222+
=== Toolbar drawer now closes when the editor loses focus.
223+
// #TINY-12125
224+
225+
In previous versions of {productname}, the floating toolbar remained visible even when the editor lost focus. This behavior introduced potential accessibility concerns, as the toolbar was not properly associated with the editor it controlled, potentially causing confusion for users.
226+
227+
In {productname} {release-version}, the toolbar now automatically closes when the editor loses focus. This ensures it is only displayed within the appropriate context, enhancing accessibility and improving the overall user experience.
228+
229+
=== Arrow key navigation between buttons was blocked when a button is hovered by the mouse.
230+
// #TINY-12163
231+
232+
In previous versions of {productname}, if a button was hovered by the mouse while using arrow keys for navigation, focus would return to the previously focused element. This caused the selection to become stuck on the button with the `mouseover` event.
233+
234+
{productname} {release-version} resolves this issue by preventing the `mouseover` event from being triggered again during arrow key navigation, ensuring a seamless user experience when navigating with arrow keys.
235+
236+
=== It was not possible to navigate out of a `figcaption` using the left and right arrow keys in Firefox.
237+
// #TINY-11982
238+
239+
Prior to {productname} {release-version}, Firefox exhibited an issue where pressing the left or right arrow keys would not allow users to exit the image `figcaption` element. This behavior was inconsistent with other major browsers such as Google Chrome and Safari, where the arrow keys functioned as expected and allowed seamless navigation out of the `figcaption`.
240+
241+
With {productname} {release-version}, this issue has been resolved. Users can now exit the `figcaption` using the left/right arrow keys in Firefox, aligning its behavior with that of other browsers. This update ensures a more consistent user experience.
242+
243+
=== Decorative images would lose their decorative status when the `alt` subtoolbar was closed when using the apply button.
244+
// #TINY-11912
245+
246+
Previously, an issue was identified where closing the `alt` subtoolbar using the `Apply` button would inadvertently remove the decorative status from an image that was already marked as decorative. This occurred because the `onSetup` API disabled the input group, leading the `Apply` logic to incorrectly interpret the image as non-decorative.
247+
248+
This issue has been resolved in {productname} {release-version}. The `onSetup` and `Apply` behavior has been aligned to consistently evaluate the input group, ensuring the decorative status is preserved as expected.
249+
250+
=== The HTML schema did not treat `colgroup` or `col` elements as block elements.
251+
// #TINY-12092
252+
253+
In previous versions of {productname}, whitespace between `<colgroup>` and `<col>` tags was not removed by {productname}'s HTML schema. This behavior caused the editor to preserve unnecessary whitespace characters in the table markup.
254+
255+
This issue has been resolved in `{release-version}`. Both `colgroup` and `col` elements are now treated as block-level elements, ensuring that extraneous whitespace is stripped from these areas. As a result, the editor now produces cleaner and more concise table markup.
256+
257+
=== Deleting a whole element would sometimes modify nearby content
258+
// #TINY-11868
259+
260+
Previously, deleting a complete HTML element using the "Source Code" editor either by cutting `+Ctrl+X+` or `+Cmd+X+`, backspacing, or pressing delete could inadvertently modify surrounding content. For example, removing a `<div>` element that precedes a `<p>` tag could cause the `<p>` to be transformed into a `<div>`, resulting in unintended structural changes.
261+
262+
This issue has been resolved in {productname} {release-version} by improving how element deletions are handled within the editor's DOM logic. Cutting or deleting a selected element now preserves the integrity and tag type of adjacent elements. Users can expect consistent and predictable editing behavior when modifying HTML source content.
263+
264+
=== Strikethrough format could be added outside font size format, which renders incorrectly in some browsers.
265+
// #TINY-12004
266+
267+
Previously, there was an issue where combining strikethrough (`s` element) and font size formatting could lead to incorrect rendering in some browsers, particularly Chrome. This occurred when the `s` (strikethrough) element was placed outside a font size `span`, causing the strikethrough line to render incorrectly.
268+
269+
The fix ensures that the `s` element is now properly nested inside the font size element, improving visual consistency across browsers.
183270

184271

185272
[[security-fixes]]

modules/ROOT/partials/configuration/pagebreak_separator.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
*Type:* `+String+`
55

6-
*Default value:* `+'<!-- pagebreak -->'+`
6+
*Default value:* `+'<div style="break-after: page"></div>'+`
77

88
=== Example: using `+pagebreak_separator+`
99

@@ -13,6 +13,6 @@ tinymce.init({
1313
selector: 'textarea', // change this value according to your HTML
1414
plugins: 'pagebreak',
1515
toolbar: 'pagebreak',
16-
pagebreak_separator: '<!-- my page break -->'
16+
pagebreak_separator: '<div style="break-after: page">My page break</div>'
1717
});
1818
----

0 commit comments

Comments
 (0)