Skip to content

Commit

Permalink
Added version 5.3.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
ephox committed May 21, 2020
1 parent a9e4928 commit 5831401
Show file tree
Hide file tree
Showing 122 changed files with 16,297 additions and 19,859 deletions.
36 changes: 36 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
Version 5.3.0 (2020-05-21)
Added html and body height styles to the default oxide content CSS #TINY-5978
Added `uploadUri` and `blobInfo` to the data returned by `editor.uploadImages()` #TINY-4579
Added a new function to the `BlobCache` API to lookup a blob based on the base64 data and mime type #TINY-5988
Added the ability to search and replace within a selection #TINY-4549
Added the ability to set the list start position for ordered lists and added new `lists` context menu item #TINY-3915
Added `icon` as an optional config option to the toggle menu item API #TINY-3345
Added `auto` mode for `toolbar_location` which positions the toolbar and menu bar at the bottom if there is no space at the top #TINY-3161
Changed the default `toolbar_location` to `auto` #TINY-3161
Changed toggle menu items and choice menu items to have a dedicated icon with the checkmark displayed on the far right side of the menu item #TINY-3345
Changed the `link`, `image`, and `paste` plugins to use Promises to reduce the bundle size #TINY-4710
Changed the default icons to be lazy loaded during initialization #TINY-4729
Changed the parsing of content so base64 encoded urls are converted to blob urls #TINY-4727
Changed context toolbars so they concatenate when more than one is suitable for the current selection #TINY-4495
Changed inline style element formats (strong, b, em, i, u, strike) to convert to a span on format removal if a `style` or `class` attribute is present #TINY-4741
Fixed the `selection.setContent()` API not running parser filters #TINY-4002
Fixed formats incorrectly applied or removed when table cells were selected #TINY-4709
Fixed the `quickimage` button not restricting the file types to images #TINY-4715
Fixed search and replace ignoring text in nested contenteditable elements #TINY-5967
Fixed resize handlers displaying in the wrong location sometimes for remote images #TINY-4732
Fixed table picker breaking in Firefox on low zoom levels #TINY-4728
Fixed issue with loading or pasting contents with large base64 encoded images on Safari #TINY-4715
Fixed supplementary special characters being truncated when inserted into the editor. Patch contributed by mlitwin. #TINY-4791
Fixed toolbar buttons not set to disabled when the editor is in readonly mode #TINY-4592
Fixed the editor selection incorrectly changing when removing caret format containers #TINY-3438
Fixed bug where title, width, and height would be set to empty string values when updating an image and removing those attributes using the image dialog #TINY-4786
Fixed `ObjectResized` event firing when an object wasn't resized #TINY-4161
Fixed `ObjectResized` and `ObjectResizeStart` events incorrectly fired when adding or removing table rows and columns #TINY-4829
Fixed the placeholder not hiding when pasting content into the editor #TINY-4828
Fixed an issue where the editor would fail to load if local storage was disabled #TINY-5935
Fixed an issue where an uploaded image would reuse a cached image with a different mime type #TINY-5988
Fixed bug where toolbars and dialogs would not show if the body element was replaced (e.g. with Turbolinks). Patch contributed by spohlenz #GH-5653
Fixed an issue where multiple formats would be removed when removing a single format at the end of lines or on empty lines #TINY-1170
Fixed zero-width spaces incorrectly included in the `wordcount` plugin character count #TINY-5991
Fixed a regression introduced in 5.2.0 whereby the desktop `toolbar_mode` setting would incorrectly override the mobile default setting #TINY-5998
Fixed an issue where deleting all content in a single cell table would delete the entire table #TINY-1044
Version 5.2.2 (2020-04-23)
Fixed an issue where anchors could not be inserted on empty lines #TINY-2788
Fixed text decorations (underline, strikethrough) not consistently inheriting the text color #TINY-4757
Expand Down
8 changes: 5 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tinymce/tinymce",
"version": "5.2.2",
"version": "5.3.0",
"description": "Web based JavaScript HTML WYSIWYG editor control.",
"license": [
"LGPL-2.1-only"
Expand All @@ -20,13 +20,15 @@
"scripts": [
"tinymce.js",
"plugins/*/plugin.js",
"themes/*/theme.js"
"themes/*/theme.js",
"themes/*/icons.js"
],
"files": [
"tinymce.min.js",
"plugins/*/plugin.min.js",
"themes/*/theme.min.js",
"skins/**"
"skins/**",
"icons/*/icons.min.js"
]
}
},
Expand Down

0 comments on commit 5831401

Please sign in to comment.