This repository has been archived by the owner on Jun 26, 2020. It is now read-only.
Releases: ckeditor/ckeditor5-editor-classic
Releases · ckeditor/ckeditor5-editor-classic
v12.0.0
Features
- Added support for the
config.placeholder
option which allows configuring the empty editor content placeholder (see ckeditor/ckeditor5#479). (3450c23)
Bug fixes
- Fixed memory leaks during editor initialization and destruction (see ckeditor/ckeditor5#1341). (a3c5c82)
Other changes
- Adjustments to new editor initialization events. See breaking changes. (61ccab0)
- Editor UI classes API refactoring. See breaking changes. (74e27ae)
BREAKING CHANGES
- Upgraded minimal versions of Node to
8.0.0
and npm to5.7.1
. See: ckeditor/ckeditor5#1507. (612ea3c) - The
editor#dataReady
event was removed. Theeditor.data#ready
event has been introduced and should be used instead. - The
editor#pluginsReady
event was removed. Use pluginafterInit()
method instead. - Removed
ClassicEditor#element
property. TheClassicEditorUI#element
property should be used instead. - Removed
ClassicEditorUIView#editableElement
. InsteadClassicEditorUI#getEditableElement()
method should be used.
v11.0.2
v11.0.1
v11.0.0
Features
Other changes
- Used the
EditorUI
as a parent class for theClassicEditorUI
(see ckeditor/ckeditor5-core#130). (ae98cfd)
BREAKING CHANGES
- The
ClassicEditor#element
property was renamed toClassicEditor#sourceElement
andClassicEditor#updateElement()
method toClassicEditor#updateSourceElement()
. See ckeditor/ckeditor5-core#64.
v10.0.1
v10.0.0
Other changes
- Changed the license to GPL2+ only. See ckeditor/ckeditor5#991. (95fe4c1)
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
Internal changes only (updated dependencies, documentation, etc.).
v1.0.0-beta.2
Other changes
- Increased the specificity of CSS rules. Introduced the
.ck
class for editor UI components (see: ckeditor/ckeditor5#494). (e548bd0)
v1.0.0-beta.1
Other changes
- Migrated the editor styles to PostCSS. Moved visual styles to
@ckeditor/ckeditor5-theme-lark
(see ckeditor/ckeditor5-ui#144). (f24f97d) - Removed the
.ck-editor-toolbar
class from the toolbar (see ckeditor/ckeditor5-theme-lark#135). (6b4670c)
v1.0.0-alpha.2
Other changes
- Aligned UI library usage to the changes in the UI framework.