Added: embedly player v0.1.0 (#431)

This commit is contained in:
nobody 2021-05-01 06:23:14 +02:00
parent 94e3ec30f2
commit 741bcd3054
No known key found for this signature in database
GPG Key ID: 8F6DE3D614FCFD7A
7 changed files with 20 additions and 1 deletions

View File

@ -1,5 +1,6 @@
https://ajax.cloudflare.com/cdn-cgi/scripts/04b3eb47/cloudflare-static/mirage2.min.js https://ajax.cloudflare.com/cdn-cgi/scripts/04b3eb47/cloudflare-static/mirage2.min.js
https://ajax.cloudflare.com/cdn-cgi/scripts/7089c43e/cloudflare-static/rocket-loader.min.js https://ajax.cloudflare.com/cdn-cgi/scripts/7089c43e/cloudflare-static/rocket-loader.min.js
https://cdn.embed.ly/player-0.1.0.min.js
https://cdnjs.cloudflare.com/ajax/libs/ajax-bootstrap-select/1.4.5/js/ajax-bootstrap-select.min.js https://cdnjs.cloudflare.com/ajax/libs/ajax-bootstrap-select/1.4.5/js/ajax-bootstrap-select.min.js
https://cdnjs.cloudflare.com/ajax/libs/algoliasearch/3.35.1/algoliasearch.min.js https://cdnjs.cloudflare.com/ajax/libs/algoliasearch/3.35.1/algoliasearch.min.js
https://cdnjs.cloudflare.com/ajax/libs/algoliasearch/4.9.0/algoliasearch.umd.min.js https://cdnjs.cloudflare.com/ajax/libs/algoliasearch/4.9.0/algoliasearch.umd.min.js

View File

@ -75,6 +75,7 @@ readonly CLOUDFLARE_AJAX="https://ajax.cloudflare.com/cdn-cgi/scripts"
readonly JSDELIVR="https://cdn.jsdelivr.net" readonly JSDELIVR="https://cdn.jsdelivr.net"
readonly NETDNA_BOOTSTRAPCDN="https://netdna.bootstrapcdn.com" readonly NETDNA_BOOTSTRAPCDN="https://netdna.bootstrapcdn.com"
readonly GITHUB="https://raw.githubusercontent.com" readonly GITHUB="https://raw.githubusercontent.com"
readonly EMBEDLY="https://cdn.embed.ly"
# ============================================================================= # =============================================================================
@ -596,6 +597,8 @@ function create_url() {
url="$JSDELIVR/npm/appboy-web-sdk@$version/$subfile" url="$JSDELIVR/npm/appboy-web-sdk@$version/$subfile"
elif [ "$folder" = "ngx-bootstrap" ]; then elif [ "$folder" = "ngx-bootstrap" ]; then
url="$JSDELIVR/npm/ngx-bootstrap@$version/$file/$subfile" url="$JSDELIVR/npm/ngx-bootstrap@$version/$file/$subfile"
elif [ "$folder" = "embedly-player" ]; then
url="$EMBEDLY/player-$version.min.js"
else else
if [ "$subfile" = "$jfile" ]; then if [ "$subfile" = "$jfile" ]; then
url="$CLOUDFLARE/$folder/$version/$subfile" url="$CLOUDFLARE/$folder/$version/$subfile"

View File

@ -30,7 +30,7 @@ var mappings = {};
* This only needs to be updated when new domains are added. * This only needs to be updated when new domains are added.
* It's not necessary for subdirectories! * It's not necessary for subdirectories!
*/ */
mappings.lastMappingUpdate = '2021-04-24'; mappings.lastMappingUpdate = '2021-05-01';
mappings.cdn = { mappings.cdn = {
@ -998,6 +998,12 @@ mappings.cdn = {
'/': { '/': {
'web-sdk/{version}/appboy.': resources.appboyWebSdk 'web-sdk/{version}/appboy.': resources.appboyWebSdk
} }
},
// embedly
'cdn.embed.ly': {
'/': {
'player-{version}.min.js': resources.embedlyPlayer
}
} }
}; };

View File

@ -320,6 +320,10 @@ var resources = {
'elementUI': { 'elementUI': {
'path': 'resources/element-ui/{version}/' 'path': 'resources/element-ui/{version}/'
}, },
// embedly player
'embedlyPlayer': {
'path': 'resources/embedly-player/{version}/embedly-player.min.jsm'
},
// Ember.js // Ember.js
'ember': { 'ember': {
'path': 'resources/ember.js/{version}/ember.min.jsm' 'path': 'resources/ember.js/{version}/ember.min.jsm'

View File

@ -244,6 +244,8 @@ targets.setLastVersion = function (type, version) {
return '3.2.2'; return '3.2.2';
} else if (type.startsWith('/element-ui/2.')) { } else if (type.startsWith('/element-ui/2.')) {
return '2.15.1'; return '2.15.1';
} else if (type.startsWith('/embedly-player/0.')) {
return '0.1.0';
} else if (type.startsWith('/ember.js/1.')) { } else if (type.startsWith('/ember.js/1.')) {
return '1.13.13'; return '1.13.13';
} else if (type.startsWith('/ember.js/2.')) { } else if (type.startsWith('/ember.js/2.')) {
@ -588,6 +590,7 @@ targets.determineResourceName = function (filename) {
}; };
const ListOfFiles = { const ListOfFiles = {
'embedly-player.min.jsm': 'embedly player',
'bs-datepicker.css': 'Datepicker (ngx-bootstrap)', 'bs-datepicker.css': 'Datepicker (ngx-bootstrap)',
'sp.min.jsm': 'Snowplow', 'sp.min.jsm': 'Snowplow',
'appboy.min.jsm': 'Appboy/Braze Web SDK', 'appboy.min.jsm': 'Appboy/Braze Web SDK',

View File

@ -32,6 +32,7 @@
<li>Mapping: jquery-migrate -> code.jquery.com</li> <li>Mapping: jquery-migrate -> code.jquery.com</li>
<li>Fixed: videojs-seek-buttons without version number (<a href="https://codeberg.org/nobody/LocalCDN/issues/390">#390</a>)</li> <li>Fixed: videojs-seek-buttons without version number (<a href="https://codeberg.org/nobody/LocalCDN/issues/390">#390</a>)</li>
<li>Added: Datepicker (ngx-bootstrap) v6.2.0 (<a href="https://codeberg.org/nobody/LocalCDN/issues/430">#430</a>)</li> <li>Added: Datepicker (ngx-bootstrap) v6.2.0 (<a href="https://codeberg.org/nobody/LocalCDN/issues/430">#430</a>)</li>
<li>Added: embedly player v0.1.0 (<a href="https://codeberg.org/nobody/LocalCDN/issues/431">#431</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