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 -----
  • 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
  • 20248 discussions
[tor-android-service/master] Bug 33559: Update tor-android-service for new Android toolchain
by gk@torproject.org 12 Jun '20

12 Jun '20
commit 8f40b9b2a6f4f8c05b84c5a0fec26a4b7ad77098 Author: Georg Koppen <gk(a)torproject.org> Date: Mon May 18 13:13:15 2020 +0000 Bug 33559: Update tor-android-service for new Android toolchain Patch based on work done by sisbell, thanks! --- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 001bdb1..986f2ef 100644 --- a/build.gradle +++ b/build.gradle @@ -6,6 +6,7 @@ buildscript { mavenLocal() google() mavenCentral() + maven { url "https://repo.spring.io/plugins-release" } } dependencies { classpath "com.android.tools.build:gradle:${androidplugin}" @@ -23,4 +24,4 @@ allprojects { maven { url "https://repo.spring.io/plugins-release" } maven { url "https://raw.githubusercontent.com/guardianproject/gpmaven/master" } } -} \ No newline at end of file +}
1 0
0 0
[torbutton/master] Bug 34250: Only listen to 'started' in noscript-control.js
by gk@torproject.org 11 Jun '20

11 Jun '20
commit 21e6fbd52a4b38150a56fb64475e4fd80352b92f Author: Alex Catarineu <acat(a)torproject.org> Date: Mon May 18 12:59:36 2020 +0200 Bug 34250: Only listen to 'started' in noscript-control.js This fixes a race condition which can be hit in some cases, such as running some marionette tests. The race condition results in noscript not being initialized properly due to the 'pageshow' event being received before 'started'. --- modules/noscript-control.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/noscript-control.js b/modules/noscript-control.js index 0383b9b5..02d5abea 100644 --- a/modules/noscript-control.js +++ b/modules/noscript-control.js @@ -146,7 +146,7 @@ var initialize = () => { let messageListener = (a, b, c) => { try { log(3, `Message received from NoScript: ${JSON.stringify([a, b, c])}`); - if (!["started", "pageshow"].includes(a.__meta.name)) { + if (a.__meta.name !== "started") { return; } Services.mm.removeMessageListener("MessageChannel:Messages", listener);
1 0
0 0
[tor-browser/tor-browser-68.9.0esr-9.5-1] fixup! Bug 21952: Implement Onion-Location
by gk@torproject.org 11 Jun '20

11 Jun '20
commit da4458c8d39845e56d70051c61f49b7d50b0c2da Author: Kathy Brade <brade(a)pearlcrescent.com> Date: Tue Jun 9 14:38:38 2020 -0400 fixup! Bug 21952: Implement Onion-Location Fixes bug 34361. --- .../components/onionservices/content/onionlocationPreferences.inc.xul | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/components/onionservices/content/onionlocationPreferences.inc.xul b/browser/components/onionservices/content/onionlocationPreferences.inc.xul index c386316c98dc..c285f403f99b 100644 --- a/browser/components/onionservices/content/onionlocationPreferences.inc.xul +++ b/browser/components/onionservices/content/onionlocationPreferences.inc.xul @@ -1,6 +1,6 @@ # Copyright (c) 2020, The Tor Project, Inc. -<groupbox id="onionServicesGroup" data-category="panePrivacy" data-subcategory="onionservices"> +<groupbox id="onionServicesGroup" data-category="panePrivacy" data-subcategory="onionservices" hidden="true"> <label><html:h2 id="onionServicesTitle"></html:h2></label> <label><label class="tail-with-learn-more" id="prioritizeOnionsDesc"></label><label class="learnMore" is="text-link" id="onionServicesLearnMore"></label></label>
1 0
0 0
[tor-browser/tor-browser-68.9.0esr-10.0-1] fixup! Bug 21952: Implement Onion-Location
by gk@torproject.org 11 Jun '20

11 Jun '20
commit e170c676b8b30f92c7279e8a817ebe8ca4cb2f09 Author: Kathy Brade <brade(a)pearlcrescent.com> Date: Tue Jun 9 14:38:38 2020 -0400 fixup! Bug 21952: Implement Onion-Location Fixes bug 34361. --- .../components/onionservices/content/onionlocationPreferences.inc.xul | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/components/onionservices/content/onionlocationPreferences.inc.xul b/browser/components/onionservices/content/onionlocationPreferences.inc.xul index c386316c98dc..c285f403f99b 100644 --- a/browser/components/onionservices/content/onionlocationPreferences.inc.xul +++ b/browser/components/onionservices/content/onionlocationPreferences.inc.xul @@ -1,6 +1,6 @@ # Copyright (c) 2020, The Tor Project, Inc. -<groupbox id="onionServicesGroup" data-category="panePrivacy" data-subcategory="onionservices"> +<groupbox id="onionServicesGroup" data-category="panePrivacy" data-subcategory="onionservices" hidden="true"> <label><html:h2 id="onionServicesTitle"></html:h2></label> <label><label class="tail-with-learn-more" id="prioritizeOnionsDesc"></label><label class="learnMore" is="text-link" id="onionServicesLearnMore"></label></label>
1 0
0 0
[tor-browser/tor-browser-68.9.0esr-10.0-1] fixup! Bug 30237: Add v3 onion services client authentication prompt
by gk@torproject.org 11 Jun '20

11 Jun '20
commit c5cd695c6803f32c97a4f5ec052155c3d021b379 Author: Kathy Brade <brade(a)pearlcrescent.com> Date: Tue Jun 9 13:58:12 2020 -0400 fixup! Bug 30237: Add v3 onion services client authentication prompt Fixes bug 34362. --- browser/modules/TorStrings.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/modules/TorStrings.jsm b/browser/modules/TorStrings.jsm index 8f3a9ce838b8..e8a8d37ae373 100644 --- a/browser/modules/TorStrings.jsm +++ b/browser/modules/TorStrings.jsm @@ -381,7 +381,7 @@ var TorStrings = { }, authPrompt: { description: - getString("authPrompt.description", "%S is requesting your private key."), + getString("authPrompt.description2", "%S is requesting that you authenticate."), keyPlaceholder: getString("authPrompt.keyPlaceholder", "Enter your key"), done: getString("authPrompt.done", "Done"), doneAccessKey: getString("authPrompt.doneAccessKey", "d"),
1 0
0 0
[tor-browser/tor-browser-68.9.0esr-9.5-1] fixup! Bug 30237: Add v3 onion services client authentication prompt
by gk@torproject.org 11 Jun '20

11 Jun '20
commit aace250e0ac5bb4b36004aadd0cab2d05c23d5d5 Author: Kathy Brade <brade(a)pearlcrescent.com> Date: Tue Jun 9 13:58:12 2020 -0400 fixup! Bug 30237: Add v3 onion services client authentication prompt Fixes bug 34362. --- browser/modules/TorStrings.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/modules/TorStrings.jsm b/browser/modules/TorStrings.jsm index 8f3a9ce838b8..e8a8d37ae373 100644 --- a/browser/modules/TorStrings.jsm +++ b/browser/modules/TorStrings.jsm @@ -381,7 +381,7 @@ var TorStrings = { }, authPrompt: { description: - getString("authPrompt.description", "%S is requesting your private key."), + getString("authPrompt.description2", "%S is requesting that you authenticate."), keyPlaceholder: getString("authPrompt.keyPlaceholder", "Enter your key"), done: getString("authPrompt.done", "Done"), doneAccessKey: getString("authPrompt.doneAccessKey", "d"),
1 0
0 0
[torbutton/master] Bug 34362: Improve onion service authentication prompt
by gk@torproject.org 11 Jun '20

11 Jun '20
commit 605e9d398ab026ce53ec8ad106848bfe5ae5e627 Author: Kathy Brade <brade(a)pearlcrescent.com> Date: Tue Jun 9 13:59:12 2020 -0400 Bug 34362: Improve onion service authentication prompt To avoid misleading users about private key usage, change: example.onion is requesting your private key. to: example.onion is requesting that you authenticate. --- chrome/locale/en-US/torbutton.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/locale/en-US/torbutton.properties b/chrome/locale/en-US/torbutton.properties index 7b6c2d65..53651280 100644 --- a/chrome/locale/en-US/torbutton.properties +++ b/chrome/locale/en-US/torbutton.properties @@ -111,7 +111,7 @@ onionServices.introTimedOut=Failed to connect to the onionsite, possibly due to onionServices.introTimedOut.longDescription=Details: %S — The connection to the requested onion service timed out while trying to build the rendezvous circuit. # # LOCALIZATION NOTE: %S will be replaced with the .onion address. -onionServices.authPrompt.description=%S is requesting your private key. +onionServices.authPrompt.description2=%S is requesting that you authenticate. onionServices.authPrompt.keyPlaceholder=Enter your private key for this onion service onionServices.authPrompt.done=Done onionServices.authPrompt.doneAccessKey=d
1 0
0 0
[tor-browser/tor-browser-68.9.0esr-9.5-1] fixup! Bug 30237: Add v3 onion services client authentication prompt
by gk@torproject.org 11 Jun '20

11 Jun '20
commit 58ac4b710c63854d6285b437e241e0284b43dbee Author: Kathy Brade <brade(a)pearlcrescent.com> Date: Mon Jun 8 11:11:28 2020 -0400 fixup! Bug 30237: Add v3 onion services client authentication prompt Fixes bug 34369. --- browser/modules/TorStrings.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/modules/TorStrings.jsm b/browser/modules/TorStrings.jsm index 05bbfd63ef60..8f3a9ce838b8 100644 --- a/browser/modules/TorStrings.jsm +++ b/browser/modules/TorStrings.jsm @@ -333,7 +333,7 @@ var TorStrings = { let retval = { learnMore: getString("learnMore", "Learn more"), - learnMoreURL: `https://2019.www.torproject.org/docs/tor-manual-dev.html.${getLocale()}#_client_authorization`, + learnMoreURL: `https://support.torproject.org/${getLocale()}/onionservices/client-auth/`, errorPage: { browser: getString("errorPage.browser", "Browser"), network: getString("errorPage.network", "Network"),
1 0
0 0
[tor-browser/tor-browser-68.9.0esr-10.0-1] fixup! Bug 30237: Add v3 onion services client authentication prompt
by gk@torproject.org 11 Jun '20

11 Jun '20
commit 632beb89a79f17bdb0db266196c39b67fc11561f Author: Kathy Brade <brade(a)pearlcrescent.com> Date: Mon Jun 8 11:11:28 2020 -0400 fixup! Bug 30237: Add v3 onion services client authentication prompt Fixes bug 34369. --- browser/modules/TorStrings.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/modules/TorStrings.jsm b/browser/modules/TorStrings.jsm index 05bbfd63ef60..8f3a9ce838b8 100644 --- a/browser/modules/TorStrings.jsm +++ b/browser/modules/TorStrings.jsm @@ -333,7 +333,7 @@ var TorStrings = { let retval = { learnMore: getString("learnMore", "Learn more"), - learnMoreURL: `https://2019.www.torproject.org/docs/tor-manual-dev.html.${getLocale()}#_client_authorization`, + learnMoreURL: `https://support.torproject.org/${getLocale()}/onionservices/client-auth/`, errorPage: { browser: getString("errorPage.browser", "Browser"), network: getString("errorPage.network", "Network"),
1 0
0 0
[tor-browser/tor-browser-68.9.0esr-10.0-1] fixup! Bug 21952: Implement Onion-Location
by gk@torproject.org 11 Jun '20

11 Jun '20
commit 8c3168ab58f038cc1e72d2f408bee1e5f715c455 Author: Kathy Brade <brade(a)pearlcrescent.com> Date: Tue Jun 9 14:59:00 2020 -0400 fixup! Bug 21952: Implement Onion-Location Fixes bug 34379. --- browser/modules/TorStrings.jsm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/modules/TorStrings.jsm b/browser/modules/TorStrings.jsm index 66c44257c163..05bbfd63ef60 100644 --- a/browser/modules/TorStrings.jsm +++ b/browser/modules/TorStrings.jsm @@ -434,7 +434,7 @@ var TorStrings = { tryThis: getString("tryThis", "Try this: Onionsite"), onionAvailable: getString("onionAvailable", "Onionsite available"), learnMore: getString("learnMore", "Learn more"), - learnMoreURL: `https://tb-manual.torproject.org/${getLocale()}`, // TODO: replace when manual page is available. + learnMoreURL: `https://tb-manual.torproject.org/${getLocale()}/onion-services/`, always: getString("always", "Always"), askEverytime: getString("askEverytime", "Ask you every time"), prioritizeOnionsDescription: getString(
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 1436
  • 1437
  • 1438
  • 1439
  • 1440
  • 1441
  • 1442
  • ...
  • 2025
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.