This repository has been archived by the owner on Jun 26, 2020. It is now read-only.
Releases: ckeditor/ckeditor5-image
Releases · ckeditor/ckeditor5-image
v13.0.0
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
- Aligned to the new
WidgetToolbarRepository
API. Replaced theisImageWidgetSelected()
utility withgetSelectedImageWidget()
(see ckeditor/ckeditor5-widget#60). (699d586) - Remove
ImageEditing
plugin from requires method ofImageStyleEditing
. Closes #261. (5dea054) - The image uploading listener for handling
base64/blob
images no longer stopsinputTransformation
event. Closes #263. Closes ckeditor/ckeditor5-paste-from-office#44. (8c5b4fc) - Updated translations. (1f4e70d) (6c9e15c) (a1b03b9)
BREAKING CHANGES
- Upgraded minimal versions of Node to
8.0.0
and npm to5.7.1
. See: ckeditor/ckeditor5#1507. (612ea3c) - The
isImageWidgetSelected()
utility has been replaced bygetSelectedImageWidget()
and returns an editingView
element instead ofBoolean
.
v12.0.0
Features
- Improved responsiveness of the text alternative view in narrow viewports (see ckeditor/ckeditor5#416). (ff5394a)
- Introduced the
'imageInsert'
command. Closes #245. Closes #251. (cc1e7a3) - Support for uploading images pasted with a base64 source. Closes #246. Closes ckeditor/ckeditor5-paste-from-office#24. (89ab27e)
Bug fixes
-
Prevent errors when (for unclear reasons) the native
DataTransfer#files
containsnull
values when drag&dropping files into the editor in Chrome. (2a45481)Thanks to @code-chris!
Other changes
- Moved widget spacing styles from
@ckeditor/ckeditor5-theme-lark
to the feature content styles sheet (see ckeditor/ckeditor5-theme-lark#209). (671e1b8) - Removed obsolete fill attributes in SVG icons. (0f9dad3) (57bd34c) (ebc27e6) (6192cf3)
- Updated translations. (3c85c37)
BREAKING CHANGES
- The
ImageUploadCommand#execute()
'sfiles
parameter was renamed tofile
. It can still accept an array of files.
v11.0.0
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 tooptions.files
inImageUploadCommand#execute()
. - The
options.insertAt
property ofImageUploadCommand#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
Features
- Implemented a CSS–styled image upload loader. Closes #207. (997d39b)
- Introduced
ImageLoadObserver
. Closes #213. (1128cb8)
Bug fixes
-
Complete upload icon should not be rendered in Edge due to an Edge's bug. Closes ckeditor/ckeditor5#1066. (9a62cf1)
-
The UI should update once the image is loaded. Closes #142. (dee20c0)
Used the
EditorUI#update
event instead ofView#render
to attach the UI components (see ckeditor/ckeditor5-core#130).
Other changes
- Updated translations. (e6f77fe)
v10.1.0
v10.0.0
Other changes
- Changed the license to GPL2+ only. See ckeditor/ckeditor5#991. (7b11bc5)
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
Other changes
- Updated translations. (de6b58e)
v1.0.0-beta.2
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 tonull
. Closes #200. (5fadcf0) ImageUploadEditing
should not throw unhandled async errors. Closes #186. (4357336)
Other changes
v1.0.0-beta.1
Features
- Intorduced the
ImageUpload
feature. It was moved from the@ckeditor/ckeditor5-upload
package. See ckeditor/ckeditor5-upload#22. (b974bb0) - Simplified the text alternative UI, aligning the image package to the redesigned Lark theme (see ckeditor/ckeditor5#645). (9a069b0)
Other changes
- Aligned feature class naming to the new scheme. (8690765)
- Migrated package styles to PostCSS. Moved visual styles to
@ckeditor/ckeditor5-theme-lark
(see ckeditor/ckeditor5-ui#144). (ed6e1cf) - Removed the
.ck-editor-toolbar
and.ck-editor-toolbar-container
classes from the UI (see ckeditor/ckeditor5-theme-lark#135). (1c08fdd) - Renamed
uploadImage
command and button toimageUpload
. Closes #184. (6f891b8) - Updated naming of UI components & commands. (2e7fbee)
- Updated translations. (02f9cf5)
BREAKING CHANGES
uploadImage
command and button are now calledimageUpload
.- 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
Bug fixes
Other changes
- Updated translations. (eb4ba5b)
- Aligned UI library usage to the changes in the UI framework.