Skip to content

Commit

Permalink
new revision + fixed frame parent id
Browse files Browse the repository at this point in the history
  • Loading branch information
gorhill committed Jan 17, 2015
1 parent df69e22 commit ab99683
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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.5",
"version": "0.8.5.6",

"default_locale": "en",
"description": "__MSG_extShortDesc__",
Expand Down
4 changes: 2 additions & 2 deletions 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.5'
version: '0.8.5.6'
};

/******************************************************************************/
Expand Down Expand Up @@ -945,7 +945,7 @@ var httpObserver = {
result = vAPI.net.onHeadersReceived.callback({
url: URI.asciiSpec,
tabId: channelData[1],
parentFrameId: -1,
parentFrameId: channelData[0] === this.MAIN_FRAME ? -1 : 0,
responseHeaders: result ? [{name: topic, value: result}] : []
});

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.5.safariextz</string>
<string>https://chrismatic.io/ublock/ublock-0.8.5.6.safariextz</string>
</dict>
</array>
</dict>
Expand Down

0 comments on commit ab99683

Please sign in to comment.