Skip to content

Commit

Permalink
Added version 5.0.13 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
ephox committed Aug 6, 2019
1 parent c5d8e43 commit 8595d45
Show file tree
Hide file tree
Showing 103 changed files with 4,945 additions and 1,978 deletions.
16 changes: 16 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
Version 5.0.13 (2019-08-06)
Changed modal dialogs to prevent dragging by default and added new `draggable_modal` setting to restore dragging #TINY-3873
Changed the nonbreaking plugin to insert nbsp characters wrapped in spans to aid in filtering. This can be disabled using the `nonbreaking_wrap` setting #TINY-3647
Changed backspace behaviour in lists to outdent nested list items when the cursor is at the start of the list item #TINY-3651
Fixed sidebar growing beyond editor bounds in IE 11 #TINY-3937
Fixed issue with being unable to keyboard navigate disabled toolbar buttons #TINY-3350
Fixed issues with backspace and delete in nested contenteditable true and false elements #TINY-3868
Fixed issue with losing keyboard navigation in dialogs due to disabled buttons #TINY-3914
Fixed `MouseEvent.mozPressure is deprecated` warning in Firefox #TINY-3919
Fixed `default_link_target` not being respected when `target_list` is disabled #TINY-3757
Fixed mobile plugin filter to only apply to the mobile theme, rather than all mobile platforms #TINY-3405
Fixed focus switching to another editor during mode changes #TINY-3852
Fixed an exception being thrown when clicking on an uninitialized inline editor #TINY-3925
Fixed unable to keyboard navigate to dialog menu buttons #TINY-3933
Fixed dialogs being able to be dragged outside the window viewport #TINY-3787
Fixed inline dialogs appearing above modal dialogs #TINY-3932
Version 5.0.12 (2019-07-18)
Added ability to utilize UI dialog panels inside other panels #TINY-3305
Added help dialog tab explaining keyboard navigation of the editor #TINY-3603
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tinymce/tinymce",
"version": "5.0.12",
"version": "5.0.13",
"description": "Web based JavaScript HTML WYSIWYG editor control.",
"license": [
"LGPL-2.1-only"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tinymce",
"version": "5.0.12",
"version": "5.0.13",
"repository": {
"type": "git",
"url": "/~https://github.com/tinymce/tinymce-dist.git"
Expand Down
2 changes: 1 addition & 1 deletion plugins/advlist/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.0.12 (2019-07-18)
* Version: 5.0.13 (2019-08-06)
*/
(function () {
'use strict';
Expand Down
2 changes: 1 addition & 1 deletion plugins/advlist/plugin.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion plugins/anchor/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.0.12 (2019-07-18)
* Version: 5.0.13 (2019-08-06)
*/
(function () {
'use strict';
Expand Down
2 changes: 1 addition & 1 deletion plugins/anchor/plugin.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions plugins/autolink/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.0.12 (2019-07-18)
* Version: 5.0.13 (2019-08-06)
*/
(function () {
'use strict';
Expand All @@ -17,7 +17,7 @@
return editor.getParam('autolink_pattern', /^(https?:\/\/|ssh:\/\/|ftp:\/\/|file:\/|www\.|(?:mailto:)?[A-Z0-9._%+\-]+@)(.+)$/i);
};
var getDefaultLinkTarget = function (editor) {
return editor.getParam('default_link_target', '');
return editor.getParam('default_link_target', false);
};
var Settings = {
getAutoLinkPattern: getAutoLinkPattern,
Expand Down Expand Up @@ -136,7 +136,7 @@
bookmark = editor.selection.getBookmark();
editor.selection.setRng(rng);
editor.execCommand('createlink', false, matches[1] + matches[2]);
if (defaultLinkTarget) {
if (defaultLinkTarget !== false) {
editor.dom.setAttrib(editor.selection.getNode(), 'target', defaultLinkTarget);
}
editor.selection.moveToBookmark(bookmark);
Expand Down
4 changes: 2 additions & 2 deletions plugins/autolink/plugin.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion plugins/autoresize/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.0.12 (2019-07-18)
* Version: 5.0.13 (2019-08-06)
*/
(function () {
'use strict';
Expand Down
2 changes: 1 addition & 1 deletion plugins/autoresize/plugin.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion plugins/autosave/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* For LGPL see License.txt in the project root for license information.
* For commercial licenses see https://www.tiny.cloud/
*
* Version: 5.0.12 (2019-07-18)
* Version: 5.0.13 (2019-08-06)
*/
(function (domGlobals) {
'use strict';
Expand Down
Loading

0 comments on commit 8595d45

Please sign in to comment.