This commit is contained in:
gorhill 2015-03-26 14:17:30 -04:00
parent e6e456ed7b
commit d83ade9e2c
4 changed files with 14 additions and 3 deletions

View file

@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "uBlock",
"version": "0.9.2.1",
"version": "0.9.2.3",
"default_locale": "en",
"description": "__MSG_extShortDesc__",

View file

@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "uBlock",
"version": "0.9.1.1",
"version": "0.9.2.3",
"default_locale": "en",
"description": "__MSG_extShortDesc__",

View file

@ -88,7 +88,7 @@ return {
// read-only
systemSettings: {
compiledMagic: 'intdliecolot',
compiledMagic: 'kebryedtequi',
selfieMagic: 'spqmeuaftfra'
},

View file

@ -166,6 +166,11 @@ var isFirstParty = function(firstPartyDomain, hostname) {
};
var alwaysTruePseudoRegex = {
match: { '0': '', index: 0 },
exec: function(s) {
this.match['0'] = s;
return this.match;
},
test: function() {
return true;
}
@ -1369,6 +1374,12 @@ FilterParser.prototype.parse = function(raw) {
//console.debug('µBlock.staticNetFilteringEngine/FilterParser.parse():', raw, '=', s);
}
}
// https://github.com/gorhill/uBlock/issues/1096
if ( s.charAt(0) === '^' ) {
this.unsupported = true;
return this;
}
}
// left-anchored