1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-08 12:57:57 +02:00
This commit is contained in:
gorhill 2015-02-28 10:00:12 -05:00
parent f9eb8de0a0
commit 7ad472e75d
3 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "µBlock",
"version": "0.8.9.0",
"version": "0.8.9.1",
"default_locale": "en",
"description": "__MSG_extShortDesc__",

View File

@ -85,7 +85,7 @@ return {
// read-only
systemSettings: {
compiledMagic: 'riimnrvxjchy',
compiledMagic: 'iolkecdtfsiy',
selfieMagic: 'spqmeuaftfra'
},

View File

@ -749,7 +749,7 @@ FilterSingleWildcardLeftAnchored.compile = function(details) {
var s = details.f;
var pos = s.indexOf('*');
return s.slice(0, pos) + '\t' +
s.slice(pos + 1) + '\t';
s.slice(pos + 1);
};
FilterSingleWildcardLeftAnchored.fromSelfie = function(s) {
@ -823,7 +823,7 @@ FilterSingleWildcardRightAnchored.compile = function(details) {
var s = details.f;
var pos = s.indexOf('*');
return s.slice(0, pos) + '\t' +
s.slice(pos + 1) + '\t';
s.slice(pos + 1);
};
FilterSingleWildcardRightAnchored.fromSelfie = function(s) {