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 -----
  • 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
  • 19730 discussions
[Git][tpo/applications/mullvad-browser][mullvad-browser-140.4.0esr-15.0-1] BB 44279: Disable contextual search install prompt.
by henry (@henry) 21 Oct '25

21 Oct '25
henry pushed to branch mullvad-browser-140.4.0esr-15.0-1 at The Tor Project / Applications / Mullvad Browser Commits: 3d411c42 by henry at 2025-10-21T15:55:32+01:00 BB 44279: Disable contextual search install prompt. (cherry picked from commit 5b9d6ce72ac5e4a3a296d6084a9bce7cf4a1ccd6) Co-authored-by: Henry Wilkes <henry(a)torproject.org> - - - - - 1 changed file: - browser/components/urlbar/ActionsProviderContextualSearch.sys.mjs Changes: ===================================== browser/components/urlbar/ActionsProviderContextualSearch.sys.mjs ===================================== @@ -9,6 +9,8 @@ import { ActionsResult, } from "resource:///modules/ActionsProvider.sys.mjs"; +import { AppConstants } from "resource://gre/modules/AppConstants.sys.mjs"; + const lazy = {}; ChromeUtils.defineESModuleGetters(lazy, { @@ -312,6 +314,11 @@ class ProviderContextualSearch extends ActionsProvider { ); if ( + // Do not show the install prompt in non-private windows to have + // consistent behaviour with private windows and avoid linkability + // concerns. tor-browser#44134. + // Maybe re-enable as part of tor-browser#44117. + !AppConstants.BASE_BROWSER_VERSION && !queryContext.isPrivate && type != INSTALLED_ENGINE && (await Services.search.shouldShowInstallPrompt(engine)) View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/3d4… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/3d4… 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.4.0esr-15.0-1] BB 44279: Disable contextual search install prompt.
by henry (@henry) 21 Oct '25

21 Oct '25
henry pushed to branch base-browser-140.4.0esr-15.0-1 at The Tor Project / Applications / Tor Browser Commits: e009a21f by henry at 2025-10-21T14:54:00+00:00 BB 44279: Disable contextual search install prompt. (cherry picked from commit 5b9d6ce72ac5e4a3a296d6084a9bce7cf4a1ccd6) Co-authored-by: Henry Wilkes <henry(a)torproject.org> - - - - - 1 changed file: - browser/components/urlbar/ActionsProviderContextualSearch.sys.mjs Changes: ===================================== browser/components/urlbar/ActionsProviderContextualSearch.sys.mjs ===================================== @@ -9,6 +9,8 @@ import { ActionsResult, } from "resource:///modules/ActionsProvider.sys.mjs"; +import { AppConstants } from "resource://gre/modules/AppConstants.sys.mjs"; + const lazy = {}; ChromeUtils.defineESModuleGetters(lazy, { @@ -312,6 +314,11 @@ class ProviderContextualSearch extends ActionsProvider { ); if ( + // Do not show the install prompt in non-private windows to have + // consistent behaviour with private windows and avoid linkability + // concerns. tor-browser#44134. + // Maybe re-enable as part of tor-browser#44117. + !AppConstants.BASE_BROWSER_VERSION && !queryContext.isPrivate && type != INSTALLED_ENGINE && (await Services.search.shouldShowInstallPrompt(engine)) View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/e009a21… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/e009a21… 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.4.0esr-15.0-1] fixup! BB 18905: Hide unwanted items from help menu
by morgan (@morgan) 21 Oct '25

21 Oct '25
morgan pushed to branch mullvad-browser-140.4.0esr-15.0-1 at The Tor Project / Applications / Mullvad Browser Commits: 9c619ad1 by Henry Wilkes at 2025-10-21T14:51:51+00:00 fixup! BB 18905: Hide unwanted items from help menu TB 44141: Hide "Report broken site" items by default. This should stop the app menu and help menu from jumping in height when first opened. - - - - - 2 changed files: - browser/base/content/appmenu-viewcache.inc.xhtml - browser/base/content/browser-menubar.inc Changes: ===================================== browser/base/content/appmenu-viewcache.inc.xhtml ===================================== @@ -156,6 +156,7 @@ data-l10n-id="appmenuitem-report-broken-site" closemenu="none" disabled="true" + hidden="true" command="cmd_reportBrokenSite"/> <toolbarbutton id="appMenu-help-button2" class="subviewbutton subviewbutton-nav" ===================================== browser/base/content/browser-menubar.inc ===================================== @@ -435,6 +435,7 @@ command="cmd_reportBrokenSite" data-l10n-id="menu-report-broken-site" disabled="true" + hidden="true" appmenu-data-l10n-id="appmenuitem-report-broken-site"/> <menuitem id="feedbackPage" hidden="true" View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/9c6… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/9c6… 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.4.0esr-15.0-1] BB 44279: Disable contextual search install prompt.
by henry (@henry) 21 Oct '25

21 Oct '25
henry pushed to branch tor-browser-140.4.0esr-15.0-1 at The Tor Project / Applications / Tor Browser Commits: 5b9d6ce7 by Henry Wilkes at 2025-10-21T14:49:24+00:00 BB 44279: Disable contextual search install prompt. - - - - - 1 changed file: - browser/components/urlbar/ActionsProviderContextualSearch.sys.mjs Changes: ===================================== browser/components/urlbar/ActionsProviderContextualSearch.sys.mjs ===================================== @@ -9,6 +9,8 @@ import { ActionsResult, } from "resource:///modules/ActionsProvider.sys.mjs"; +import { AppConstants } from "resource://gre/modules/AppConstants.sys.mjs"; + const lazy = {}; ChromeUtils.defineESModuleGetters(lazy, { @@ -312,6 +314,11 @@ class ProviderContextualSearch extends ActionsProvider { ); if ( + // Do not show the install prompt in non-private windows to have + // consistent behaviour with private windows and avoid linkability + // concerns. tor-browser#44134. + // Maybe re-enable as part of tor-browser#44117. + !AppConstants.BASE_BROWSER_VERSION && !queryContext.isPrivate && type != INSTALLED_ENGINE && (await Services.search.shouldShowInstallPrompt(engine)) View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/5b9d6ce… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/5b9d6ce… 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.4.0esr-15.0-1] fixup! BB 18905: Hide unwanted items from help menu
by morgan (@morgan) 21 Oct '25

21 Oct '25
morgan pushed to branch base-browser-140.4.0esr-15.0-1 at The Tor Project / Applications / Tor Browser Commits: a5c64f48 by Henry Wilkes at 2025-10-21T14:50:39+00:00 fixup! BB 18905: Hide unwanted items from help menu TB 44141: Hide "Report broken site" items by default. This should stop the app menu and help menu from jumping in height when first opened. - - - - - 2 changed files: - browser/base/content/appmenu-viewcache.inc.xhtml - browser/base/content/browser-menubar.inc Changes: ===================================== browser/base/content/appmenu-viewcache.inc.xhtml ===================================== @@ -155,6 +155,7 @@ data-l10n-id="appmenuitem-report-broken-site" closemenu="none" disabled="true" + hidden="true" command="cmd_reportBrokenSite"/> <toolbarbutton id="appMenu-help-button2" class="subviewbutton subviewbutton-nav" ===================================== browser/base/content/browser-menubar.inc ===================================== @@ -436,6 +436,7 @@ command="cmd_reportBrokenSite" data-l10n-id="menu-report-broken-site" disabled="true" + hidden="true" appmenu-data-l10n-id="appmenuitem-report-broken-site"/> <menuitem id="feedbackPage" hidden="true" View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/a5c64f4… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/a5c64f4… 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.4.0esr-15.0-1] fixup! BB 18905: Hide unwanted items from help menu
by morgan (@morgan) 21 Oct '25

21 Oct '25
morgan pushed to branch tor-browser-140.4.0esr-15.0-1 at The Tor Project / Applications / Tor Browser Commits: 722eb76d by Henry Wilkes at 2025-10-21T14:37:47+00:00 fixup! BB 18905: Hide unwanted items from help menu TB 44141: Hide "Report broken site" items by default. This should stop the app menu and help menu from jumping in height when first opened. - - - - - 2 changed files: - browser/base/content/appmenu-viewcache.inc.xhtml - browser/base/content/browser-menubar.inc Changes: ===================================== browser/base/content/appmenu-viewcache.inc.xhtml ===================================== @@ -160,6 +160,7 @@ data-l10n-id="appmenuitem-report-broken-site" closemenu="none" disabled="true" + hidden="true" command="cmd_reportBrokenSite"/> <toolbarbutton id="appMenu-help-button2" class="subviewbutton subviewbutton-nav" ===================================== browser/base/content/browser-menubar.inc ===================================== @@ -443,6 +443,7 @@ command="cmd_reportBrokenSite" data-l10n-id="menu-report-broken-site" disabled="true" + hidden="true" appmenu-data-l10n-id="appmenuitem-report-broken-site"/> <menuitem id="feedbackPage" hidden="true" View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/722eb76… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/722eb76… 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 tor-browser-140.4.0esr-15.0-1-build3
by morgan (@morgan) 21 Oct '25

21 Oct '25
morgan pushed new tag tor-browser-140.4.0esr-15.0-1-build3 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
[Git][tpo/applications/tor-browser][tor-browser-140.4.0esr-15.0-1] fixup! TB 40597: Implement TorSettings module
by morgan (@morgan) 21 Oct '25

21 Oct '25
morgan pushed to branch tor-browser-140.4.0esr-15.0-1 at The Tor Project / Applications / Tor Browser Commits: b4b9b6b3 by Morgan at 2025-10-21T12:46:55+00:00 fixup! TB 40597: Implement TorSettings module Bug 41532: Rename meek-azure to meek in ppt_config.json - - - - - 1 changed file: - toolkit/content/pt_config.json Changes: ===================================== toolkit/content/pt_config.json ===================================== @@ -1,5 +1,5 @@ { - "_comment": "Used for dev build, replaced for release builds in tor-browser-build. This file is copied from tor-browser-build 00ff7fc6dd757ce2383a74c0eafa4f5fbfef62a5:projects/tor-expert-bundle/pt_config.json", + "_comment": "Used for dev build, replaced for release builds in tor-browser-build. This file is copied from tor-browser-build 109be58b721fdd586ff1cff08a3af940765d6f6d:projects/tor-expert-bundle/pt_config.json", "recommendedDefault" : "obfs4", "pluggableTransports" : { "lyrebird" : "ClientTransportPlugin meek_lite,obfs2,obfs3,obfs4,scramblesuit,webtunnel exec ${pt_path}lyrebird${pt_extension}", @@ -7,7 +7,7 @@ "conjure" : "ClientTransportPlugin conjure exec ${pt_path}conjure-client${pt_extension} -registerURL https://registration.refraction.network/api" }, "bridges" : { - "meek-azure" : [ + "meek" : [ "meek_lite 192.0.2.20:80 url=https://1603026938.rsc.cdn77.org front=www.phpmyadmin.net utls=HelloRandomizedALPN" ], "obfs4" : [ View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/b4b9b6b… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/b4b9b6b… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][maint-15.0] Bug 41532: Rename meek-azure to meek in pt_config.json
by morgan (@morgan) 21 Oct '25

21 Oct '25
morgan pushed to branch maint-15.0 at The Tor Project / Applications / tor-browser-build Commits: 109be58b by Morgan at 2025-10-20T18:03:21+00:00 Bug 41532: Rename meek-azure to meek in pt_config.json - - - - - 1 changed file: - projects/tor-expert-bundle/pt_config.json Changes: ===================================== projects/tor-expert-bundle/pt_config.json ===================================== @@ -6,7 +6,7 @@ "conjure" : "ClientTransportPlugin conjure exec ${pt_path}conjure-client${pt_extension} -registerURL https://registration.refraction.network/api" }, "bridges" : { - "meek-azure" : [ + "meek" : [ "meek_lite 192.0.2.20:80 url=https://1603026938.rsc.cdn77.org front=www.phpmyadmin.net utls=HelloRandomizedALPN" ], "obfs4" : [ View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/1… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/1… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][main] Bug 41532: Rename meek-azure to meek in pt_config.json
by morgan (@morgan) 21 Oct '25

21 Oct '25
morgan pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: 109be58b by Morgan at 2025-10-20T18:03:21+00:00 Bug 41532: Rename meek-azure to meek in pt_config.json - - - - - 1 changed file: - projects/tor-expert-bundle/pt_config.json Changes: ===================================== projects/tor-expert-bundle/pt_config.json ===================================== @@ -6,7 +6,7 @@ "conjure" : "ClientTransportPlugin conjure exec ${pt_path}conjure-client${pt_extension} -registerURL https://registration.refraction.network/api" }, "bridges" : { - "meek-azure" : [ + "meek" : [ "meek_lite 192.0.2.20:80 url=https://1603026938.rsc.cdn77.org front=www.phpmyadmin.net utls=HelloRandomizedALPN" ], "obfs4" : [ View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/1… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/1… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • ...
  • 1973
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.