From c9325854dade9cb107c4f78209eaca94d6edd33f Mon Sep 17 00:00:00 2001 From: Farzad Hayatbakhsh Date: Thu, 12 Dec 2024 11:27:40 +1000 Subject: [PATCH 1/5] DOC-2598: Uncomment 7.6.0 improvements section --- modules/ROOT/nav.adoc | 2 +- modules/ROOT/pages/7.6.0-release-notes.adoc | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/ROOT/nav.adoc b/modules/ROOT/nav.adoc index 845eb68540..a8f82e5ee8 100644 --- a/modules/ROOT/nav.adoc +++ b/modules/ROOT/nav.adoc @@ -424,7 +424,7 @@ **** xref:7.6.0-release-notes.adoc#new-premium-plugin[New Premium plugin] **** xref:7.6.0-release-notes.adoc#accompanying-premium-plugin-changes[Accompanying Premium plugin changes] **** xref:7.6.0-release-notes.adoc#accompanying-enhanced-skins-and-icon-packs-changes[Accompanying Enhanced Skins & Icon Packs changes] -// **** xref:7.6.0-release-notes.adoc#improvements[Improvements] +**** xref:7.6.0-release-notes.adoc#improvements[Improvements] **** xref:7.6.0-release-notes.adoc#additions[Additions] **** xref:7.6.0-release-notes.adoc#bug-fixes[Bug fixes] **** xref:7.6.0-release-notes.adoc#known-issues[Known issues] diff --git a/modules/ROOT/pages/7.6.0-release-notes.adoc b/modules/ROOT/pages/7.6.0-release-notes.adoc index a07371b400..4c20b545ad 100644 --- a/modules/ROOT/pages/7.6.0-release-notes.adoc +++ b/modules/ROOT/pages/7.6.0-release-notes.adoc @@ -16,7 +16,7 @@ include::partial$misc/admon-releasenotes-for-stable.adoc[] * xref:new-premium-plugin[New Premium plugin] * xref:accompanying-premium-plugin-changes[Accompanying Premium plugin changes] * xref:accompanying-enhanced-skins-and-icon-packs-changes[Accompanying Enhanced Skins & Icon Packs changes] -// * xref:improvements[Improvements] +* xref:improvements[Improvements] * xref:additions[Additions] * xref:changes[Changes] * xref:bug-fixes[Bug fixes] @@ -193,10 +193,10 @@ The **Enhanced Skins & Icon Packs** were rebuilt to pull in the changes also inc For information on using Enhanced Skins & Icon Packs, see: xref:enhanced-skins-and-icon-packs.adoc[Enhanced Skins & Icon Packs]. -// [[improvements]] -// == Improvements +[[improvements]] +== Improvements -// {productname} {release-version} also includes the following improvements: +{productname} {release-version} also includes the following improvements: // === Base64 data was not properly decoded due to unhandled URL-encoded characters. // #TINY-9548 From cb1c62659741707c1839e3220341fbf98a7f587c Mon Sep 17 00:00:00 2001 From: Farzad Hayatbakhsh Date: Thu, 12 Dec 2024 11:39:33 +1000 Subject: [PATCH 2/5] DOC-2598: TINY-11390 Change the Sample format from block level to inline --- modules/ROOT/pages/7.6.0-release-notes.adoc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/ROOT/pages/7.6.0-release-notes.adoc b/modules/ROOT/pages/7.6.0-release-notes.adoc index 4c20b545ad..cc6a352f26 100644 --- a/modules/ROOT/pages/7.6.0-release-notes.adoc +++ b/modules/ROOT/pages/7.6.0-release-notes.adoc @@ -375,9 +375,13 @@ Previously, there was an issue where changes to the row type in numbered tables 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. -// === The `samp` format was being applied as a `block` level format, instead of an `inline` format. +=== The `samp` format was being applied as a `block` level format, instead of an `inline` format. // #TINY-11390 +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. + +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. + === Removed title attribute from dialog tree elements as they already have a tooltip. // #TINY-11470 From d838bcd72a85196491091e6f643ef381ca99661a Mon Sep 17 00:00:00 2001 From: Farzad Hayatbakhsh Date: Thu, 12 Dec 2024 11:44:29 +1000 Subject: [PATCH 3/5] DOC-2598: TINY-9548 Base64 URL-encoded data now properly decoded --- modules/ROOT/pages/7.6.0-release-notes.adoc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/ROOT/pages/7.6.0-release-notes.adoc b/modules/ROOT/pages/7.6.0-release-notes.adoc index cc6a352f26..9c81525aff 100644 --- a/modules/ROOT/pages/7.6.0-release-notes.adoc +++ b/modules/ROOT/pages/7.6.0-release-notes.adoc @@ -198,9 +198,13 @@ For information on using Enhanced Skins & Icon Packs, see: xref:enhanced-skins-a {productname} {release-version} also includes the following improvements: -// === Base64 data was not properly decoded due to unhandled URL-encoded characters. +=== Base64 data was not properly decoded due to unhandled URL-encoded characters. // #TINY-9548 +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. + +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. + // === The `latin` list style type is now recognized as an alias for the `alpha` list style type. // #TINY-11515 From 233f1b4a0e8d8924de10a8c09fb6c0da34a2d79b Mon Sep 17 00:00:00 2001 From: Farzad Hayatbakhsh Date: Thu, 12 Dec 2024 12:08:25 +1000 Subject: [PATCH 4/5] DOC-2598: TINY-11515 Add support for latin list style types --- modules/ROOT/pages/7.6.0-release-notes.adoc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/ROOT/pages/7.6.0-release-notes.adoc b/modules/ROOT/pages/7.6.0-release-notes.adoc index 9c81525aff..19eea8d47b 100644 --- a/modules/ROOT/pages/7.6.0-release-notes.adoc +++ b/modules/ROOT/pages/7.6.0-release-notes.adoc @@ -205,9 +205,13 @@ Previously, URL-encoded characters were not properly handled during base64 data 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. -// === The `latin` list style type is now recognized as an alias for the `alpha` list style type. +=== The `latin` list style type is now recognized as an alias for the `alpha` list style type. // #TINY-11515 +Previously, {productname} did not recognize `lower-latin` and `upper-latin` list style types, causing UI issues when importing documents with such lists. + +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. + [[additions]] == Additions From f6b467a814a4034b3a702b1d60c3394b1261367f Mon Sep 17 00:00:00 2001 From: Farzad Hayatbakhsh Date: Thu, 12 Dec 2024 12:11:47 +1000 Subject: [PATCH 5/5] DOC-2598: Uncomment missing entries in the changelog --- modules/ROOT/pages/changelog.adoc | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/modules/ROOT/pages/changelog.adoc b/modules/ROOT/pages/changelog.adoc index 14662a04b3..f634eb7061 100644 --- a/modules/ROOT/pages/changelog.adoc +++ b/modules/ROOT/pages/changelog.adoc @@ -1,5 +1,5 @@ = Changelog -:description: The history of TinyMCE releases. +:description: The history of {productname} releases. :keywords: changelog 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 * New `disabled` option to restore the previous `readonly` mode behavior, allowing the editor to be displayed in a disabled state. // #TINY-11488 -// === Improved -// * Base64 data was not properly decoded due to unhandled URL-encoded characters. +=== Improved +* Base64 data was not properly decoded due to unhandled URL-encoded characters. // #TINY-9548 -// * The `latin` list style type is now recognized as an alias for the `alpha` list style type. +* The `latin` list style type is now recognized as an alias for the `alpha` list style type. // #TINY-11515 === Fixed -* Image selection was removed when calling `+editor.nodeChanged()+` while having focus inside the editor UI. +* Image selection was removed when calling `+editor.nodeChanged()+` while having focus inside the editor UI. // #TINY-11437 -* Tooltip would not show for group toolbar button. +* Tooltip would not show for group toolbar button. // #TINY-11391 -* Changing the table row type when a `+contenteditable=false+` cell was selected would not work as expected. +* Changing the table row type when a `+contenteditable=false+` cell was selected would not work as expected. // #TINY-11383 -// * The `samp` format was being applied as a `block` level format, instead of an `inline` format. +* The `samp` format was being applied as a `block` level format, instead of an `inline` format. // #TINY-11390 -* Removed title attribute from dialog tree elements as they already have a tooltip. +* Removed title attribute from dialog tree elements as they already have a tooltip. // #TINY-11470 -* Fixed CSS bundling for skin UI content CSS. +* Fixed CSS bundling for skin UI content CSS. // #TINY-11558 -* Fixed incorrect resource keys for CSS bundling JS files. +* Fixed incorrect resource keys for CSS bundling JS files. // #TINY-11558 == xref:7.5-release-notes.adoc[7.5.0 - 2024-11-06]