Pier Angelo Vendrame pushed to branch tor-browser-102.7.0esr-12.5-1 at The Tor Project / Applications / Tor Browser
Commits: 56584b5d by Pier Angelo Vendrame at 2023-01-23T19:32:07+01:00 fixup! Bug 4234: Use the Firefox Update Process for Tor Browser.
Bug 41540: Do not show the build ID for alphas
- - - - -
1 changed file:
- browser/components/preferences/main.js
Changes:
===================================== browser/components/preferences/main.js ===================================== @@ -556,14 +556,8 @@ var gMainPane = { // Initialize the Firefox Updates section. let version = AppConstants.TOR_BROWSER_VERSION;
- // Include the build ID if this is an "a#" (nightly) build - if (/a\d+$/.test(version)) { - let buildID = Services.appinfo.appBuildID; - let year = buildID.slice(0, 4); - let month = buildID.slice(4, 6); - let day = buildID.slice(6, 8); - version += ` (${year}-${month}-${day})`; - } + // Tor Browser: do not include the build ID in our alphas, since they are + // not actually related to the build date.
// Append "(32-bit)" or "(64-bit)" build architecture to the version number: let bundle = Services.strings.createBundle(
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/56584b5d...