Skip to content
This repository was archived by the owner on Sep 9, 2022. It is now read-only.

Commit 90ac9d5

Browse files
committed
Merge branch 'v0.9.5.3'
* v0.9.5.3: - Converted string-based processing into typed array-based processing of blocking by domain name rule and domains listed for $domain option in blocking rules - Removed support for $rewrite option Convert string-based processing into typed array-based processing of element hiding specific filters only
2 parents b295c0c + 6aa7039 commit 90ac9d5

File tree

9 files changed

+670
-528
lines changed

9 files changed

+670
-528
lines changed

platform/chromium/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33

44
"name": "uBlock",
5-
"version": "0.9.5.14",
5+
"version": "0.9.5.15",
66

77
"default_locale": "en",
88
"description": "__MSG_extShortDesc__",

src/js/background.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ return {
9191

9292
// read-only
9393
systemSettings: {
94-
compiledMagic: 'eopszukpsabe',
95-
selfieMagic: 'menhiasrsabe'
94+
compiledMagic: 'eopszukpsddd',
95+
selfieMagic: 'menhiasrsddd'
9696
},
9797
restoreBackupSettings: {
9898
lastRestoreFile: '',
@@ -147,8 +147,7 @@ return {
147147

148148
// so that I don't have to care for last comma
149149
dummy: 0,
150-
turnOffAA: true,
151-
versionUpdateTo13: false
150+
turnOffAA: true
152151
};
153152

154153
/******************************************************************************/

src/js/contentscript-end.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1306,8 +1306,8 @@ var uBlockCollapser = (function() {
13061306
} else {
13071307
var localMessager = vAPI.messaging.channel('contentscript-start.js');
13081308
var proceduresHandler = function(details) {
1309-
if(details.procedureHide.length > 0) {
1310-
vAPI.hideProcedureFilters = details.procedureHide;
1309+
if(details.length > 0) {
1310+
vAPI.hideProcedureFilters = details;
13111311
vAPI.proceduralCosmeticFiltering.applyPatterns(vAPI.hideProcedureFilters);
13121312
}
13131313
localMessager.close();

0 commit comments

Comments
 (0)