mirror of
https://codeberg.org/nobody/LocalCDN.git
synced 2025-02-17 04:10:53 +01:00
Bootstrap: Redirect alpha and beta versions to the stable version (#1265)
This commit is contained in:
parent
6ecbcf1007
commit
24dd4ea41a
@ -271,7 +271,8 @@ const Regex = {
|
|||||||
'FONT_AWESOME_WITH_CODE': /use\.fontawesome\.com\/[a-z0-9]{10}\.(js|css)/,
|
'FONT_AWESOME_WITH_CODE': /use\.fontawesome\.com\/[a-z0-9]{10}\.(js|css)/,
|
||||||
'FONT_AWESOME_FONTS_ONLY': /\/font-?awesome\/(?:\d{1,2}\.){1,3}\d{1,2}\/fonts\//,
|
'FONT_AWESOME_FONTS_ONLY': /\/font-?awesome\/(?:\d{1,2}\.){1,3}\d{1,2}\/fonts\//,
|
||||||
'BOOTSTRAP_FONTS_ONLY': /\/bootstrap\/(?:\d{1,2}\.){1,3}\d{1,2}\/fonts\//,
|
'BOOTSTRAP_FONTS_ONLY': /\/bootstrap\/(?:\d{1,2}\.){1,3}\d{1,2}\/fonts\//,
|
||||||
'ROCKET_LOADER': /ajax\.cloudflare\.com\/cdn-cgi\/scripts\/[a-zA-Z0-9]{8}\/cloudflare-static\/rocket-loader\.min\.js/
|
'ROCKET_LOADER': /ajax\.cloudflare\.com\/cdn-cgi\/scripts\/[a-zA-Z0-9]{8}\/cloudflare-static\/rocket-loader\.min\.js/,
|
||||||
|
'TWITTER_BOOTSTRAP_ALPHA_BETA': /-(alpha|beta).?\d?/,
|
||||||
};
|
};
|
||||||
|
|
||||||
const MaterialIcons = {
|
const MaterialIcons = {
|
||||||
|
@ -145,6 +145,9 @@ requestAnalyzer._findLocalTarget = function (resourceMappings, basePath, channel
|
|||||||
let resourcePath, versionNumber, resourcePattern, shorthandResource;
|
let resourcePath, versionNumber, resourcePattern, shorthandResource;
|
||||||
|
|
||||||
resourcePath = channelPath.replace(basePath, '');
|
resourcePath = channelPath.replace(basePath, '');
|
||||||
|
if (resourcePath.startsWith('bootstrap')) {
|
||||||
|
resourcePath = resourcePath.replace(Regex.TWITTER_BOOTSTRAP_ALPHA_BETA, '');
|
||||||
|
}
|
||||||
|
|
||||||
// Evaluate first in case of version 'latest' and numerals in resource
|
// Evaluate first in case of version 'latest' and numerals in resource
|
||||||
versionNumber = resourcePath.match(Resource.VERSION_EXPRESSION);
|
versionNumber = resourcePath.match(Resource.VERSION_EXPRESSION);
|
||||||
|
@ -46,6 +46,7 @@
|
|||||||
<p>Improved</p>
|
<p>Improved</p>
|
||||||
<ul>
|
<ul>
|
||||||
<li>HTML filter active by default (<a href="https://codeberg.org/nobody/LocalCDN/issues/1249">#1249</a>)</li>
|
<li>HTML filter active by default (<a href="https://codeberg.org/nobody/LocalCDN/issues/1249">#1249</a>)</li>
|
||||||
|
<li>Bootstrap: Redirect alpha and beta versions to the stable version (<a href="https://codeberg.org/nobody/LocalCDN/issues/1265">#1265</a>)</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div id="generator-section">
|
<div id="generator-section">
|
||||||
|
Loading…
x
Reference in New Issue
Block a user