commit 9ec2b75e1639153f064fd751506f86e52979d180 Author: Kathy Brade brade@pearlcrescent.com Date: Tue Aug 28 12:12:42 2018 -0400
squash! Bug 4234: Use the Firefox Update Process for Tor Browser.
Also fix Bug 26049: reduce the delay before the update prompt is displayed. Instead of Firefox's 2 days, we use 1 hour (after which time the update doorhanger will be displayed). --- browser/branding/official/pref/firefox-branding.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/browser/branding/official/pref/firefox-branding.js b/browser/branding/official/pref/firefox-branding.js index c53fe7202788..682da69ffce8 100644 --- a/browser/branding/official/pref/firefox-branding.js +++ b/browser/branding/official/pref/firefox-branding.js @@ -11,8 +11,8 @@ pref("app.update.interval", 43200); // 12 hours // background (in seconds) // 0 means "download everything at once" pref("app.update.download.backgroundInterval", 0); -// Give the user x seconds to react before showing the big UI. default=48 hours -pref("app.update.promptWaitTime", 172800); +// Give the user x seconds to react before showing the big UI. default=1 hour +pref("app.update.promptWaitTime", 3600); // app.update.url.manual: URL user can browse to manually if for some reason // all update installation attempts fail. // app.update.url.details: a default value for the "More information about this
tor-commits@lists.torproject.org