This is an automated email from the git hooks/post-receive script.
richard pushed a commit to branch tor-browser-91.8.0esr-11.5-1 in repository tor-browser.
The following commit(s) were added to refs/heads/tor-browser-91.8.0esr-11.5-1 by this push: new 12ee30c3012e7 fixup! Bug 40562: Added Tor-related preferences to 000-tor-browser.js 12ee30c3012e7 is described below
commit 12ee30c3012e762285dfd71c8eeca47377547435 Author: Richard Pospesel richard@torproject.org AuthorDate: Thu Mar 24 21:17:21 2022 +0000
fixup! Bug 40562: Added Tor-related preferences to 000-tor-browser.js
Bug 21484: Remove or hide "What's New" link from About dialog --- browser/app/profile/000-tor-browser.js | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js index ea01ee4307c71..486d9f939234d 100644 --- a/browser/app/profile/000-tor-browser.js +++ b/browser/app/profile/000-tor-browser.js @@ -27,6 +27,12 @@ pref("app.update.url.manual", "https://www.torproject.org/download/languages/"); pref("app.update.url.details", "https://www.torproject.org/download/"); pref("app.update.badgeWaitTime", 0); pref("app.releaseNotesURL", "about:blank"); +// disables the 'What's New?' link in the about dialog, otherwise we need to +// duplicate logic for generating the url to the blog post that is already more +// easily found in about:tor +pref("app.releaseNotesURL.aboutDialog", "about:blank"); +// point to our feedback url rather than Mozilla's +pref("app.feedback.baseURL", "https://support.torproject.org/%LOCALE%/get-in-touch/");
#ifndef XP_MACOSX // Disable staged updates on platforms other than macOS.
tor-commits@lists.torproject.org