Folder renamed: bootstrap

This commit is contained in:
nobody 2021-02-02 05:45:35 +01:00
parent 5d68cca01f
commit ae9d3990be
No known key found for this signature in database
GPG Key ID: 8F6DE3D614FCFD7A
11 changed files with 6 additions and 6 deletions

View File

@ -218,15 +218,15 @@ var resources = {
},
// Bootstrap
'bootstrapJS': {
'path': 'resources/bootstrap/{version}/bootstrap.min.jsm',
'path': 'resources/twitter-bootstrap/{version}/bootstrap.min.jsm',
'type': 'application/javascript'
},
'bootstrapCSS': {
'path': 'resources/bootstrap/{version}/bootstrap.min.css',
'path': 'resources/twitter-bootstrap/{version}/bootstrap.min.css',
'type': 'text/css'
},
'bootstrapFontsOnly': {
'path': 'resources/bootstrap/fonts/'
'path': 'resources/twitter-bootstrap/fonts/'
},
// Bootstrap Daterangepicker
'bootstrapDaterangepicker': {

View File

@ -160,7 +160,7 @@ shorthands.specialFiles = function (channelHost, channelPath, searchString) {
} else if (Regex.BOOTSTRAP_FONTS_ONLY.test(channelPath)) {
return {
'source': channelHost,
'path': 'resources/bootstrap/fonts/' + helpers.extractFilenameFromPath(channelPath),
'path': 'resources/twitter-bootstrap/fonts/' + helpers.extractFilenameFromPath(channelPath),
'bundle': 'Bootstrap (Fonts)'
};
} else if (channelHost + channelPath === 'cdn.jsdelivr.net/npm/js-cookie@beta/dist/js.cookie.min.js') {

View File

@ -139,10 +139,10 @@ targets.setLastVersion = function (type, version) {
return '4.4.0';
} else if (type.startsWith('/bootbox.js/5.')) {
return '5.5.2';
} else if (type.startsWith('/bootstrap/3.')) {
} else if (type.startsWith('/twitter-bootstrap/3.')) {
if (helpers.compareVersion('3.3.7', version)) return '3.3.7'; // <= 3.3.7
else return '3.4.1';
} else if (type.startsWith('/bootstrap/4.')) {
} else if (type.startsWith('/twitter-bootstrap/4.')) {
return '4.6.0';
} else if (type.startsWith('/bootstrap-daterangepicker/2.')) {
return '2.1.27';