Skip to content

Commit

Permalink
Change version format also outside of @SInCE tags.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dumluregn authored and f1ames committed Jun 17, 2019
1 parent 9e10d20 commit 497696d
Show file tree
Hide file tree
Showing 13 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion core/command.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ CKEDITOR.command = function( editor, commandDefinition ) {
* by the {@link CKEDITOR.filter#checkFeature} method.
*
* @since 4.1.0
* @param {Boolean} [noCache] Skip cache for example due to active filter change. Since CKEditor 4.2.
* @param {Boolean} [noCache] Skip cache for example due to active filter change. Since CKEditor 4.2.0.
* @returns {Boolean} Whether this command is allowed.
*/
this.checkAllowed = function( noCache ) {
Expand Down
2 changes: 1 addition & 1 deletion core/creators/themedui.js
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ CKEDITOR.config.startupMode = 'wysiwyg';
*
* @event resize
* @param {CKEDITOR.editor} editor This editor instance.
* @param {Object} data Available since CKEditor 4.5.
* @param {Object} data Available since CKEditor 4.5.0.
* @param {Number} data.outerHeight The height of the entire area that the editor covers.
* @param {Number} data.contentsHeight Editable area height in pixels.
* @param {Number} data.outerWidth The width of the entire area that the editor covers.
Expand Down
2 changes: 1 addition & 1 deletion core/dom/element.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ CKEDITOR.dom.element.clearMarkers = function( database, element, removeFromDatab
* element.addClass( 'classB' ); // <div class="classA classB">
* element.addClass( 'classA' ); // <div class="classA classB">
*
* **Note:** Since CKEditor 4.5 this method cannot be used with multiple classes (`'classA classB'`).
* **Note:** Since CKEditor 4.5.0 this method cannot be used with multiple classes (`'classA classB'`).
*
* @chainable
* @method addClass
Expand Down
2 changes: 1 addition & 1 deletion core/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -1511,7 +1511,7 @@
*
* Prior to CKEditor 4.3 Enter modes were static and it was enough to check {@link CKEDITOR.config#enterMode}
* and {@link CKEDITOR.config#shiftEnterMode} when implementing a feature which should depend on the Enter modes.
* Since CKEditor 4.3 these options are source of initial:
* Since CKEditor 4.3.0 these options are source of initial:
*
* * static {@link #enterMode} and {@link #shiftEnterMode} values,
* * dynamic {@link #activeEnterMode} and {@link #activeShiftEnterMode} values.
Expand Down
2 changes: 1 addition & 1 deletion core/env.js
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ if ( !CKEDITOR.env ) {
env.version = version;

/**
* Since CKEditor 4.5 this property is a blacklist of browsers incompatible with CKEditor. It means that it is
* Since CKEditor 4.5.0 this property is a blacklist of browsers incompatible with CKEditor. It means that it is
* set to `false` only in browsers that are known to be incompatible. Before CKEditor 4.5 this
* property was a whitelist of browsers that were known to be compatible with CKEditor.
*
Expand Down
4 changes: 2 additions & 2 deletions core/htmldataprocessor.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@
* This method fires the {@link CKEDITOR.editor#toHtml} event which makes it possible
* to hook into the process at various stages.
*
* **Note:** Since CKEditor 4.3 the signature of this method changed and all options
* **Note:** Since CKEditor 4.3.0 the signature of this method changed and all options
* are now grouped in one `options` object. Previously `context`, `fixForBody` and `dontFilter`
* were passed separately.
*
Expand Down Expand Up @@ -245,7 +245,7 @@
enterMode = options.enterMode;
protectedWhitespaces = options.protectedWhitespaces;
}
// Backward compatibility. Since CKEDITOR 4.3 every option was a separate argument.
// Backward compatibility. Since CKEDITOR 4.3.0 every option was a separate argument.
else {
context = options;
}
Expand Down
2 changes: 1 addition & 1 deletion core/htmlparser/fragment.js
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ CKEDITOR.htmlParser.fragment = function() {
*
* @since 4.1.0
* @param {Function} callback Function to be executed on every node.
* **Since 4.3** if `callback` returned `false` descendants of current node will be ignored.
* **Since 4.3.0** if `callback` returned `false` descendants of current node will be ignored.
* @param {CKEDITOR.htmlParser.node} callback.node Node passed as argument.
* @param {Number} [type] If specified `callback` will be executed only on nodes of this type.
* @param {Boolean} [skipRoot] Don't execute `callback` on this fragment.
Expand Down
8 changes: 4 additions & 4 deletions core/style.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ CKEDITOR.STYLE_OBJECT = 3;
* @param {CKEDITOR.editor/CKEDITOR.dom.document} editor The editor instance in which
* the style will be applied.
* A {@link CKEDITOR.dom.document} instance is accepted for backward compatibility
* reasons, although since CKEditor 4.4 this type of argument is deprecated. Read more about
* reasons, although since CKEditor 4.4.0 this type of argument is deprecated. Read more about
* the signature change in the {@link CKEDITOR.style} documentation.
*/
apply: function( editor ) {
Expand Down Expand Up @@ -223,7 +223,7 @@ CKEDITOR.STYLE_OBJECT = 3;
* @param {CKEDITOR.editor/CKEDITOR.dom.document} editor The editor instance in which
* the style will be removed.
* A {@link CKEDITOR.dom.document} instance is accepted for backward compatibility
* reasons, although since CKEditor 4.4 this type of argument is deprecated. Read more about
* reasons, although since CKEditor 4.4.0 this type of argument is deprecated. Read more about
* the signature change in the {@link CKEDITOR.style} documentation.
*/
remove: function( editor ) {
Expand All @@ -234,9 +234,9 @@ CKEDITOR.STYLE_OBJECT = 3;
if ( this.checkApplicable( editor.elementPath(), editor ) ) {
var initialEnterMode = this._.enterMode;

// Before CKEditor 4.4 style knew nothing about editor, so in order to provide enterMode
// Before CKEditor 4.4.0 style knew nothing about editor, so in order to provide enterMode
// which should be used developers were forced to hack the style object (see https://dev.ckeditor.com/ticket/10190).
// Since CKEditor 4.4 style knows about editor (at least when it's being applied/removed), but we
// Since CKEditor 4.4.0 style knows about editor (at least when it's being applied/removed), but we
// use _.enterMode for backward compatibility with those hacks.
// Note: we should not change style's enter mode if it was already set.
if ( !initialEnterMode )
Expand Down
2 changes: 1 addition & 1 deletion core/tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@
*
* alert( CKEDITOR.tools.htmlDecodeAttr( '&lt;a &quot; b&gt;' ) ); // '<a " b>'
*
* Since CKEditor 4.5 this method simply executes {@link #htmlDecode} which covers
* Since CKEditor 4.5.0 this method simply executes {@link #htmlDecode} which covers
* all necessary entities.
*
* @param {String} text The text to be decoded.
Expand Down
2 changes: 1 addition & 1 deletion plugins/bbcode/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@

editor.filter.disable();

// Since CKEditor 4.3, editor#(active)enterMode is set before
// Since CKEditor 4.3.0, editor#(active)enterMode is set before
// beforeInit. Properties got to be updated (https://dev.ckeditor.com/ticket/11202).
editor.activeEnterMode = editor.enterMode = CKEDITOR.ENTER_BR;
},
Expand Down
2 changes: 1 addition & 1 deletion plugins/mathjax/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@
*
* config.mathJaxLib = '//cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.4/MathJax.js?config=TeX-AMS_HTML';
*
* **Note:** Since CKEditor 4.5 this option does not have a default value, so it must
* **Note:** Since CKEditor 4.5.0 this option does not have a default value, so it must
* be set in order to enable the MathJax plugin.
*
* @since 4.3.0
Expand Down
2 changes: 1 addition & 1 deletion plugins/widget/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@
* // insert a new simplebox widget or edit the one currently focused.
* editor.execCommand( 'simplebox' );
*
* Note: Since CKEditor 4.5 widget's `startupData` can be passed as the command argument:
* Note: Since CKEditor 4.5.0 widget's `startupData` can be passed as the command argument:
*
* editor.execCommand( 'simplebox', {
* startupData: {
Expand Down
2 changes: 1 addition & 1 deletion skins/moono/readme.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"Moono" Skin
====================

This skin has been chosen for the **default skin** of CKEditor 4.x (replaced by "Moono-lisa" skin since CKEditor 4.6.0),
This skin has been chosen for the **default skin** of CKEditor 4.x.x (replaced by "Moono-lisa" skin since CKEditor 4.6.0),
elected from the CKEditor [skin contest](https://ckeditor.com/blog/CKEditor-4-Skin-Contest-Winner/) and further shaped by
the CKEditor team. "Moono" is maintained by the core developers.

Expand Down

0 comments on commit 497696d

Please sign in to comment.