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
  • ----- 2025 -----
  • 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

July 2025

  • 1 participants
  • 160 discussions
[Git][tpo/applications/tor-browser][tor-browser-140.0esr-15.0-1] 2 commits: fixup! BB 40926: Implemented the New Identity feature
by henry (@henry) 17 Jul '25

17 Jul '25
henry pushed to branch tor-browser-140.0esr-15.0-1 at The Tor Project / Applications / Tor Browser Commits: b2905b2c by Henry Wilkes at 2025-07-17T13:01:51+00:00 fixup! BB 40926: Implemented the New Identity feature TB 43638: Add the cmd_newIdentity command element and use it. - - - - - b6c948ee by Henry Wilkes at 2025-07-17T13:01:51+00:00 fixup! TB 3455: Add DomainIsolator, for isolating circuit by domain. TB 43638: Update the usage of cmd_newCircuit. - - - - - 8 changed files: - browser/base/content/appmenu-viewcache.inc.xhtml - browser/base/content/browser-init.js - browser/base/content/browser-menubar.inc - browser/base/content/browser-sets.inc - browser/base/content/navigator-toolbox.inc.xhtml - browser/base/content/navigator-toolbox.js - browser/components/customizableui/CustomizeMode.sys.mjs - browser/components/newidentity/content/newidentity.js Changes: ===================================== browser/base/content/appmenu-viewcache.inc.xhtml ===================================== @@ -58,7 +58,8 @@ <toolbarbutton id="appMenu-new-identity" class="subviewbutton" data-l10n-id="appmenuitem-new-identity" - key="new-identity-key"/> + key="new-identity-key" + command="cmd_newIdentity"/> <toolbarbutton id="appMenuNewCircuit" class="subviewbutton" key="new-circuit-key" ===================================== browser/base/content/browser-init.js ===================================== @@ -229,9 +229,6 @@ var gBrowserInit = { // Init the SecurityLevelButton SecurityLevelButton.init(); - // Init the NewIdentityButton - NewIdentityButton.init(); - gTorConnectUrlbarButton.init(); gTorConnectTitlebarStatus.init(); @@ -1065,8 +1062,6 @@ var gBrowserInit = { SecurityLevelButton.uninit(); - NewIdentityButton.uninit(); - gTorConnectUrlbarButton.uninit(); gTorConnectTitlebarStatus.uninit(); ===================================== browser/base/content/browser-menubar.inc ===================================== @@ -22,7 +22,9 @@ key="key_privatebrowsing" data-l10n-id="menu-file-new-private-window"/> <menuseparator/> <menuitem id="menu_newIdentity" - key="new-identity-key" data-l10n-id="menu-new-identity"/> + command="cmd_newIdentity" + key="new-identity-key" + data-l10n-id="menu-new-identity"/> <menuitem id="menu_newCircuit" key="new-circuit-key" data-l10n-id="menu-new-tor-circuit" command="cmd_newCircuit"/> ===================================== browser/base/content/browser-sets.inc ===================================== @@ -113,7 +113,8 @@ <command id="zoomWindow" data-l10n-id="window-zoom-command" /> #endif - <command id ="cmd_newCircuit" /> + <command id="cmd_newIdentity" /> + <command id="cmd_newCircuit" /> </commandset> #include ../../components/places/content/placesCommands.inc.xhtml ===================================== browser/base/content/navigator-toolbox.inc.xhtml ===================================== @@ -601,10 +601,14 @@ command="cmd_newNavigator" tooltip="dynamic-shortcut-tooltip"/> - <toolbarbutton id="new-identity-button" class="toolbarbutton-1 chromeclass-toolbar-additional" + <toolbarbutton id="new-identity-button" + command="cmd_newIdentity" + class="toolbarbutton-1 chromeclass-toolbar-additional" data-l10n-id="toolbar-new-identity"/> - <toolbarbutton id="new-circuit-button" class="toolbarbutton-1 chromeclass-toolbar-additional" + <toolbarbutton id="new-circuit-button" + command="cmd_newCircuit" + class="toolbarbutton-1 chromeclass-toolbar-additional" data-l10n-id="toolbar-new-tor-circuit"/> <toolbarbutton id="fullscreen-button" class="toolbarbutton-1 chromeclass-toolbar-additional" ===================================== browser/base/content/navigator-toolbox.js ===================================== @@ -51,8 +51,7 @@ document.addEventListener( #BMB_bookmarksPopup, #BMB_viewBookmarksSidebar, #BMB_searchBookmarks, - #BMB_viewBookmarksToolbar, - #new-circuit-button`); + #BMB_viewBookmarksToolbar`); if (!element) { return; } @@ -93,10 +92,6 @@ document.addEventListener( BookmarkingUI.toggleBookmarksToolbar("bookmarks-widget"); break; - case "new-circuit-button": - TorDomainIsolator.newCircuitForBrowser(gBrowser.selectedBrowser); - break; - default: if (element.classList.contains("content-analysis-indicator")) { ContentAnalysis.showPanel(element, PanelUI); ===================================== browser/components/customizableui/CustomizeMode.sys.mjs ===================================== @@ -251,6 +251,8 @@ export class CustomizeMode { "Browser:NewUserContextTab", "Tools:PrivateBrowsing", "zoomWindow", + "cmd_newIdentity", + "cmd_newCircuit", ]); /** ===================================== browser/components/newidentity/content/newidentity.js ===================================== @@ -501,34 +501,6 @@ ChromeUtils.defineLazyGetter(this, "NewIdentityButton", () => { let newIdentityInProgress = false; return { - topics, - - init() { - // We first search in the DOM for the identity button. If it does not - // exist it may be in the toolbox palette. In the latter case we still - // need to initialize the button in case it is added back later through - // customization. - const button = - document.getElementById("new-identity-button") || - window.gNavToolbox.palette.querySelector("#new-identity-button"); - button?.addEventListener("command", () => { - this.onCommand(); - }); - document - .getElementById("appMenu-viewCache") - .content.querySelector("#appMenu-new-identity") - ?.addEventListener("command", () => { - this.onCommand(); - }); - document - .getElementById("menu_newIdentity") - ?.addEventListener("command", () => { - this.onCommand(); - }); - }, - - uninit() {}, - async onCommand() { try { // Ignore if there's a New Identity in progress to avoid race View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/360585… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/360585… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/mullvad-browser][mullvad-browser-140.0esr-15.0-1] fixup! Firefox preference overrides.
by henry (@henry) 17 Jul '25

17 Jul '25
henry pushed to branch mullvad-browser-140.0esr-15.0-1 at The Tor Project / Applications / Mullvad Browser Commits: 0de650fd by henry at 2025-07-17T13:50:04+01:00 fixup! Firefox preference overrides. TB 43989: Disable the preference for the AI chatbot in the new sidebar. (cherry picked from commit 360585a09bf653ca9c2a047a9c57ef2959b2c5d9) Co-authored-by: Henry Wilkes <henry(a)torproject.org> - - - - - 1 changed file: - browser/app/profile/001-base-profile.js Changes: ===================================== browser/app/profile/001-base-profile.js ===================================== @@ -306,9 +306,12 @@ pref("browser.search.serpEventTelemetryCategorization.enabled", false); // tor-browser#42872, #42555: Disable translations. // Translation have a bad UX in 128 (and with our config). Maybe we will -// re-enable after auditing and fixing the UX. +// re-enable after auditing and fixing the UX (tor-browser#41837). pref("browser.translations.enable", false); +// Disable third party AI chatbot. tor-browser#43989. +pref("browser.ml.chat.enabled", false); + // tor-browser#41945 - disable automatic cookie banners dismissal until // we're sure it does not causes fingerprinting risks or other issues. pref("cookiebanners.service.mode", 0); View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/0de… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/0de… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][base-browser-140.0esr-15.0-1] fixup! Firefox preference overrides.
by henry (@henry) 17 Jul '25

17 Jul '25
henry pushed to branch base-browser-140.0esr-15.0-1 at The Tor Project / Applications / Tor Browser Commits: 0720429c by henry at 2025-07-17T12:46:03+00:00 fixup! Firefox preference overrides. TB 43989: Disable the preference for the AI chatbot in the new sidebar. (cherry picked from commit 360585a09bf653ca9c2a047a9c57ef2959b2c5d9) Co-authored-by: Henry Wilkes <henry(a)torproject.org> - - - - - 1 changed file: - browser/app/profile/001-base-profile.js Changes: ===================================== browser/app/profile/001-base-profile.js ===================================== @@ -306,9 +306,12 @@ pref("browser.search.serpEventTelemetryCategorization.enabled", false); // tor-browser#42872, #42555: Disable translations. // Translation have a bad UX in 128 (and with our config). Maybe we will -// re-enable after auditing and fixing the UX. +// re-enable after auditing and fixing the UX (tor-browser#41837). pref("browser.translations.enable", false); +// Disable third party AI chatbot. tor-browser#43989. +pref("browser.ml.chat.enabled", false); + // tor-browser#41945 - disable automatic cookie banners dismissal until // we're sure it does not causes fingerprinting risks or other issues. pref("cookiebanners.service.mode", 0); View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/0720429… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/0720429… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-140.0esr-15.0-1] fixup! Firefox preference overrides.
by henry (@henry) 17 Jul '25

17 Jul '25
henry pushed to branch tor-browser-140.0esr-15.0-1 at The Tor Project / Applications / Tor Browser Commits: 360585a0 by Henry Wilkes at 2025-07-17T12:45:10+00:00 fixup! Firefox preference overrides. TB 43989: Disable the preference for the AI chatbot in the new sidebar. - - - - - 1 changed file: - browser/app/profile/001-base-profile.js Changes: ===================================== browser/app/profile/001-base-profile.js ===================================== @@ -306,9 +306,12 @@ pref("browser.search.serpEventTelemetryCategorization.enabled", false); // tor-browser#42872, #42555: Disable translations. // Translation have a bad UX in 128 (and with our config). Maybe we will -// re-enable after auditing and fixing the UX. +// re-enable after auditing and fixing the UX (tor-browser#41837). pref("browser.translations.enable", false); +// Disable third party AI chatbot. tor-browser#43989. +pref("browser.ml.chat.enabled", false); + // tor-browser#41945 - disable automatic cookie banners dismissal until // we're sure it does not causes fingerprinting risks or other issues. pref("cookiebanners.service.mode", 0); View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/360585a… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/360585a… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-140.0esr-15.0-1] amend! TB 43987 [Android]: disable optimization for org.mozilla.experiments.nimbus.Nimbus
by boklm (@boklm) 17 Jul '25

17 Jul '25
boklm pushed to branch tor-browser-140.0esr-15.0-1 at The Tor Project / Applications / Tor Browser Commits: 501c2eb9 by Nicolas Vigier at 2025-07-17T12:21:53+02:00 amend! TB 43987 [Android]: disable optimization for org.mozilla.experiments.nimbus.Nimbus TB 43987 [Android]: disable optimization for org.mozilla.experiments.nimbus Fixing a reproducibility issue. - - - - - 1 changed file: - mobile/android/fenix/app/proguard-rules.pro Changes: ===================================== mobile/android/fenix/app/proguard-rules.pro ===================================== @@ -134,6 +134,6 @@ # Workaround for 'already has mapping' r8 issue (https://issuetracker.google.com/issues/140851070) -keep class com.google.android.gms.common.internal.BaseGmsClient { *; } -# tor-browser#43987 - Keep org.mozilla.experiments.nimbus.Nimbus to fix +# tor-browser#43987 - Keep org.mozilla.experiments.nimbus to fix # reproducibility issue --keep class org.mozilla.experiments.nimbus.Nimbus { *; } +-keep class org.mozilla.experiments.nimbus.** { *; } View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/501c2eb… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/501c2eb… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser] Pushed new tag FIREFOX_NIGHTLY_141_END
by brizental (@brizental) 17 Jul '25

17 Jul '25
brizental pushed new tag FIREFOX_NIGHTLY_141_END at The Tor Project / Applications / Tor Browser -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/tree/FIREFOX_N… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/mullvad-browser] Pushed new tag FIREFOX_NIGHTLY_141_END
by brizental (@brizental) 17 Jul '25

17 Jul '25
brizental pushed new tag FIREFOX_NIGHTLY_141_END at The Tor Project / Applications / Mullvad Browser -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/tree/FIREF… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/mullvad-browser] Pushed new branch mullvad-browser-141.0a1-16.0-1
by brizental (@brizental) 17 Jul '25

17 Jul '25
brizental pushed new branch mullvad-browser-141.0a1-16.0-1 at The Tor Project / Applications / Mullvad Browser -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/tree/mullv… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser] Pushed new branch base-browser-141.0a1-16.0-1
by brizental (@brizental) 17 Jul '25

17 Jul '25
brizental pushed new branch base-browser-141.0a1-16.0-1 at The Tor Project / Applications / Tor Browser -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/tree/base-brow… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser] Pushed new branch tor-browser-141.0a1-16.0-1
by brizental (@brizental) 17 Jul '25

17 Jul '25
brizental pushed new branch tor-browser-141.0a1-16.0-1 at The Tor Project / Applications / Tor Browser -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/tree/tor-brows… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.