Release v2.9.4.0

This commit is contained in:
magnolia1234 2022-11-20 17:02:21 +01:00
parent f74ab55d18
commit bdf37272b4
4 changed files with 13 additions and 11 deletions

View file

@ -377,7 +377,7 @@ ext_api.storage.local.get({
excludedSites = items.sites_excluded;
enabledSites = Object.values(sites).filter(function (val) {
return (val !== '' && val !== '###');
return (val && val !== '###' && (defaultSites_domains.concat(customSites_domains, updatedSites_domains_new).includes(val)));
}).map(function (val) {
return val.toLowerCase();
});
@ -435,7 +435,7 @@ ext_api.storage.onChanged.addListener(function (changes, namespace) {
var sites = storageChange.newValue;
optionSites = sites;
enabledSites = Object.values(sites).filter(function (val) {
return (val !== '' && val !== '###');
return (val && val !== '###' && (defaultSites_domains.concat(customSites_domains, updatedSites_domains_new).includes(val)));
}).map(function (val) {
return val.toLowerCase();
});

View file

@ -2,6 +2,8 @@
Changelog Bypass Paywalls Clean - Firefox
Post-release
* v2.9.4.0 (2022-11-20)
Add CNBC (Pro text)
Add Etc.se
Add Project Syndicate (link to archive.is)

View file

@ -730,5 +730,5 @@
"*://gcm.omerlocdn.com/*",
"*://webcache.googleusercontent.com/*"
],
"version": "2.9.3.6"
"version": "2.9.4.0"
}

View file

@ -2,8 +2,8 @@
"addons": {
"magnolia@12.34": {
"updates": [
{ "version": "2.9.3.0",
"update_link": "https://gitlab.com/magnolia1234/bpc-uploads/-/raw/master/bypass_paywalls_clean-2.9.3.0.xpi" }
{ "version": "2.9.4.0",
"update_link": "https://gitlab.com/magnolia1234/bpc-uploads/-/raw/master/bypass_paywalls_clean-2.9.4.0.xpi" }
]
}
}