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

Added: jQuery v1.11.3 (#178)

This commit is contained in:
nobody
2020-11-18 06:19:07 +01:00
parent 3df3b5f3a9
commit d74c23ab59
3 changed files with 9 additions and 3 deletions

View File

@@ -226,9 +226,8 @@ targets.setLastVersion = function (type, version) {
} else if (type.startsWith('/jquery/1.')) { } else if (type.startsWith('/jquery/1.')) {
if (helpers.compareVersion('1.7.1', version)) return '1.7.1'; // <= v1.7.1 if (helpers.compareVersion('1.7.1', version)) return '1.7.1'; // <= v1.7.1
else if (helpers.compareVersion('1.8.3', version)) return '1.8.3'; // > 1.7.1 to <= 1.8.3 else if (helpers.compareVersion('1.8.3', version)) return '1.8.3'; // > 1.7.1 to <= 1.8.3
else return '1.12.4'; // >= 1.8.4 else if (helpers.compareVersion('1.11.3', version)) return '1.11.3'; // > 1.8.3 to <= 1.11.3
} else if (type.startsWith('/jquery/1.8.')) { else return '1.12.4'; // > 1.11.3
return '1.8.3';
} else if (type.startsWith('/jquery/2.')) { } else if (type.startsWith('/jquery/2.')) {
return '2.2.4'; return '2.2.4';
} else if (type.startsWith('/jquery/3.') || type.startsWith('/jquery/null')) { } else if (type.startsWith('/jquery/3.') || type.startsWith('/jquery/null')) {

View File

@@ -30,6 +30,7 @@
<li>Updated: Ember.js v3.12.3 -> v3.23.0</li> <li>Updated: Ember.js v3.12.3 -> v3.23.0</li>
<li>Updated: instantsearch.js v4.8.5 -> v4.8.6</li> <li>Updated: instantsearch.js v4.8.5 -> v4.8.6</li>
<li>Updated: Socket.io v3.0.1 -> v3.0.2</li> <li>Updated: Socket.io v3.0.1 -> v3.0.2</li>
<li>Added: jQuery v1.11.3 (<a href="https://codeberg.org/nobody/LocalCDN/issues/178">#178</a>)</li>
</ul> </ul>
<div id="generator-section"> <div id="generator-section">
<div class="topic-label"> <div class="topic-label">

File diff suppressed because one or more lines are too long