lists.torproject.org
Sign In Sign Up
Manage this list Sign In Sign Up

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

tbb-commits

Thread Start a new thread
Threads by month
  • ----- 2026 -----
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2025 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2022 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2021 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2020 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2019 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2018 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2017 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2016 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2015 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2014 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
tbb-commits@lists.torproject.org

  • 1 participants
  • 20633 discussions
[Git][tpo/applications/mullvad-browser][mullvad-browser-149.0a1-16.0-2] fixup! BB 9173: Change the default Firefox profile directory to be relative.
by Pier Angelo Vendrame (@pierov) 20 Apr '26

20 Apr '26
Pier Angelo Vendrame pushed to branch mullvad-browser-149.0a1-16.0-2 at The Tor Project / Applications / Mullvad Browser Commits: 864b2e0b by Pier Angelo Vendrame at 2026-04-20T14:47:21+02:00 fixup! BB 9173: Change the default Firefox profile directory to be relative. BB 44560: Customize env variables for alternate data directories. In Bug 283779, Mozilla added a couple of environment variables to set custom app data directories. In this patch, we replace their MOZ_ prefix to make sure we do not match any customization users might have done for Firefox, so that we keep the profiles distinct. - - - - - 2 changed files: - python/mozbuild/mozbuild/mach_commands.py - toolkit/xre/nsXREDirProvider.cpp Changes: ===================================== python/mozbuild/mozbuild/mach_commands.py ===================================== @@ -2461,22 +2461,22 @@ def _run_desktop( if appdata is True: appdata = tmpdir - extra_env["MOZ_APP_DATA"] = os.path.normpath( + extra_env["BB_APP_DATA"] = os.path.normpath( os.path.join(appdata, "AppData", "Roaming") ) command_context.log( logging.INFO, "run", - {"app_data": extra_env["MOZ_APP_DATA"]}, + {"app_data": extra_env["BB_APP_DATA"]}, "Overriding application data directory to {app_data}", ) - extra_env["MOZ_LOCAL_APP_DATA"] = os.path.normpath( + extra_env["BB_LOCAL_APP_DATA"] = os.path.normpath( os.path.join(appdata, "Local") ) command_context.log( logging.INFO, "run", - {"local_app_data": extra_env["MOZ_LOCAL_APP_DATA"]}, + {"local_app_data": extra_env["BB_LOCAL_APP_DATA"]}, "Overriding local application data directory to {local_app_data}", ) ===================================== toolkit/xre/nsXREDirProvider.cpp ===================================== @@ -1451,9 +1451,9 @@ nsresult nsXREDirProvider::GetSystemExtensionsDirectory(nsIFile** aFile) { nsresult nsXREDirProvider::GetUserDataDirectory(nsIFile** aFile, bool aLocal) { nsCOMPtr<nsIFile> localDir; - nsCOMPtr<nsIFile> customDir = mozilla::GetFileFromEnv("MOZ_APP_DATA"); + nsCOMPtr<nsIFile> customDir = mozilla::GetFileFromEnv("BB_APP_DATA"); nsCOMPtr<nsIFile> customLocalDir = - mozilla::GetFileFromEnv("MOZ_LOCAL_APP_DATA"); + mozilla::GetFileFromEnv("BB_LOCAL_APP_DATA"); if (aLocal && gDataDirProfileLocal) { return gDataDirProfileLocal->Clone(aFile); View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/864… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/864… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-149.0a1-16.0-2] fixup! BB 9173: Change the default Firefox profile directory to be relative.
by Pier Angelo Vendrame (@pierov) 20 Apr '26

20 Apr '26
Pier Angelo Vendrame pushed to branch tor-browser-149.0a1-16.0-2 at The Tor Project / Applications / Tor Browser Commits: 92eebc60 by Pier Angelo Vendrame at 2026-04-20T10:43:38+02:00 fixup! BB 9173: Change the default Firefox profile directory to be relative. BB 44560: Customize env variables for alternate data directories. In Bug 283779, Mozilla added a couple of environment variables to set custom app data directories. In this patch, we replace their MOZ_ prefix to make sure we do not match any customization users might have done for Firefox, so that we keep the profiles distinct. - - - - - 2 changed files: - python/mozbuild/mozbuild/mach_commands.py - toolkit/xre/nsXREDirProvider.cpp Changes: ===================================== python/mozbuild/mozbuild/mach_commands.py ===================================== @@ -2461,22 +2461,22 @@ def _run_desktop( if appdata is True: appdata = tmpdir - extra_env["MOZ_APP_DATA"] = os.path.normpath( + extra_env["BB_APP_DATA"] = os.path.normpath( os.path.join(appdata, "AppData", "Roaming") ) command_context.log( logging.INFO, "run", - {"app_data": extra_env["MOZ_APP_DATA"]}, + {"app_data": extra_env["BB_APP_DATA"]}, "Overriding application data directory to {app_data}", ) - extra_env["MOZ_LOCAL_APP_DATA"] = os.path.normpath( + extra_env["BB_LOCAL_APP_DATA"] = os.path.normpath( os.path.join(appdata, "Local") ) command_context.log( logging.INFO, "run", - {"local_app_data": extra_env["MOZ_LOCAL_APP_DATA"]}, + {"local_app_data": extra_env["BB_LOCAL_APP_DATA"]}, "Overriding local application data directory to {local_app_data}", ) ===================================== toolkit/xre/nsXREDirProvider.cpp ===================================== @@ -1472,9 +1472,9 @@ nsresult nsXREDirProvider::GetSystemExtensionsDirectory(nsIFile** aFile) { nsresult nsXREDirProvider::GetUserDataDirectory(nsIFile** aFile, bool aLocal) { nsCOMPtr<nsIFile> localDir; - nsCOMPtr<nsIFile> customDir = mozilla::GetFileFromEnv("MOZ_APP_DATA"); + nsCOMPtr<nsIFile> customDir = mozilla::GetFileFromEnv("BB_APP_DATA"); nsCOMPtr<nsIFile> customLocalDir = - mozilla::GetFileFromEnv("MOZ_LOCAL_APP_DATA"); + mozilla::GetFileFromEnv("BB_LOCAL_APP_DATA"); if (aLocal && gDataDirProfileLocal) { return gDataDirProfileLocal->Clone(aFile); View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/92eebc6… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/92eebc6… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/mullvad-browser][mullvad-browser-149.0a1-16.0-2] BB 44865: Block requests to chrome://*/locale.
by Pier Angelo Vendrame (@pierov) 16 Apr '26

16 Apr '26
Pier Angelo Vendrame pushed to branch mullvad-browser-149.0a1-16.0-2 at The Tor Project / Applications / Mullvad Browser Commits: 1beb74fb by Pier Angelo Vendrame at 2026-04-16T19:38:10+02:00 BB 44865: Block requests to chrome://*/locale. - - - - - 1 changed file: - caps/nsScriptSecurityManager.cpp Changes: ===================================== caps/nsScriptSecurityManager.cpp ===================================== @@ -1104,6 +1104,12 @@ nsresult nsScriptSecurityManager::CheckLoadURIFlags( return NS_OK; } } else if (targetScheme.EqualsLiteral("chrome")) { + nsAutoCString path; + if (NS_SUCCEEDED(aTargetURI->GetPathQueryRef(path)) && + StringBeginsWith(path, "/locale/"_ns)) { + return NS_ERROR_DOM_BAD_URI; + } + // Allow the load only if the chrome package is allowlisted. nsCOMPtr<nsIXULChromeRegistry> reg( do_GetService(NS_CHROMEREGISTRY_CONTRACTID)); View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/1be… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/1be… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-149.0a1-16.0-2] BB 44865: Block requests to chrome://*/locale.
by Pier Angelo Vendrame (@pierov) 16 Apr '26

16 Apr '26
Pier Angelo Vendrame pushed to branch tor-browser-149.0a1-16.0-2 at The Tor Project / Applications / Tor Browser Commits: c9fe2594 by Pier Angelo Vendrame at 2026-04-16T19:36:16+02:00 BB 44865: Block requests to chrome://*/locale. - - - - - 1 changed file: - caps/nsScriptSecurityManager.cpp Changes: ===================================== caps/nsScriptSecurityManager.cpp ===================================== @@ -1104,6 +1104,12 @@ nsresult nsScriptSecurityManager::CheckLoadURIFlags( return NS_OK; } } else if (targetScheme.EqualsLiteral("chrome")) { + nsAutoCString path; + if (NS_SUCCEEDED(aTargetURI->GetPathQueryRef(path)) && + StringBeginsWith(path, "/locale/"_ns)) { + return NS_ERROR_DOM_BAD_URI; + } + // Allow the load only if the chrome package is allowlisted. nsCOMPtr<nsIXULChromeRegistry> reg( do_GetService(NS_CHROMEREGISTRY_CONTRACTID)); View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c9fe259… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c9fe259… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-149.0a1-16.0-2] fixup! TB 27476: Implement about:torconnect captive portal within Tor Browser
by Pier Angelo Vendrame (@pierov) 16 Apr '26

16 Apr '26
Pier Angelo Vendrame pushed to branch tor-browser-149.0a1-16.0-2 at The Tor Project / Applications / Tor Browser Commits: 0c255cf8 by Pier Angelo Vendrame at 2026-04-16T19:24:49+02:00 fixup! TB 27476: Implement about:torconnect captive portal within Tor Browser TB 44846: Make sure redirect to about:torconnect works with felt-privacy TB 44798: Exempt iframes from about:torconnect redirects - - - - - 1 changed file: - toolkit/content/aboutNetError.mjs Changes: ===================================== toolkit/content/aboutNetError.mjs ===================================== @@ -379,7 +379,7 @@ function initOnionError() { } // Returns pageTitleId, bodyTitle, bodyTitleId, and longDesc as an object -async function initTitleAndBodyIds(baseURL, isTRROnlyFailure) { +function initTitleAndBodyIds(baseURL, isTRROnlyFailure) { let bodyTitle = document.querySelector(".title-text"); let longDesc = document.getElementById("errorLongDesc"); const tryAgain = document.getElementById("netErrorButtonContainer"); @@ -475,22 +475,12 @@ async function initTitleAndBodyIds(baseURL, isTRROnlyFailure) { learnMore.hidden = false; document.body.className = "certerror"; break; - - case "proxyConnectFailure": - if (await RPMSendQuery("ShouldShowTorConnect")) { - // pass orginal destination as redirect param - const encodedRedirect = encodeURIComponent(document.location.href); - document.location.replace( - `about:torconnect?redirect=${encodedRedirect}` - ); - } - break; } return { pageTitleId, bodyTitle, bodyTitleId, longDesc }; } -async function initPage() { +function initPage() { // We show an offline support page in case of a system-wide error, // when a user cannot connect to the internet and access the SUMO website. // For example, clock error, which causes certerrors across the web or @@ -561,8 +551,10 @@ async function initPage() { tryAgain.hidden = false; const learnMoreLink = document.getElementById("learnMoreLink"); learnMoreLink.setAttribute("href", baseURL + "connection-not-secure"); - let { pageTitleId, bodyTitle, bodyTitleId, longDesc } = - await initTitleAndBodyIds(baseURL, isTRROnlyFailure); + let { pageTitleId, bodyTitle, bodyTitleId, longDesc } = initTitleAndBodyIds( + baseURL, + isTRROnlyFailure + ); // We can handle the offline page separately. if (gNoConnectivity) { @@ -1411,6 +1403,24 @@ async function init() { i++; errorCode = await retryErrorCode(); } + + if (!errorCode) { + errorCode = gErrorCode; + } + if (errorCode === "proxyConnectFailure") { + let inIframe; + try { + inIframe = window.self !== window.top; + } catch { + // Assume a frame if access to top is blocked. + inIframe = true; + } + if (!inIframe && (await RPMSendQuery("ShouldShowTorConnect"))) { + // pass orginal destination as redirect param + const encodedRedirect = encodeURIComponent(document.location.href); + document.location.replace(`about:torconnect?redirect=${encodedRedirect}`); + } + } } async function main() { View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/0c255cf… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/0c255cf… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-149.0a1-16.0-2] 4 commits: fixup! TB 23247: Communicating security expectations for .onion
by henry (@henry) 16 Apr '26

16 Apr '26
henry pushed to branch tor-browser-149.0a1-16.0-2 at The Tor Project / Applications / Tor Browser Commits: bddfb109 by Henry Wilkes at 2026-04-16T16:25:52+00:00 fixup! TB 23247: Communicating security expectations for .onion TB 43857: Drop TODO since it is "won't do". - - - - - 184592ac by Henry Wilkes at 2026-04-16T16:25:52+00:00 fixup! TB 43564: Modify ./mach bootstrap for Tor Browser TB 43857: Drop TODO since it is "won't do". - - - - - 112b814b by Henry Wilkes at 2026-04-16T16:25:52+00:00 fixup! [android] Disable features and functionality TB 43857: Drop TODO since it is "won't do". - - - - - 8956c706 by Henry Wilkes at 2026-04-16T16:25:52+00:00 fixup! TB 42247: Android helpers for the TorProvider TB 43857: Update TODO and FIXME comments. - - - - - 4 changed files: - browser/base/content/browser-siteIdentity.js - build/moz.configure/torbrowser-resources.configure - mobile/android/fenix/app/src/main/java/org/mozilla/fenix/home/intent/HomeDeepLinkIntentProcessor.kt - mobile/android/geckoview/src/main/java/org/mozilla/geckoview/TorAndroidIntegration.java Changes: ===================================== browser/base/content/browser-siteIdentity.js ===================================== @@ -929,7 +929,6 @@ var gIdentityHandler = { uriIsOnionHost ? "onionMixedDisplayContent" : "mixedDisplayContent" ); } else { - // TODO: ignore weak https cipher for onionsites? this._identityBox.classList.add("weakCipher"); } } else if (this._isCertErrorPage) { ===================================== build/moz.configure/torbrowser-resources.configure ===================================== @@ -24,7 +24,6 @@ option( def tor_expert_bundle(value, mozbuild_state_path, _bootstrapped): if value: path = Path(value[0]) - # TODO: Do a more thorough check on the directory. if path.is_dir(): return value[0] else: ===================================== mobile/android/fenix/app/src/main/java/org/mozilla/fenix/home/intent/HomeDeepLinkIntentProcessor.kt ===================================== @@ -133,10 +133,6 @@ class HomeDeepLinkIntentProcessor( } if (BuildConfig.DEEP_LINK_SCHEME.startsWith("torbrowser")) { // tor-browser#42578 - // TODO: - // Maybe just warn users about linkability but - // give them the choice to open anyway, once - // the other deep link related issues are fixed. logger.info("Tor Browser rejects open intent deep link: $deepLink") return } ===================================== mobile/android/geckoview/src/main/java/org/mozilla/geckoview/TorAndroidIntegration.java ===================================== @@ -148,7 +148,14 @@ public class TorAndroidIntegration implements BundleEventListener { } else if (EVENT_SETTINGS_CHANGED.equals(event)) { GeckoBundle newSettings = message.getBundle("settings"); if (newSettings != null) { - // TODO: Should we notify listeners? + // NOTE: We assume that we do not need to notify any consumer with the + // new state because we expect the relevant consumers to read the latest + // state regularly (e.g. each time the settings screen is opened), and + // we only expect one active consumer at any given moment (only one + // setting screen is shown) which means that the single consumer can + // reflect any *expected* individual changes in the UI prior to this + // confirmation signal, and there are no other consumers that need to be + // synchronised with this change. See tor-browser#42384. mSettings = new TorSettings(newSettings); } else { Log.w(TAG, "Ignoring a settings changed event that did not have the new settings."); @@ -345,7 +352,7 @@ public class TorAndroidIntegration implements BundleEventListener { data.putInt("status", 0xdeadbeef); } // FIXME: We usually don't reach this when the application is killed! - // So, we don't do our cleanup. + // So, we don't do our cleanup. Investigation in tor-browser#44861. Log.i(TAG, "Tor process " + mHandle + " has exited."); EventDispatcher.getInstance().dispatch(EVENT_TOR_EXITED, data); } View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/723952… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/723952… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/mullvad-browser][mullvad-browser-149.0a1-16.0-2] fixup! BB 43322: Customize the font visibility lists.
by Pier Angelo Vendrame (@pierov) 16 Apr '26

16 Apr '26
Pier Angelo Vendrame pushed to branch mullvad-browser-149.0a1-16.0-2 at The Tor Project / Applications / Mullvad Browser Commits: db14782c by Pier Angelo Vendrame at 2026-04-16T17:45:14+02:00 fixup! BB 43322: Customize the font visibility lists. BB 44862: Add Segoe MDL2 Assets to fontvis. - - - - - 1 changed file: - gfx/thebes/StandardFonts-win10-bb.inc Changes: ===================================== gfx/thebes/StandardFonts-win10-bb.inc ===================================== @@ -16,6 +16,7 @@ static const char* kBaseFonts[] = { "MS Gothic", "MS PGothic", "MV Boli", + "Segoe MDL2 Assets", "Segoe UI", "SimSun", "Sylfaen", View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/db1… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/db1… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-149.0a1-16.0-2] fixup! BB 43322: Customize the font visibility lists.
by Pier Angelo Vendrame (@pierov) 16 Apr '26

16 Apr '26
Pier Angelo Vendrame pushed to branch tor-browser-149.0a1-16.0-2 at The Tor Project / Applications / Tor Browser Commits: 723952b8 by Pier Angelo Vendrame at 2026-04-16T17:43:14+02:00 fixup! BB 43322: Customize the font visibility lists. BB 44862: Add Segoe MDL2 Assets to fontvis. - - - - - 1 changed file: - gfx/thebes/StandardFonts-win10-bb.inc Changes: ===================================== gfx/thebes/StandardFonts-win10-bb.inc ===================================== @@ -16,6 +16,7 @@ static const char* kBaseFonts[] = { "MS Gothic", "MS PGothic", "MV Boli", + "Segoe MDL2 Assets", "Segoe UI", "SimSun", "Sylfaen", View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/723952b… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/723952b… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-149.0a1-16.0-2] fixup! Add CI for Tor Browser
by brizental (@brizental) 16 Apr '26

16 Apr '26
brizental pushed to branch tor-browser-149.0a1-16.0-2 at The Tor Project / Applications / Tor Browser Commits: fbfc2288 by Beatriz Rizental at 2026-04-16T11:40:32-03:00 fixup! Add CI for Tor Browser Bug 44860: Add a container with Android toolchains - - - - - 3 changed files: - .gitlab-ci.yml - .gitlab/ci/containers/base/Containerfile - .gitlab/ci/jobs/update-containers.yml Changes: ===================================== .gitlab-ci.yml ===================================== @@ -6,7 +6,7 @@ stages: - update-translations variables: - IMAGE_PATH: containers.torproject.org/tpo/applications/tor-browser/base:latest + IMAGE_PATH: containers.torproject.org/tpo/applications/tor-browser/desktop:latest LOCAL_REPO_PATH: /srv/apps-repos/tor-browser.git include: ===================================== .gitlab/ci/containers/base/Containerfile ===================================== @@ -1,23 +1,39 @@ -# This image is published in containers.torproject.org/tpo/applications/tor-browser/base +# This image is published in containers.torproject.org/tpo/applications/tor-browser/{android,desktop} # -# Whenever there are changes to this file, -# they are autopublished on merge to the tpo/applications/tor-browser repository. -# -# The image is updated roughly once a month when the tor-browser repository is rebased. +# This image is built and published on CI. The CI job that does this is manual, +# therefore it's up to the developer or reviewer to trigger this CI job when necessary +# e.g. after a RR rebase or big changes to this file. FROM containers.torproject.org/tpo/tpa/base-images/python:trixie +ARG APPLICATION_CHOICE + RUN apt-get update && apt-get install -y \ + curl \ git \ - xvfb + libc6-dev \ + xvfb \ + zlib1g-dev RUN git clone --single-branch --depth 1 https://gitlab.torproject.org/tpo/applications/tor-browser.git # Bootstrap will download and install all dependencies required for building / linting / etc. RUN cd tor-browser && \ - yes | MOZBUILD_STATE_PATH=/var/tmp/mozbuild ./mach bootstrap --application-choice "Tor Browser for Desktop" && \ + yes | MOZBUILD_STATE_PATH=/var/tmp/mozbuild ./mach bootstrap --application-choice "$APPLICATION_CHOICE" && \ cd .. +ENV PATH="/var/tmp/mozbuild/clang/bin:/root/.cargo/bin:$PATH" + +RUN echo "$APPLICATION_CHOICE" | grep -qi android && \ + rustup target add armv7-linux-androideabi \ + aarch64-linux-android \ + i686-linux-android \ + x86_64-linux-android \ + || true + RUN rm -rf tor-browser && \ apt-get clean && \ - rm -rf /var/lib/apt/lists/* + rm -rf /var/lib/apt/lists/* && \ + rm -rf /var/tmp/mozbuild/toolchains && \ + rm -rf /var/tmp/mozbuild/indices && \ + rm -rf /var/tmp/mozbuild/android-device ===================================== .gitlab/ci/jobs/update-containers.yml ===================================== @@ -1,11 +1,17 @@ -build-base-image: +build-image: stage: update-container-images interruptible: true image: containers.torproject.org/tpo/tpa/base-images/podman:bookworm + parallel: + matrix: + - PLATFORM: desktop + APPLICATION_CHOICE: "Tor Browser for Desktop" + - PLATFORM: android + APPLICATION_CHOICE: "GeckoView/Tor Browser for Android" script: - - export TAG="${CI_REGISTRY_IMAGE}/base:latest" + - export TAG="${CI_REGISTRY_IMAGE}/${PLATFORM}:latest" - podman login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY - - podman build --layers=false $IMAGE -t ${TAG} -f .gitlab/ci/containers/base/Containerfile . + - podman build --layers=false $IMAGE -t ${TAG} --build-arg APPLICATION_CHOICE="${APPLICATION_CHOICE}" -f .gitlab/ci/containers/base/Containerfile . - | echo -e "\e[33mPushing new image to registry as ${TAG}\e[0m" podman push ${TAG} View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/fbfc228… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/fbfc228… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
[Git][tpo/applications/mullvad-browser][mullvad-browser-140.10.0esr-15.0-1] fixup! BB 40926: Implemented the New Identity feature
by ma1 (@ma1) 16 Apr '26

16 Apr '26
ma1 pushed to branch mullvad-browser-140.10.0esr-15.0-1 at The Tor Project / Applications / Mullvad Browser Commits: d9d20a24 by hackademix at 2026-04-16T13:10:07+02:00 fixup! BB 40926: Implemented the New Identity feature BB 44288: Regression, custom home page not blocked anymore on new identity. - - - - - 2 changed files: - browser/components/newidentity/content/newidentity.js - browser/modules/BrowserWindowTracker.sys.mjs Changes: ===================================== browser/components/newidentity/content/newidentity.js ===================================== @@ -402,7 +402,8 @@ ChromeUtils.defineLazyGetter(this, "NewIdentityButton", () => { const isCustomHome = Services.prefs.getIntPref("browser.startup.page") === 1; const win = OpenBrowserWindow({ - private: isCustomHome && isTrustedHome ? "private" : "no-home", + private: true, + skipCustomHome: !(isCustomHome && isTrustedHome), }); // This mechanism to know when the new window is ready is used by // OpenBrowserWindow itself (see its definition in browser.js). @@ -435,7 +436,7 @@ ChromeUtils.defineLazyGetter(this, "NewIdentityButton", () => { } const callback = () => { Services.prefs.setStringPref(trustedHomePref, homeURL); - win.BrowserHome(); + win.BrowserCommands.home(); }; const notificationBox = win.gBrowser.getNotificationBox(); notificationBox.appendNotification( ===================================== browser/modules/BrowserWindowTracker.sys.mjs ===================================== @@ -296,6 +296,7 @@ export const BrowserWindowTracker = { args = null, remote = undefined, fission = undefined, + skipCustomHome = false, } = {}) { let windowFeatures = "chrome,dialog=no,all"; if (features) { @@ -306,7 +307,7 @@ export const BrowserWindowTracker = { windowFeatures += ",private"; if ( (!args && !lazy.PrivateBrowsingUtils.permanentPrivateBrowsing) || - args?.private === "no-home" + skipCustomHome ) { // Force the new window to load about:privatebrowsing instead of the // default home page. View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/d9d… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/d9d… You're receiving this email because of your account on gitlab.torproject.org. Manage all notifications: https://gitlab.torproject.org/-/profile/notifications | Help: https://gitlab.torproject.org/help
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • ...
  • 2064
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.