From 413c1941281770a44e2317defe3411fca0fbbac4 Mon Sep 17 00:00:00 2001 From: Karl Kemister-Sheppard Date: Fri, 24 Oct 2025 09:46:14 +1000 Subject: [PATCH] DOC-3308: Minor copy edits and improvements post 8.2.0. --- modules/ROOT/pages/8.2.0-release-notes.adoc | 14 +++++++------- modules/ROOT/pages/changelog.adoc | 4 ++-- modules/ROOT/pages/creating-an-icon-pack.adoc | 6 +++--- modules/ROOT/pages/migration-from-4x.adoc | 12 ++++++------ modules/ROOT/pages/migration-from-5x.adoc | 12 ++++++------ modules/ROOT/pages/migration-from-6x.adoc | 4 ++-- 6 files changed, 26 insertions(+), 26 deletions(-) diff --git a/modules/ROOT/pages/8.2.0-release-notes.adoc b/modules/ROOT/pages/8.2.0-release-notes.adoc index 5414068491..85c6133f33 100644 --- a/modules/ROOT/pages/8.2.0-release-notes.adoc +++ b/modules/ROOT/pages/8.2.0-release-notes.adoc @@ -21,11 +21,11 @@ include::partial$misc/admon-releasenotes-for-stable.adoc[] [[accompanying-premium-plugin-changes]] == Accompanying Premium plugin changes -The following premium plugin updates were released alongside {productname} 8.2.0. +The following premium plugin updates were released alongside {productname} {release-version}. === Media Optimizer -The {productname} 8.2.0 release includes an accompanying release of the **Media Optimizer** premium plugin. +The {productname} {release-version} release includes an accompanying release of the **Media Optimizer** premium plugin. **Media Optimizer** now includes comprehensive video handling capabilities. @@ -33,7 +33,7 @@ The {productname} 8.2.0 release includes an accompanying release of the **Media The **Media Optimizer** plugin now supports video upload and processing, extending beyond its previous image-only functionality. Users can now upload videos directly within the editor through drag-and-drop, file selection, or URL input. -The plugin now supports commonly available video formats including MP4, WebM, 3GPP, MPEG variants, QuickTime, Matroska, AVI, Flash Video, RealMedia, and other standard video formats. +The plugin now supports commonly available video formats including MP4, WebM, and other standard video formats. This new functionality is supported with the following configuration options: @@ -53,7 +53,7 @@ For information on the **Media Optimizer** plugin, see: xref:uploadcare.adoc[Med === License Key Manager -The {productname} 8.2.0 release includes an accompanying release of the **License Key Manager**. +The {productname} {release-version} release includes an accompanying release of the **License Key Manager**. ==== New `+js/commerciallicensekeymanager.js+` file to lazyload majority of plugin after editor init. // #TINY-12820 @@ -123,7 +123,7 @@ For information on the **Full Page HTML** plugin, see: xref:fullpagehtml.adoc[Fu [[improvements]] == Improvements -{productname} 8.2.0 also includes the following improvement: +{productname} {release-version} also includes the following improvement: === Some elements would be given an extra newline by the serializer when indented // #TINY-12857 @@ -133,7 +133,7 @@ Previously, certain elements received an additional newline when indented due to [[bug-fixes]] == Bug fixes -{productname} 8.2.0 also includes the following bug fixes: +{productname} {release-version} also includes the following bug fixes: === UI elements like focus outlines and placeholders would be visible after printing // TINY-12584 @@ -205,7 +205,7 @@ Previously, there was no method to load web components into the editor iframe or For an example of using custom elements with block-level and inline-level components, see: xref:content-filtering.adoc#example-using-custom_elements-with-block-level-and-inline-level-components[Example using `+custom_elements+` with block-level and inline-level components]. -=== Addressed split buttons rendering narrower than in TinyMCE 7, ensuring consistent sizing across the toolbar +=== Addressed split buttons rendering narrower than in {productname} 7, ensuring consistent sizing across the toolbar // #TINY-13097 && #TINY-13111 In {productname} {release-version}, an issue was resolved where split buttons rendered narrower than in {productname} 7 and other toolbar buttons. This occurred because the main portion of the split button used a CSS rule that caused it to collapse to the icon size during initialization, resulting in an incorrect fixed width. This made split buttons appear visually inconsistent, reduced their clickability, and could cause text labels to be truncated. diff --git a/modules/ROOT/pages/changelog.adoc b/modules/ROOT/pages/changelog.adoc index 47970d7ee2..f2096ebd21 100644 --- a/modules/ROOT/pages/changelog.adoc +++ b/modules/ROOT/pages/changelog.adoc @@ -4,7 +4,7 @@ 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]. -== xref:8.2.0-release-notes.adoc[8.2.0 - 2025-10-22] +== xref:8.2.0-release-notes.adoc[8.2.0 - 2025-10-23] ### Improved * Some elements would be given an extra newline by the serializer when indented. @@ -33,7 +33,7 @@ NOTE: This is the {productname} Community version changelog. For information abo // #TINY-13006 * Reverted toolbar button width to `auto`. // #TINY-13097 -* Addressed split buttons rendering narrower than in TinyMCE 7, ensuring consistent sizing across the toolbar. +* Addressed split buttons rendering narrower than in {productname} 7, ensuring consistent sizing across the toolbar. // #TINY-13111 == xref:8.1.2-release-notes.adoc[8.1.2 - 2025-09-18] diff --git a/modules/ROOT/pages/creating-an-icon-pack.adoc b/modules/ROOT/pages/creating-an-icon-pack.adoc index 4ec946f9cd..c9ece72b00 100644 --- a/modules/ROOT/pages/creating-an-icon-pack.adoc +++ b/modules/ROOT/pages/creating-an-icon-pack.adoc @@ -28,10 +28,10 @@ An icon pack only **requires** the custom icons to be included; the default {pro ==== *Understanding Icon Pack Loading:* -{productname} loads icon packs from the path `+TINYMCE_BASE/icons/${iconPackName}/icons.js+`, where: +{productname} loads icon packs from the path `+TINYMCE_BASE/icons/{iconPackName}/icons.js+`, where: * `TINYMCE_BASE` is the {productname} root directory (the directory containing `tinymce.min.js`). -* `${iconPackName}` is the name of the icon pack. +* `+{iconPackName}+` is the name of the icon pack. **Example Directory Structure:** ---- @@ -48,7 +48,7 @@ js/tinymce/ === Icon Pack File Format -The generated `icons.js` file in the `+dist/icons/${iconPackName}/icons.js+` directory follows this exact format: +The generated `icons.js` file in the `+dist/icons/{iconPackName}/icons.js+` directory follows this exact format: [source,javascript] ---- diff --git a/modules/ROOT/pages/migration-from-4x.adoc b/modules/ROOT/pages/migration-from-4x.adoc index 4a15c57204..532f5191a2 100644 --- a/modules/ROOT/pages/migration-from-4x.adoc +++ b/modules/ROOT/pages/migration-from-4x.adoc @@ -29,15 +29,15 @@ tinymce.init({ === Plugin Ecosystem -The {productname} plugin ecosystem was significantly restructured in version 6.0, with several plugins being removed, folded into the {productcorename}, or reclassified as premium features. The following breakdown clarifies the status of each affected plugin. +The {productname} plugin ecosystem was significantly restructured in version 6.0, with several plugins being removed, folded into the {productname}, or reclassified as premium features. The following breakdown clarifies the status of each affected plugin. * **Removed Plugins** (no longer available as of {productname} 6.0): ** `bbcode`, `fullpage`, `legacyoutput`: Deprecated in 5.9.0. Removed in 6.0. -* **Integrated into {productcorename}**: -** `paste`, `hr`, `noneditable`, `table`, `print`, `colorpicker` and `contextmenu`: These plugins were absorbed into {productcorename} and no longer require separate installation. -** `contextmenu`: Deprecated in version 5.0 following the integration of context menu functionality into {productcorename} editor. Removed in version 6.0. For more information, see the link:https://www.tiny.cloud/docs/tinymce/latest/contextmenu/[contextmenu documentation]. -** `tabfocus`: Removed in 6.0. Keyboard navigation via Tab is now handled by the browser and {productcorename}. +* **Integrated into {productname}**: +** `paste`, `hr`, `noneditable`, `table`, `print`, `colorpicker` and `contextmenu`: These plugins were absorbed into {productname} and no longer require separate installation. +** `contextmenu`: Deprecated in version 5.0 following the integration of context menu functionality into {productname} editor. Removed in version 6.0. For more information, see the link:https://www.tiny.cloud/docs/tinymce/latest/contextmenu/[contextmenu documentation]. +** `tabfocus`: Removed in 6.0. Keyboard navigation via Tab is now handled by the browser and {productname}. * **Now Premium Only**: ** `mediaembed`, `tableofcontents`: These features are available through premium plugins. @@ -82,7 +82,7 @@ If you used the following toolbar buttons or menu options, they have changed nam {productname} 6 → {productname} 7: -* `InsertOrderedList` and `InsertUnorderedList` commands were removed from {productcorename} and are now provided by the `lists` plugin. +* `InsertOrderedList` and `InsertUnorderedList` commands were removed from {productname} and are now provided by the `lists` plugin. * Default text pattern triggers were updated to activate on `Space` instead of `Enter`. A `trigger` property was added to configure block-level text pattern behavior. Refer to the latest release notes at link:https://www.tiny.cloud/docs/tinymce/latest/release-notes/[latest release notes] for further details. diff --git a/modules/ROOT/pages/migration-from-5x.adoc b/modules/ROOT/pages/migration-from-5x.adoc index 6ccbed6713..5648c5c99a 100644 --- a/modules/ROOT/pages/migration-from-5x.adoc +++ b/modules/ROOT/pages/migration-from-5x.adoc @@ -33,10 +33,10 @@ The {productname} plugin ecosystem underwent a significant overhaul starting in * **Removed Plugins** (no longer available as of {productname} 6.0): ** `bbcode`, `fullpage`, `legacyoutput`: Deprecated in 5.9.0. Removed in 6.0. -* **Integrated into {productcorename}**: -** `paste`, `hr`, `table`, `noneditable`, `nonbreaking`, `print`, `colorpicker` and `contextmenu`: These plugins were absorbed into {productcorename} and no longer require separate installation. -** `contextmenu`: Deprecated in version 5.0 following the integration of context menu functionality into {productcorename} editor. Removed in version 6.0. For more information, see the link:https://www.tiny.cloud/docs/tinymce/latest/contextmenu/[contextmenu documentation]. -** `tabfocus`: Removed in 6.0. Keyboard navigation via Tab is now handled by the browser and {productcorename}. +* **Integrated into {productname}**: +** `paste`, `hr`, `table`, `noneditable`, `nonbreaking`, `print`, `colorpicker` and `contextmenu`: These plugins were absorbed into {productname} and no longer require separate installation. +** `contextmenu`: Deprecated in version 5.0 following the integration of context menu functionality into {productname} editor. Removed in version 6.0. For more information, see the link:https://www.tiny.cloud/docs/tinymce/latest/contextmenu/[contextmenu documentation]. +** `tabfocus`: Removed in 6.0. Keyboard navigation via Tab is now handled by the browser and {productname}. * **Now Premium Only**: ** `mediaembed`, `tableofcontents`: These features are available through premium plugins. @@ -83,7 +83,7 @@ If you used the following toolbar buttons or menu options, they have changed nam {productname} 6 → {productname} 7: -* `InsertOrderedList` and `InsertUnorderedList` commands were removed from {productcorename} and are now provided by the `lists` plugin. +* `InsertOrderedList` and `InsertUnorderedList` commands were removed from {productname} and are now provided by the `lists` plugin. * Default text pattern triggers were updated to activate on `Space` instead of `Enter`. A `trigger` property was added to configure block-level text pattern behavior. Refer to the latest release notes at link:https://www.tiny.cloud/docs/tinymce/latest/release-notes/[latest release notes] for further details. @@ -173,7 +173,7 @@ Refer to version-specific release notes for changes in toolbar button names and {productname} 6 → {productname} 7: -* `InsertOrderedList` / `InsertUnorderedList` commands removed from {productcorename} (use `lists` plugin). +* `InsertOrderedList` / `InsertUnorderedList` commands removed from {productname} (use `lists` plugin). * Default text pattern triggers updated from `Enter` to `Space`, configurable via `trigger`. ==== diff --git a/modules/ROOT/pages/migration-from-6x.adoc b/modules/ROOT/pages/migration-from-6x.adoc index 3ba9531ac5..f9c51548cc 100644 --- a/modules/ROOT/pages/migration-from-6x.adoc +++ b/modules/ROOT/pages/migration-from-6x.adoc @@ -25,7 +25,7 @@ Open Source users: please report issues in the https://github.com/tinymce/tinymc [[tinymce-70-core-changes]] == {productname} {productmajorversion} core changes. -For additional details on {productname} {release-version} changes, see xref:7.0-release-notes.adoc[{productname} {release-version} release notes]. +For additional details on {productname} {release-version} changes, see link:https://www.tiny.cloud/docs/tinymce/7/7.0-release-notes/[{productname} {release-version} release notes]. [[commands-and-apis]] @@ -66,7 +66,7 @@ Applying basic formats such as headings, lists, bold and italic from typing them {productname} {release-version} updates the default behavior of the `text-patterns` option to apply these formats when the user presses the `Space` key. [NOTE] -The previous default `text_patterns` behavior, applying the format on an `Enter` key press, can be configured by replacing the `trigger` property with the value `'space'`. Learn more about how you can configure `text_patterns` in the xref:7.0-release-notes.adoc#a-new-trigger-property-for-block-text-pattern-configurations-allowing-pattern-activation-with-either-space-or-enter-keys[{release-version} Release notes] +The previous default `text_patterns` behavior, applying the format on an `Enter` key press, can be configured by replacing the `trigger` property with the value `'space'`. Learn more about how you can configure `text_patterns` in the link:https://www.tiny.cloud/docs/tinymce/7/7.0-release-notes/#a-new-trigger-property-for-block-text-pattern-configurations-allowing-pattern-activation-with-either-space-or-enter-keys[{release-version} Release notes] .Updated default text patterns [source, ts]