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

Commit

Permalink
new revision
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Jan 19, 2015
1 parent 9593dc3 commit 5ee417e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 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": "µBlock",
"version": "0.8.5.6",
"version": "0.8.5.7",

"default_locale": "en",
"description": "__MSG_extShortDesc__",
Expand Down
2 changes: 1 addition & 1 deletion platform/firefox/vapi-background.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ vAPI.firefox = true;
// TODO: read these data from somewhere...
vAPI.app = {
name: 'µBlock',
version: '0.8.5.6'
version: '0.8.5.7'
};

/******************************************************************************/
Expand Down
2 changes: 1 addition & 1 deletion platform/safari/Update.plist
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<key>CFBundleVersion</key>
<string>{buildNumber}</string>
<key>URL</key>
<string>https://chrismatic.io/ublock/ublock-0.8.5.6.safariextz</string>
<string>https://chrismatic.io/ublock/ublock-0.8.5.7.safariextz</string>
</dict>
</array>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion src/js/storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@
// https://github.com/gorhill/uBlock/issues/540
// Disabling local mirroring for the time being
userSettings.experimentalEnabled = false;
µb.mirrors.toggle(userSettings.experimentalEnabled);
µb.mirrors.toggle(false /* userSettings.experimentalEnabled */);

µb.contextMenu.toggle(userSettings.contextMenuEnabled);
µb.dynamicNetFilteringEngine.fromString(userSettings.dynamicFilteringString);
Expand Down
4 changes: 2 additions & 2 deletions src/js/traffic.js
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ var onHeadersReceived = function(details) {
// https://github.com/gorhill/uBlock/issues/540
// Disabling local mirroring for the time being
//if ( details.parentFrameId === -1 ) {
// pageStore.skipLocalMirroring = headerStartWith(details.responseHeaders, 'content-security-policy') !== '';
// pageStore.skipLocalMirroring = headerStartsWith(details.responseHeaders, 'content-security-policy') !== '';
//}

var requestURL = details.url;
Expand Down Expand Up @@ -324,7 +324,7 @@ var headerValue = function(headers, name) {

/******************************************************************************/

var headerStartWith = function(headers, prefix) {
var headerStartsWith = function(headers, prefix) {
var prefixLen = prefix.length;
var i = headers.length;
while ( i-- ) {
Expand Down

0 comments on commit 5ee417e

Please sign in to comment.