Skip to content

Commit 796e66e

Browse files
committed
v0.46.53.2
Fixed silly mistake.
1 parent 946c51f commit 796e66e

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

changelog.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
v0.46.53.1 - Thursday, May 5, 2016
2-
- v0.46.53.1 = tweaked Paranoid Mode to Cloak behaviour, fixed page favicon and page titles toggling, and hotkey changes now take effect immediately
1+
v0.46.53.2 - Thursday, May 5, 2016
2+
- v0.46.53.2 = tweaked Paranoid Mode to Cloak behaviour, fixed page favicon and page titles toggling, and hotkey changes now take effect immediately
33
- updated core DP cloaking functions so that DP Option setting changes and the Paranoid Hotkey toggle take effect immediately (without temporarily uncloaking and recloaking open tabs)
44
- optimized number of calls when cloaking a page (from 3 to 1)
55
- tweaked page favicon cloaking to be instant

js/background.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ function magician(enable, tabId) {
222222
else if (localStorage["disableFavicons"] == 'true' && localStorage["hidePageTitles"] != 'true')
223223
chrome.tabs.executeScript(tabId, {code: 'init();faviconblank();titleRestore();', allFrames: true});
224224
else if (localStorage["disableFavicons"] != 'true' && localStorage["hidePageTitles"] == 'true')
225-
chrome.tabs.executeScript(tabId, {code: 'init();faviconrestore();replaceTitle("'+localStorage["pageTitleText"]+'");localStorage["pageTitleText"]("'+titleText+'");', allFrames: true});
225+
chrome.tabs.executeScript(tabId, {code: 'init();faviconrestore();replaceTitle("'+localStorage["pageTitleText"]+'");titleBind("'+localStorage["pageTitleText"]+'");', allFrames: true});
226226
else if (localStorage["disableFavicons"] != 'true' && localStorage["hidePageTitles"] != 'true')
227227
chrome.tabs.executeScript(tabId, {code: 'init();faviconrestore();titleRestore();', allFrames: true});
228228
} else {

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
},
2828
"permissions": [ "http://*/*", "https://*/*", "contextMenus", "tabs" ],
2929
"update_url": "http://clients2.google.com/service/update2/crx",
30-
"version": "0.46.53.1"
30+
"version": "0.46.53.2"
3131
}

updated.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
<body id="updatepage">
88
<span id="title">Decreased Productivity</span> by Andrew Y.<br /><br />
99
<div id="main">
10-
<h1>Updated to v0.46.53.1! (Thursday, May 5, 2016)</h1>
10+
<h1>Updated to v0.46.53.2! (Thursday, May 5, 2016)</h1>
1111
<ul>
12-
<li>v0.46.53.1:<ul>
13-
<li>v0.46.53.1 = tweaked Paranoid Mode to Cloak behaviour, fixed page favicon and page titles toggling, and hotkey changes now take effect immediately</li>
12+
<li>v0.46.53.2:<ul>
13+
<li>v0.46.53.2 = tweaked Paranoid Mode to Cloak behaviour, fixed page favicon and page titles toggling, and hotkey changes now take effect immediately</li>
1414
<li>updated core DP cloaking functions so that DP Option setting changes and the Paranoid Hotkey toggle take effect immediately (without temporarily uncloaking and recloaking open tabs)</li>
1515
<li>optimized number of calls when cloaking a page (from potentially up to 3 down to just 1)</li>
1616
<li>tweaked page favicon cloaking so it is now instant</li>

0 commit comments

Comments
 (0)