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

Commit

Permalink
Merge branch 'v0.9.5.3'
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
uBlockAdmin committed Apr 19, 2019
2 parents b295c0c + 6aa7039 commit 90ac9d5
Show file tree
Hide file tree
Showing 9 changed files with 670 additions and 528 deletions.
2 changes: 1 addition & 1 deletion platform/chromium/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,

"name": "uBlock",
"version": "0.9.5.14",
"version": "0.9.5.15",

"default_locale": "en",
"description": "__MSG_extShortDesc__",
Expand Down
7 changes: 3 additions & 4 deletions src/js/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ return {

// read-only
systemSettings: {
compiledMagic: 'eopszukpsabe',
selfieMagic: 'menhiasrsabe'
compiledMagic: 'eopszukpsddd',
selfieMagic: 'menhiasrsddd'
},
restoreBackupSettings: {
lastRestoreFile: '',
Expand Down Expand Up @@ -147,8 +147,7 @@ return {

// so that I don't have to care for last comma
dummy: 0,
turnOffAA: true,
versionUpdateTo13: false
turnOffAA: true
};

/******************************************************************************/
Expand Down
4 changes: 2 additions & 2 deletions src/js/contentscript-end.js
Original file line number Diff line number Diff line change
Expand Up @@ -1306,8 +1306,8 @@ var uBlockCollapser = (function() {
} else {
var localMessager = vAPI.messaging.channel('contentscript-start.js');
var proceduresHandler = function(details) {
if(details.procedureHide.length > 0) {
vAPI.hideProcedureFilters = details.procedureHide;
if(details.length > 0) {
vAPI.hideProcedureFilters = details;
vAPI.proceduralCosmeticFiltering.applyPatterns(vAPI.hideProcedureFilters);
}
localMessager.close();
Expand Down
Loading

0 comments on commit 90ac9d5

Please sign in to comment.