commit e99a53f4fa96ce4525114403580f3a7194360de5
Author: Mike Perry <mikeperry-git(a)torproject.org>
Date: Mon Jul 13 13:19:47 2015 -0700
Bug 16316: Fix New Tiles pref bustage.
This allows us to set the newtiles pref to 'classic' mode for the default
value.
---
browser/modules/DirectoryLinksProvider.jsm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/browser/modules/DirectoryLinksProvider.jsm b/browser/modules/DirectoryLinksProvider.jsm
index …
[View More]9385c09..3f31b28 100644
--- a/browser/modules/DirectoryLinksProvider.jsm
+++ b/browser/modules/DirectoryLinksProvider.jsm
@@ -139,7 +139,7 @@ let DirectoryLinksProvider = {
* Set appropriate default ping behavior controlled by enhanced pref
*/
_setDefaultEnhanced: function DirectoryLinksProvider_setDefaultEnhanced() {
- if (!Services.prefs.prefHasUserValue(PREF_NEWTAB_ENHANCED)) {
+ if (Services.prefs.getBoolPref(PREF_NEWTAB_ENHANCED)) {
let enhanced = true;
try {
// Default to not enhanced if DNT is set to tell websites to not track
[View Less]
commit 6cbec232b21da38599438cdb32d865161faf7384
Author: Georg Koppen <gk(a)torproject.org>
Date: Wed Jul 1 19:50:55 2015 +0000
Add debug output to authenticode_check script
---
tools/authenticode_check.sh | 1 +
1 file changed, 1 insertion(+)
diff --git a/tools/authenticode_check.sh b/tools/authenticode_check.sh
index 86472ae..646fdce 100755
--- a/tools/authenticode_check.sh
+++ b/tools/authenticode_check.sh
@@ -71,6 +71,7 @@ for f in `ls *.exe`; do
cd tmp
if ! [ "$…
[View More]SHA256_TXT" = "`sha256sum $f`" ]
then
+ echo "$f does not have the SHA 256 sum of the unsigned bundle!"
BADSIGNED_BUNDLES=`expr $BADSIGNED_BUNDLES + 1`
fi
cd ..
[View Less]