1
0
mirror of https://codeberg.org/nobody/LocalCDN.git synced 2025-06-05 21:49:31 +02:00

Added Findify v6.9.15 and detection of framework-bundles

This commit is contained in:
nobody42
2020-03-24 08:03:08 +01:00
parent 7007aee18a
commit 447c6d2c97
26 changed files with 3869 additions and 5 deletions

View File

@ -245,6 +245,14 @@ helpers.determineResourceName = function (filename) {
}
};
helpers.determineBundle = function (path = '') {
if (path.includes('findify')) {
return 'Findify';
} else {
return '';
}
};
helpers.determineScriptDirection = function (language) {
let rightToLeftLanguages, scriptDirection;
@ -308,6 +316,8 @@ helpers.setLastVersion = function (type, versionNumber) {
version = '3.12.3';
} else if (type.includes('/ext-core/3.')) {
version = '3.1.0';
} else if (type.includes('findify')) {
version = '6.9.15';
} else if (type.includes('/fontawesome/4.')) {
version = '4.7.0';
} else if (type.includes('/fontawesome/5.')) {