Skip to content

Commit df429e5

Browse files
author
Farzad Hayat
authored
DOC-2598: Add missing release note entries (#3562)
* DOC-2598: Uncomment 7.6.0 improvements section * DOC-2598: TINY-11390 Change the Sample format from block level to inline * DOC-2598: TINY-9548 Base64 URL-encoded data now properly decoded * DOC-2598: TINY-11515 Add support for latin list style types * DOC-2598: Uncomment missing entries in the changelog
1 parent 36b424b commit df429e5

File tree

3 files changed

+31
-19
lines changed

3 files changed

+31
-19
lines changed

modules/ROOT/nav.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@
424424
**** xref:7.6.0-release-notes.adoc#new-premium-plugin[New Premium plugin]
425425
**** xref:7.6.0-release-notes.adoc#accompanying-premium-plugin-changes[Accompanying Premium plugin changes]
426426
**** xref:7.6.0-release-notes.adoc#accompanying-enhanced-skins-and-icon-packs-changes[Accompanying Enhanced Skins & Icon Packs changes]
427-
// **** xref:7.6.0-release-notes.adoc#improvements[Improvements]
427+
**** xref:7.6.0-release-notes.adoc#improvements[Improvements]
428428
**** xref:7.6.0-release-notes.adoc#additions[Additions]
429429
**** xref:7.6.0-release-notes.adoc#bug-fixes[Bug fixes]
430430
**** xref:7.6.0-release-notes.adoc#known-issues[Known issues]

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

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ include::partial$misc/admon-releasenotes-for-stable.adoc[]
1616
* xref:new-premium-plugin[New Premium plugin]
1717
* xref:accompanying-premium-plugin-changes[Accompanying Premium plugin changes]
1818
* xref:accompanying-enhanced-skins-and-icon-packs-changes[Accompanying Enhanced Skins & Icon Packs changes]
19-
// * xref:improvements[Improvements]
19+
* xref:improvements[Improvements]
2020
* xref:additions[Additions]
2121
* xref:changes[Changes]
2222
* xref:bug-fixes[Bug fixes]
@@ -193,17 +193,25 @@ The **Enhanced Skins & Icon Packs** were rebuilt to pull in the changes also inc
193193
For information on using Enhanced Skins & Icon Packs, see: xref:enhanced-skins-and-icon-packs.adoc[Enhanced Skins & Icon Packs].
194194

195195

196-
// [[improvements]]
197-
// == Improvements
196+
[[improvements]]
197+
== Improvements
198198

199-
// {productname} {release-version} also includes the following improvements:
199+
{productname} {release-version} also includes the following improvements:
200200

201-
// === Base64 data was not properly decoded due to unhandled URL-encoded characters.
201+
=== Base64 data was not properly decoded due to unhandled URL-encoded characters.
202202
// #TINY-9548
203203

204-
// === The `latin` list style type is now recognized as an alias for the `alpha` list style type.
204+
Previously, URL-encoded characters were not properly handled during base64 data decoding. This issue caused images to appear broken when using a base64 string as a source with URL-encoded characters.
205+
206+
In {productname} {release-version}, this issue has been resolved by implementing logic to decode URL-encoded characters before processing the base64 string. As a result, images using base64 strings as a source will now appear correctly, even if URL-encoded characters are included.
207+
208+
=== The `latin` list style type is now recognized as an alias for the `alpha` list style type.
205209
// #TINY-11515
206210

211+
Previously, {productname} did not recognize `lower-latin` and `upper-latin` list style types, causing UI issues when importing documents with such lists.
212+
213+
In {productname} {release-version}, this issue has been resolved. The editor now recognizes `lower-latin` and `upper-latin` as aliases for `lower-alpha` and `upper-alpha`, respectively, ensuring the correct list type is highlighted in the Numbered List dropdown.
214+
207215
[[additions]]
208216
== Additions
209217

@@ -381,9 +389,13 @@ Previously, there was an issue where changes to the row type in numbered tables
381389

382390
In {productname} {release-version}, this issue has been resolved by removing the restriction on changing the row type from a `+contentEditable="false"+` cell. As a result, changes to the row type are now correctly applied.
383391

384-
// === The `samp` format was being applied as a `block` level format, instead of an `inline` format.
392+
=== The `samp` format was being applied as a `block` level format, instead of an `inline` format.
385393
// #TINY-11390
386394

395+
Previously, an issue was identified where the `samp` (Sample) format was incorrectly applied as a block-level format instead of an inline format. This caused the entire element to receive the `samp` format and be placed on a new line, rather than just the selected text receiving the format.
396+
397+
In {productname} {release-version}, this issue has been resolved by registering the `samp` format as an inline format. This ensures that elements with the `samp` format are treated as inline elements, maintaining the intended content flow.
398+
387399
=== Removed title attribute from dialog tree elements as they already have a tooltip.
388400
// #TINY-11470
389401

modules/ROOT/pages/changelog.adoc

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= Changelog
2-
:description: The history of TinyMCE releases.
2+
:description: The history of {productname} releases.
33
:keywords: changelog
44

55
NOTE: This is the {productname} Community version changelog. For information about the latest {cloudname} or {enterpriseversion} Release, see: xref:release-notes.adoc[{productname} Release Notes].
@@ -22,26 +22,26 @@ NOTE: This is the {productname} Community version changelog. For information abo
2222
* New `disabled` option to restore the previous `readonly` mode behavior, allowing the editor to be displayed in a disabled state.
2323
// #TINY-11488
2424

25-
// === Improved
26-
// * Base64 data was not properly decoded due to unhandled URL-encoded characters.
25+
=== Improved
26+
* Base64 data was not properly decoded due to unhandled URL-encoded characters.
2727
// #TINY-9548
28-
// * The `latin` list style type is now recognized as an alias for the `alpha` list style type.
28+
* The `latin` list style type is now recognized as an alias for the `alpha` list style type.
2929
// #TINY-11515
3030

3131
=== Fixed
32-
* Image selection was removed when calling `+editor.nodeChanged()+` while having focus inside the editor UI.
32+
* Image selection was removed when calling `+editor.nodeChanged()+` while having focus inside the editor UI.
3333
// #TINY-11437
34-
* Tooltip would not show for group toolbar button.
34+
* Tooltip would not show for group toolbar button.
3535
// #TINY-11391
36-
* Changing the table row type when a `+contenteditable=false+` cell was selected would not work as expected.
36+
* Changing the table row type when a `+contenteditable=false+` cell was selected would not work as expected.
3737
// #TINY-11383
38-
// * The `samp` format was being applied as a `block` level format, instead of an `inline` format.
38+
* The `samp` format was being applied as a `block` level format, instead of an `inline` format.
3939
// #TINY-11390
40-
* Removed title attribute from dialog tree elements as they already have a tooltip.
40+
* Removed title attribute from dialog tree elements as they already have a tooltip.
4141
// #TINY-11470
42-
* Fixed CSS bundling for skin UI content CSS.
42+
* Fixed CSS bundling for skin UI content CSS.
4343
// #TINY-11558
44-
* Fixed incorrect resource keys for CSS bundling JS files.
44+
* Fixed incorrect resource keys for CSS bundling JS files.
4545
// #TINY-11558
4646

4747
== xref:7.5-release-notes.adoc[7.5.0 - 2024-11-06]

0 commit comments

Comments
 (0)