Pier Angelo Vendrame pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
bbeec728 by Henry Wilkes at 2024-08-07T12:06:58+01:00
fixup! Add CI for Tor Browser
Bug 42759: Remove localization file names that were removed in 13.5.
- - - - -
1 changed file:
- .gitlab/ci/update-translations.yml
Changes:
=====================================
.gitlab/ci/update-translations.yml
=====================================
@@ -18,22 +18,14 @@ combine-en-US-translations:
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
TRANSLATION_FILES: '
tor-browser:tor-browser.ftl
- tor-browser:aboutDialog.dtd
tor-browser:aboutTBUpdate.dtd
- tor-browser:aboutTor.dtd
tor-browser:torbutton.dtd
- tor-browser:browserOnboarding.properties
- tor-browser:cryptoSafetyPrompt.properties
- tor-browser:onboarding.properties
tor-browser:onionLocation.properties
- tor-browser:rulesets.properties
tor-browser:settings.properties
tor-browser:torbutton.properties
tor-browser:torConnect.properties
tor-browser:torlauncher.properties
base-browser:base-browser.ftl
- base-browser:newIdentity.properties
- base-browser:securityLevel.properties
'
cache:
paths:
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/bbeec72…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/bbeec72…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
9506e131 by Henry Wilkes at 2024-08-07T10:21:51+01:00
fixup! Bug 7494: Create local home page for TBB.
Bug 42629: Add "about:tor" to `newTabUrls` instead of checking the
scheme and path individually.
- - - - -
1 changed file:
- browser/base/content/browser-places.js
Changes:
=====================================
browser/base/content/browser-places.js
=====================================
@@ -1409,14 +1409,6 @@ var BookmarkingUI = {
if (!uri) {
return false;
}
- // If uri is "about:tor" then we return true. See tor-browser#41717.
- // NOTE: "about:newtab", "about:welcome", "about:home" and
- // "about:privatebrowsing" can also redirect to "about:tor".
- // NOTE: We do not simply add "about:tor" to newTabURLs below because this
- // would also match "about:torconnect".
- if (uri.scheme === "about" && uri.filePath === "tor") {
- return true;
- }
// Prevent loading AboutNewTab.sys.mjs during startup path if it
// is only the newTabURL getter we are interested in.
let newTabURL = Cu.isESModuleLoaded(
@@ -1435,6 +1427,10 @@ var BookmarkingUI = {
newTabURL,
"about:home",
"chrome://browser/content/blanktab.html",
+ // Add the "about:tor" uri. See tor-browser#41717.
+ // NOTE: "about:newtab", "about:welcome", "about:home" and
+ // "about:privatebrowsing" can also redirect to "about:tor".
+ "about:tor",
];
if (PrivateBrowsingUtils.isWindowPrivate(window)) {
newTabURLs.push("about:privatebrowsing");
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/9506e13…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/9506e13…
You're receiving this email because of your account on gitlab.torproject.org.