Added Tether v1.4.7 (#77)

This commit is contained in:
nobody42 2020-05-16 17:39:26 +02:00
parent dbdb5ff138
commit ffc4095d7f
No known key found for this signature in database
GPG Key ID: AB5145CF05BFE119
6 changed files with 15 additions and 0 deletions

View File

@ -317,6 +317,9 @@ var files = {
// SWFObject
'resources/swfobject/2.2/swfobject.jsm': true,
// Tether JS
'resources/tether/1.4.7/js/tether.min.jsm': true,
// toastr.js
'resources/toastr.js/2.1.4/toastr.min.css': true,
'resources/toastr.js/2.1.4/toastr.min.jsm': true,

View File

@ -157,6 +157,7 @@ var mappings = {
'spin.js/{version}/spin.min.js': resources.spinJS,
'socket.io/{version}/socket.io.': resources.socketIO,
'swfobject/{version}/swfobject.': resources.swfobject,
'tether/{version}/js/tether.': resources.tetherJS,
'toastr.js/{version}/toastr.min.css': resources.toastrCSS,
'toastr.js/{version}/toastr.min.js': resources.toastrJS,
'twitter-bootstrap/{version}/js/bootstrap.min.js': resources.twitterBootstrapJS,

View File

@ -430,6 +430,11 @@ var resources = {
'path': 'resources/swfobject/{version}/swfobject.jsm',
'type': 'application/javascript'
},
// Tether JS
'tetherJS': {
'path': 'resources/tether/{version}/js/tether.min.jsm',
'type': 'application/javascript'
},
// Twitter Bootstrap JS
'twitterBootstrapJS': {
'path': 'resources/twitter-bootstrap/{version}/js/bootstrap.min.jsm',

View File

@ -374,6 +374,8 @@ helpers.determineResourceName = function (filename) {
return 'Store.js';
case 'swfobject.jsm':
return 'SWFObject';
case 'tether.min.jsm':
return 'Tether JS';
case 'toastr.min.css':
return 'toastr.js';
case 'toastr.min.jsm':
@ -607,6 +609,8 @@ helpers.setLastVersion = function (type, version) {
version = '2.0.4';
} else if (type.includes('/swfobject/2.')) {
version = '2.2';
} else if (type.includes('/tether/1.')) {
version = '1.4.7';
} else if (type.includes('/twitter-bootstrap/4.')) {
version = '4.5.0';
} else if (type.includes('/twitter-bootstrap/3.')) {

View File

@ -25,6 +25,7 @@
<li>Fixed: Encoding problem with some websites (maybe only temporary, because at the moment only 9 websites are affected)</li>
<li>Added: Twitter Bootstrap JS and CSS v4.5.0</li>
<li>Added: Material Design for Bootstrap (MDB) v4.18.0</li>
<li>Added: Tether v1.4.7</li>
</ul>
</div>
<ul>

File diff suppressed because one or more lines are too long