Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Releases: ckeditor/ckeditor5-image

v13.0.0

28 Feb 11:53
Compare
Choose a tag to compare

Features

  • Enable images in table cells. (3a4d2ca)

Bug fixes

  • Insert missing caption for images that are nested in other elements. Closes ckeditor/ckeditor5#1524. (0e3a7c5)
  • The text alternative input should be blurred before the form is removed from the DOM. Closes ckeditor/ckeditor5/issues#1501. (f89fe04)
  • Fixed memory leaks during editor initialization and destruction (see ckeditor/ckeditor5#1341). (205f119)

Other changes

BREAKING CHANGES

  • Upgraded minimal versions of Node to 8.0.0 and npm to 5.7.1. See: ckeditor/ckeditor5#1507. (612ea3c)
  • The isImageWidgetSelected() utility has been replaced by getSelectedImageWidget() and returns an editing View element instead of Boolean.

v12.0.0

05 Dec 11:52
Compare
Choose a tag to compare

Features

Bug fixes

  • Prevent errors when (for unclear reasons) the native DataTransfer#files contains null values when drag&dropping files into the editor in Chrome. (2a45481)

    Thanks to @code-chris!

Other changes

BREAKING CHANGES

  • The ImageUploadCommand#execute()'s files parameter was renamed to file. It can still accept an array of files.

v11.0.0

09 Oct 10:20
Compare
Choose a tag to compare

Other changes

  • Aligned ImageToolbar to use the new widget toolbar repository. (980681d)
  • Image feature should insert image the same way as other widget features do. (26638f5)
  • The ImageUploadCommand should check whether it can be executed in the context of the current document selection. Closes #225. Closes #227. Closes #235. (4c1f27f)
  • Updated translations. (59f3604)

BREAKING CHANGES

  • The options.file property was renamed to options.files in ImageUploadCommand#execute().
  • The options.insertAt property of ImageUploadCommand#execute() was removed. The command will now use model's selection.
  • Removed findOptimalInsertionPosition() from utils. This method can now be found in the @ckeditor/ckeditor5-widget/src/utils module.

v10.2.0

18 Jul 10:22
Compare
Choose a tag to compare

Features

  • Implemented a CSS–styled image upload loader. Closes #207. (997d39b)
  • Introduced ImageLoadObserver. Closes #213. (1128cb8)

Bug fixes

Other changes

v10.1.0

21 Jun 09:26
Compare
Choose a tag to compare

Features

  • Added "upload completed" icon. Closes #204. (004eda7)

Bug fixes

  • Made image upload by drag&drop work when the ImageUploadCommand is disabled. Closes #208. (6908ec6)

Other changes

v10.0.0

25 Apr 12:25
Compare
Choose a tag to compare

Other changes

BREAKING CHANGES

  • The license under which CKEditor 5 is released has been changed from a triple GPL, LGPL and MPL license to a GPL2+ only. See ckeditor/ckeditor5#991 for more information.

v1.0.0-beta.4

20 Apr 10:51
Compare
Choose a tag to compare

Other changes

v1.0.0-beta.2

10 Apr 09:21
Compare
Choose a tag to compare

Bug fixes

  • Fixed image upload progress updates. Now each upload status is treated separately. Closes #191. (66d67c0)
  • Image element will be cleared from upload progress classes if uploadId attribute changed to null. Closes #200. (5fadcf0)
  • ImageUploadEditing should not throw unhandled async errors. Closes #186. (4357336)

Other changes

  • Made the image text alternative form buttons thicker with a fill color and no background. Closes #187. (25c17ad)

v1.0.0-beta.1

15 Mar 11:50
Compare
Choose a tag to compare

Features

Other changes

BREAKING CHANGES

  • uploadImage command and button are now called imageUpload.
  • Renamed the 'imageUpload' command to 'uploadImage'.
  • The 'imageStyleFull', 'imageStyleSide', 'imageStyleAlignLeft', 'imageStyleAlignRight' and 'imageStyleAlignCenter' commands are no longer available. They were replaced by the 'imageStyle' command that accepts name of an image style as a value.
  • The 'imageStyleFull', 'imageStyleSide', 'imageStyleAlignLeft', 'imageStyleAlignRight' and 'imageStyleAlignCenter' UI components are no longer available. Replaced by 'imageStyle:full', 'imageStyle:side', 'imageStyle:alignLeft', 'imageStyle:alignRight' and 'imageStyle:alignCenter'.
  • The ImageStyleCommand#value property is no longer a boolean only. Now it represents a name of an image style of the currently selected image element.
  • The ImageStyleCommand constructor's second parameter is now an array of supported image styles.
  • The DOM structure of the text alternative form has changed.

0.0.1 (2017-11-06)

Internal changes only (updated dependencies, documentation, etc.).

v1.0.0-alpha.2

14 Nov 11:55
Compare
Choose a tag to compare

Bug fixes

  • Default style's command will properly remove model element's attribute. Closes #147. (c96fb19)

Other changes