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

October 2025

  • 1 participants
  • 213 discussions
[Git][tpo/applications/tor-browser][tor-browser-140.3.0esr-15.0-1] fixup! TB 34403 [android]: Disable Normal mode by default.
by brizental (@brizental) 01 Oct '25

01 Oct '25
brizental pushed to branch tor-browser-140.3.0esr-15.0-1 at The Tor Project / Applications / Tor Browser Commits: 2bd61ad7 by Beatriz Rizental at 2025-10-02T01:22:22+02:00 fixup! TB 34403 [android]: Disable Normal mode by default. Hide option to open bookmarks in normal mode. - - - - - 1 changed file: - mobile/android/fenix/app/src/main/java/org/mozilla/fenix/library/bookmarks/ui/BookmarksScreen.kt Changes: ===================================== mobile/android/fenix/app/src/main/java/org/mozilla/fenix/library/bookmarks/ui/BookmarksScreen.kt ===================================== @@ -64,6 +64,7 @@ import androidx.compose.ui.semantics.testTag import androidx.compose.ui.semantics.testTagsAsResourceId import androidx.compose.ui.text.style.TextAlign import androidx.compose.ui.unit.dp +import androidx.compose.ui.platform.LocalContext import androidx.lifecycle.compose.LocalLifecycleOwner import androidx.navigation.NavHostController import androidx.navigation.compose.NavHost @@ -88,6 +89,7 @@ import org.mozilla.fenix.compose.list.SelectableIconListItem import org.mozilla.fenix.compose.snackbar.AcornSnackbarHostState import org.mozilla.fenix.compose.snackbar.SnackbarHost import org.mozilla.fenix.compose.snackbar.SnackbarState +import org.mozilla.fenix.ext.settings import org.mozilla.fenix.library.bookmarks.BookmarksTestTag.ADD_BOOKMARK_FOLDER_NAME_TEXT_FIELD import org.mozilla.fenix.library.bookmarks.BookmarksTestTag.EDIT_BOOKMARK_ITEM_TITLE_TEXT_FIELD import org.mozilla.fenix.library.bookmarks.BookmarksTestTag.EDIT_BOOKMARK_ITEM_URL_TEXT_FIELD @@ -883,7 +885,7 @@ private fun BookmarkListOverflowMenu( onDismissRequest: () -> Unit, store: BookmarksStore, ) { - val menuItems = listOf( + val menuItems = listOfNotNull( MenuItem( title = stringResource(R.string.bookmark_menu_select_all_bookmarks), onClick = { store.dispatch(BookmarksListMenuAction.SelectAll) }, @@ -891,7 +893,7 @@ private fun BookmarkListOverflowMenu( MenuItem( title = stringResource(R.string.bookmark_menu_open_in_new_tab_button), onClick = { store.dispatch(BookmarksListMenuAction.MultiSelect.OpenInNormalTabsClicked) }, - ), + ).takeIf { !LocalContext.current.settings().shouldDisableNormalMode }, MenuItem( title = stringResource(R.string.bookmark_menu_open_in_private_tab_button), onClick = { store.dispatch(BookmarksListMenuAction.MultiSelect.OpenInPrivateTabsClicked) }, @@ -921,7 +923,7 @@ private fun BookmarkListItemMenu( bookmark: BookmarkItem.Bookmark, store: BookmarksStore, ) { - val menuItems = listOf( + val menuItems = listOfNotNull( MenuItem( title = stringResource(R.string.bookmark_menu_edit_button), onClick = { store.dispatch(BookmarksListMenuAction.Bookmark.EditClicked(bookmark)) }, @@ -937,7 +939,7 @@ private fun BookmarkListItemMenu( MenuItem( title = stringResource(R.string.bookmark_menu_open_in_new_tab_button), onClick = { store.dispatch(BookmarksListMenuAction.Bookmark.OpenInNormalTabClicked(bookmark)) }, - ), + ).takeIf { !LocalContext.current.settings().shouldDisableNormalMode }, MenuItem( title = stringResource(R.string.bookmark_menu_open_in_private_tab_button), onClick = { store.dispatch(BookmarksListMenuAction.Bookmark.OpenInPrivateTabClicked(bookmark)) }, @@ -963,7 +965,7 @@ private fun BookmarkListFolderMenu( folder: BookmarkItem.Folder, store: BookmarksStore, ) { - val menuItems = listOf( + val menuItems = listOfNotNull( MenuItem( title = stringResource(R.string.bookmark_menu_edit_button), onClick = { store.dispatch(BookmarksListMenuAction.Folder.EditClicked(folder)) }, @@ -971,7 +973,7 @@ private fun BookmarkListFolderMenu( MenuItem( title = stringResource(R.string.bookmark_menu_open_all_in_tabs_button), onClick = { store.dispatch(BookmarksListMenuAction.Folder.OpenAllInNormalTabClicked(folder)) }, - ), + ).takeIf { !LocalContext.current.settings().shouldDisableNormalMode }, MenuItem( title = stringResource(R.string.bookmark_menu_open_all_in_private_tabs_button), onClick = { store.dispatch(BookmarksListMenuAction.Folder.OpenAllInPrivateTabClicked(folder)) }, View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/2bd61ad… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/2bd61ad… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/torbrowser-launcher] Deleted branch asciiwolf/metainfo-fix-2
by asciiwolf (@asciiwolf) 01 Oct '25

01 Oct '25
asciiwolf deleted branch asciiwolf/metainfo-fix-2 at The Tor Project / Applications / torbrowser-launcher -- You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/torbrowser-launcher][main] 2 commits: metainfo: Add bug tracker url
by asciiwolf (@asciiwolf) 01 Oct '25

01 Oct '25
asciiwolf pushed to branch main at The Tor Project / Applications / torbrowser-launcher Commits: c4760ed9 by asciiwolf at 2025-10-01T19:46:08+00:00 metainfo: Add bug tracker url - - - - - 7f2f9441 by asciiwolf at 2025-10-01T21:02:17+00:00 Merge branch 'asciiwolf/metainfo-fix-2' into 'main' metainfo: Add bug tracker url See merge request tpo/applications/torbrowser-launcher!40 - - - - - 1 changed file: - share/metainfo/org.torproject.torbrowser-launcher.metainfo.xml Changes: ===================================== share/metainfo/org.torproject.torbrowser-launcher.metainfo.xml ===================================== @@ -51,6 +51,7 @@ <caption xml:lang="cs">Okno pro změnu nastavení Spouštěče Prohlížeče Tor</caption> </screenshot> </screenshots> + <url type="bugtracker">https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/issues</url> <url type="homepage">https://gitlab.torproject.org/tpo/applications/torbrowser-launcher</url> <update_contact>boklm(a)torproject.org</update_contact> <content_rating type="oars-1.1"/> View it on GitLab: https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/compar… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/compar… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/torbrowser-launcher] Pushed new branch asciiwolf/metainfo-fix-2
by asciiwolf (@asciiwolf) 01 Oct '25

01 Oct '25
asciiwolf pushed new branch asciiwolf/metainfo-fix-2 at The Tor Project / Applications / torbrowser-launcher -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/tree/a… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/torbrowser-launcher] Deleted branch asciiwolf-metainfo-fix
by asciiwolf (@asciiwolf) 01 Oct '25

01 Oct '25
asciiwolf deleted branch asciiwolf-metainfo-fix at The Tor Project / Applications / torbrowser-launcher -- You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/torbrowser-launcher][main] metainfo: Remove deprecated developer_name tag
by boklm (@boklm) 01 Oct '25

01 Oct '25
boklm pushed to branch main at The Tor Project / Applications / torbrowser-launcher Commits: c31af5e1 by asciiwolf at 2025-10-01T12:38:08+00:00 metainfo: Remove deprecated developer_name tag - - - - - 1 changed file: - share/metainfo/org.torproject.torbrowser-launcher.metainfo.xml Changes: ===================================== share/metainfo/org.torproject.torbrowser-launcher.metainfo.xml ===================================== @@ -9,7 +9,6 @@ <name>Tor Browser Launcher</name> <name xml:lang="ar">مشغّل متصفح تور</name> <name xml:lang="cs">Spouštěč Prohlížeče Tor</name> - <developer_name>Tor Project</developer_name> <developer id="org.torproject"> <name>Tor Project</name> </developer> View it on GitLab: https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/torbrowser-launcher/-/commit… 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.3.0esr-15.0-1] fixup! Add CI for Base Browser
by brizental (@brizental) 01 Oct '25

01 Oct '25
brizental pushed to branch base-browser-140.3.0esr-15.0-1 at The Tor Project / Applications / Tor Browser Commits: 2823e4e4 by Beatriz Rizental at 2025-10-01T19:22:18+02:00 fixup! Add CI for Base Browser Use custom CI container for translations job. - - - - - 1 changed file: - .gitlab/ci/jobs/update-translations.yml Changes: ===================================== .gitlab/ci/jobs/update-translations.yml ===================================== @@ -17,14 +17,11 @@ combine-en-US-translations: - extends: .update-translation-base + extends: + - .with-local-repo-bash + - .update-translation-base needs: [] - image: python - variables: - PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" - cache: - paths: - - .cache/pip + image: $IMAGE_PATH # Artifact is for translation project job artifacts: paths: @@ -34,12 +31,14 @@ combine-en-US-translations: dotenv: job_id.env # Don't load artifacts for this job. dependencies: [] + tags: + # Run these jobs in the browser dedicated runners. + - firefox script: # Save this CI_JOB_ID to the dotenv file to be used in the variables for the # push-en-US-translations job. - echo 'COMBINE_TRANSLATIONS_JOB_ID='"$CI_JOB_ID" >job_id.env - - pip install compare_locales - - python ./tools/base_browser/l10n/combine-translation-versions.py "$CI_COMMIT_BRANCH" "$TRANSLATION_FILES" "$COMBINED_FILES_JSON" + - ./mach python ./tools/base_browser/l10n/combine-translation-versions.py "$CI_COMMIT_BRANCH" "$TRANSLATION_FILES" "$COMBINED_FILES_JSON" push-en-US-translations: extends: .update-translation-base View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/2823e4e… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/2823e4e… 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.3.0esr-15.0-1] fixup! Add CI for Base Browser
by brizental (@brizental) 01 Oct '25

01 Oct '25
brizental pushed to branch mullvad-browser-140.3.0esr-15.0-1 at The Tor Project / Applications / Mullvad Browser Commits: 35bd5d38 by Beatriz Rizental at 2025-10-01T19:21:50+02:00 fixup! Add CI for Base Browser Use custom CI container for translations job. - - - - - 1 changed file: - .gitlab/ci/jobs/update-translations.yml Changes: ===================================== .gitlab/ci/jobs/update-translations.yml ===================================== @@ -59,14 +59,11 @@ combine-en-US-translations: - extends: .update-translation-base + extends: + - .with-local-repo-bash + - .update-translation-base needs: [] - image: python - variables: - PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" - cache: - paths: - - .cache/pip + image: $IMAGE_PATH # Artifact is for translation project job artifacts: paths: @@ -76,12 +73,14 @@ combine-en-US-translations: dotenv: job_id.env # Don't load artifacts for this job. dependencies: [] + tags: + # Run these jobs in the browser dedicated runners. + - firefox script: # Save this CI_JOB_ID to the dotenv file to be used in the variables for the # push-en-US-translations job. - echo 'COMBINE_TRANSLATIONS_JOB_ID='"$CI_JOB_ID" >job_id.env - - pip install compare_locales - - python ./tools/base_browser/l10n/combine-translation-versions.py "$CI_COMMIT_BRANCH" "$TRANSLATION_FILES" "$COMBINED_FILES_JSON" + - ./mach python ./tools/base_browser/l10n/combine-translation-versions.py "$CI_COMMIT_BRANCH" "$TRANSLATION_FILES" "$COMBINED_FILES_JSON" push-en-US-translations: extends: .update-translation-base View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/35b… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/35b… 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.3.0esr-15.0-1] fixup! Add CI for Base Browser
by brizental (@brizental) 01 Oct '25

01 Oct '25
brizental pushed to branch tor-browser-140.3.0esr-15.0-1 at The Tor Project / Applications / Tor Browser Commits: b368d2ab by Beatriz Rizental at 2025-10-01T19:12:41+02:00 fixup! Add CI for Base Browser Use custom CI container for translations job. - - - - - 1 changed file: - .gitlab/ci/jobs/update-translations.yml Changes: ===================================== .gitlab/ci/jobs/update-translations.yml ===================================== @@ -80,14 +80,11 @@ combine-en-US-translations: - extends: .update-translation-base + extends: + - .with-local-repo-bash + - .update-translation-base needs: [] - image: python - variables: - PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" - cache: - paths: - - .cache/pip + image: $IMAGE_PATH # Artifact is for translation project job artifacts: paths: @@ -97,12 +94,14 @@ combine-en-US-translations: dotenv: job_id.env # Don't load artifacts for this job. dependencies: [] + tags: + # Run these jobs in the browser dedicated runners. + - firefox script: # Save this CI_JOB_ID to the dotenv file to be used in the variables for the # push-en-US-translations job. - echo 'COMBINE_TRANSLATIONS_JOB_ID='"$CI_JOB_ID" >job_id.env - - pip install compare_locales - - python ./tools/base_browser/l10n/combine-translation-versions.py "$CI_COMMIT_BRANCH" "$TRANSLATION_FILES" "$COMBINED_FILES_JSON" + - ./mach python ./tools/base_browser/l10n/combine-translation-versions.py "$CI_COMMIT_BRANCH" "$TRANSLATION_FILES" "$COMBINED_FILES_JSON" push-en-US-translations: extends: .update-translation-base View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/b368d2a… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/b368d2a… 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.3.0esr-15.0-1] fixup! Firefox preference overrides.
by brizental (@brizental) 01 Oct '25

01 Oct '25
brizental pushed to branch mullvad-browser-140.3.0esr-15.0-1 at The Tor Project / Applications / Mullvad Browser Commits: 3cad3c4f by Beatriz Rizental at 2025-10-01T19:06:52+02:00 fixup! Firefox preference overrides. Do not trim the protocol from URLs. - - - - - 1 changed file: - browser/app/profile/001-base-profile.js Changes: ===================================== browser/app/profile/001-base-profile.js ===================================== @@ -1094,3 +1094,6 @@ pref("font.name-list.monospace.x-unicode", "Cousine, Noto Sans Balinese, Noto Sa // setting it will still change the value in `prefs.js`, but it will be ignored. // If this is ever unlocked, the value in prefs.js will be used. pref("browser.laterrun.enabled", false, locked); + +// tor-browser#44123: Never trim the protocol off of URLs. +pref("browser.urlbar.trimURLs", false); View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/3ca… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/3ca… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.