Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .circleci/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,8 @@ workflows:
branches:
only:
- master
# TODO: Remove when this code lands on #master (see issue https://github.com/ckeditor/ckeditor5-internal/issues/4190).
- master-v48
- stable
- release
- /^release-v.*$/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class DarkModeCKBoxIntegration extends Plugin {
// Load CKBox dark theme.
this._ckboxLinkElement = document.createElement( 'link' );
this._ckboxLinkElement.rel = 'stylesheet';
this._ckboxLinkElement.href = 'https://cdn.ckbox.io/ckbox/latest/styles/themes/dark.css';
this._ckboxLinkElement.href = 'https://cdn.ckbox.io/ckbox/2.9.2/styles/themes/dark.css';

document.head.appendChild( this._ckboxLinkElement );

Expand Down
4 changes: 2 additions & 2 deletions scripts/docs/snippetadapter.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -204,10 +204,10 @@ async function buildDocuments( snippets, paths, constants, imports, getSnippetPl
'<link rel="modulepreload" href="%BASE_PATH%/assets/ckeditor5/ckeditor5.js">',
'<link rel="modulepreload" href="%BASE_PATH%/assets/ckeditor5-premium-features/ckeditor5-premium-features.js">',
'<link rel="preload" href="%BASE_PATH%/assets/global.js" as="script">',
'<link rel="preload" href="https://cdn.ckbox.io/ckbox/latest/ckbox.js" as="script">',
'<link rel="preload" href="https://cdn.ckbox.io/ckbox/2.9.2/ckbox.js" as="script">',
`<script>window.CKEDITOR_GLOBAL_LICENSE_KEY = '${ constants.LICENSE_KEY }';</script>`,
'<script src="%BASE_PATH%/assets/global.js"></script>',
'<script src="https://cdn.ckbox.io/ckbox/latest/ckbox.js"></script>',
'<script src="https://cdn.ckbox.io/ckbox/2.9.2/ckbox.js"></script>',
getLayeredStyles( 'editor', editorStylePaths )
];

Expand Down
6 changes: 6 additions & 0 deletions scripts/release/utils/parsearguments.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,12 @@ export default function parseArguments( cliArguments ) {
options.npmTag = 'alpha';
}

// TODO: Remove when this code lands on #master (see issue https://github.com/ckeditor/ckeditor5-internal/issues/4190).
if ( options.nightlyNext ) {
options.branch = 'master-v48';
options.npmTag = 'nightly-next';
}

if ( options.internal ) {
options.npmTag = 'internal';
}
Expand Down