From 39cc2c4ac102d3df1af9a1a57d3e830954e730f0 Mon Sep 17 00:00:00 2001 From: nobody42 <5514211-nobody42@users.noreply.gitlab.com> Date: Tue, 31 Mar 2020 08:12:33 +0200 Subject: [PATCH] Fixed #26 --- core/files.js | 4 +++- core/resources.js | 2 +- manifest.json | 2 +- pages/updates/updates.html | 1 + resources/plyr/3.5.10/{plyr.min.cssm => plyr.min.css} | 0 5 files changed, 6 insertions(+), 3 deletions(-) rename resources/plyr/3.5.10/{plyr.min.cssm => plyr.min.css} (100%) diff --git a/core/files.js b/core/files.js index 47aebb9b..3543087d 100644 --- a/core/files.js +++ b/core/files.js @@ -129,7 +129,9 @@ var files = { 'resources/p2p-media-loader-core/0.6.2/p2p-media-loader-core.min.jsm': true, // plyr CSS - 'resources/plyr/3.5.10/plyr.min.cssm': true, + // CSS cannot be loaded with the file extension .cssm (as shown on www.bitchute.com) + // Please do not change it. + 'resources/plyr/3.5.10/plyr.min.css': true, // Prototype 'resources/prototype/1.7.3.0/prototype.jsm': true, diff --git a/core/resources.js b/core/resources.js index 7f860499..ec069b44 100644 --- a/core/resources.js +++ b/core/resources.js @@ -187,7 +187,7 @@ var resources = { }, // plyr CSS 'plyrCSS': { - 'path': 'resources/plyr/{version}/plyr.min.cssm', + 'path': 'resources/plyr/{version}/plyr.min.css', 'type': 'text/css' }, // Prototype diff --git a/manifest.json b/manifest.json index dcf281c0..231e8245 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "LocalCDN (fork from Decentraleyes)", - "version": "2.1.9", + "version": "2.1.10", "browser_specific_settings": { "gecko": { "id": "{b86e4813-687a-43e6-ab65-0bde4ab75758}", diff --git a/pages/updates/updates.html b/pages/updates/updates.html index 4df0bb38..b0fb5f7d 100644 --- a/pages/updates/updates.html +++ b/pages/updates/updates.html @@ -24,6 +24,7 @@
Please update your uBlock/uMatrix rules diff --git a/resources/plyr/3.5.10/plyr.min.cssm b/resources/plyr/3.5.10/plyr.min.css similarity index 100% rename from resources/plyr/3.5.10/plyr.min.cssm rename to resources/plyr/3.5.10/plyr.min.css