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
  • 20246 discussions
[Git][tpo/applications/torbrowser-launcher][main] 2 commits: Rename desktop files to rDNS format
by asciiwolf (@asciiwolf) 14 Apr '25

14 Apr '25
asciiwolf pushed to branch main at The Tor Project / Applications / torbrowser-launcher Commits: ab97d7f9 by AsciiWolf at 2025-03-20T22:36:16+01:00 Rename desktop files to rDNS format As recommended by the Desktop Entry Specification and already used on Flathub. Also fix the icon path in torbrowser_launcher/common.py - - - - - 3a2f757b by asciiwolf at 2025-04-14T12:58:17+00:00 Merge branch 'asciiwolf-rdns-desktop-files' into 'main' Rename desktop files to rDNS format See merge request tpo/applications/torbrowser-launcher!25 - - - - - 6 changed files: - share/applications/torbrowser.desktop → share/applications/org.torproject.torbrowser-launcher.desktop - share/applications/torbrowser-settings.desktop → share/applications/org.torproject.torbrowser-launcher.settings.desktop - share/icons/hicolor/128x128/apps/torbrowser.png → share/icons/hicolor/128x128/apps/org.torproject.torbrowser-launcher.png - share/metainfo/org.torproject.torbrowser-launcher.metainfo.xml - torbrowser_launcher/__init__.py - torbrowser_launcher/common.py Changes: ===================================== share/applications/torbrowser.desktop → share/applications/org.torproject.torbrowser-launcher.desktop ===================================== @@ -26,6 +26,6 @@ Comment[tr]=Tor Browser Başlat Exec=torbrowser-launcher %u Terminal=false Type=Application -Icon=torbrowser +Icon=org.torproject.torbrowser-launcher Categories=Network;WebBrowser; StartupWMClass=Tor Browser ===================================== share/applications/torbrowser-settings.desktop → share/applications/org.torproject.torbrowser-launcher.settings.desktop ===================================== @@ -32,5 +32,5 @@ Comment[tr]=Tor Browser Başlatıcı Ayarları Exec=torbrowser-launcher --settings Terminal=false Type=Application -Icon=torbrowser +Icon=org.torproject.torbrowser-launcher Categories=Network;WebBrowser; ===================================== share/icons/hicolor/128x128/apps/torbrowser.png → share/icons/hicolor/128x128/apps/org.torproject.torbrowser-launcher.png ===================================== ===================================== share/metainfo/org.torproject.torbrowser-launcher.metainfo.xml ===================================== @@ -3,7 +3,7 @@ <!-- Copyright 2024 Tor Project --> <component type="desktop-application"> <id>org.torproject.torbrowser-launcher</id> - <launchable type="desktop-id">torbrowser.desktop</launchable> + <launchable type="desktop-id">org.torproject.torbrowser-launcher.desktop</launchable> <metadata_license>CC0-1.0</metadata_license> <project_license>MIT</project_license> <name>Tor Browser Launcher</name> ===================================== torbrowser_launcher/__init__.py ===================================== @@ -82,7 +82,7 @@ def main(): app = Application() if "WAYLAND_DISPLAY" in os.environ: - app.setDesktopFileName("torbrowser") + app.setDesktopFileName("org.torproject.torbrowser-launcher") # Open the window gui = None ===================================== torbrowser_launcher/common.py ===================================== @@ -126,7 +126,7 @@ class Common(object): "old_data_dir": old_tbb_data, "tbl_bin": sys.argv[0], "icon_file": os.path.join( - os.path.dirname(SHARE), "pixmaps/torbrowser.png" + os.path.dirname(SHARE), "icons/hicolor/128x128/apps/org.torproject.torbrowser-launcher.png" ), "torproject_pem": os.path.join(SHARE, "torproject.pem"), "signing_keys": { 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/tor-browser][tor-browser-128.9.0esr-14.5-1] fixup! [android] Implement Android-native Connection Assist UI
by Dan Ballard (@dan) 11 Apr '25

11 Apr '25
Dan Ballard pushed to branch tor-browser-128.9.0esr-14.5-1 at The Tor Project / Applications / Tor Browser Commits: 7dd436ed by clairehurst at 2025-04-10T15:10:23-06:00 fixup! [android] Implement Android-native Connection Assist UI Bug 43576: Connection Assist on Android Fast Follows (Bug 41188) Remove unnecessary locale change listener - - - - - 1 changed file: - mobile/android/fenix/app/src/main/java/org/mozilla/fenix/tor/TorConnectionAssistFragment.kt Changes: ===================================== mobile/android/fenix/app/src/main/java/org/mozilla/fenix/tor/TorConnectionAssistFragment.kt ===================================== @@ -4,8 +4,6 @@ package org.mozilla.fenix.tor -import android.content.BroadcastReceiver -import android.content.Context import android.content.Intent import android.graphics.Color import android.os.Build @@ -58,15 +56,6 @@ class TorConnectionAssistFragment : Fragment(), UserInteractionHandler { inflater, container, false, ) - object : BroadcastReceiver() { - override fun onReceive(context: Context, intent: Intent) { - if (intent.action === Intent.ACTION_LOCALE_CHANGED) { - Log.v("LocaleReceiver", "received ACTION_LOCALE_CHANGED") - torConnectionAssistViewModel.fetchRegionNames() - } - } - } - viewLifecycleOwner.lifecycleScope.launch { repeatOnLifecycle(Lifecycle.State.STARTED) { torConnectionAssistViewModel.collectTorConnectStage() View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/7dd436e… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/7dd436e… 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_128_9_0esr_BUILD2
by ma1 (@ma1) 09 Apr '25

09 Apr '25
ma1 pushed new tag FIREFOX_128_9_0esr_BUILD2 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 tag 14.5a6
by ma1 (@ma1) 09 Apr '25

09 Apr '25
ma1 pushed new tag 14.5a6 at The Tor Project / Applications / Mullvad Browser -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/tree/14.5a6 You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/mullvad-browser-update-responses][main] 4 commits: alpha: new version, 14.5a6 (linux-x86_64)
by ma1 (@ma1) 09 Apr '25

09 Apr '25
ma1 pushed to branch main at The Tor Project / Applications / mullvad-browser-update-responses Commits: 13689a13 by hackademix at 2025-04-09T13:32:31+02:00 alpha: new version, 14.5a6 (linux-x86_64) - - - - - 40be429c by hackademix at 2025-04-09T13:32:31+02:00 alpha: new version, 14.5a6 (macos) - - - - - 6d8fb71e by hackademix at 2025-04-09T13:32:32+02:00 alpha: new version, 14.5a6 (windows-x86_64) - - - - - 0152fe77 by hackademix at 2025-04-09T13:32:32+02:00 alpha: new version, 14.5a6 - - - - - 31 changed files: - update_1/alpha/download-linux-x86_64.json - update_1/alpha/download-macos.json - update_1/alpha/download-windows-x86_64.json - update_1/alpha/downloads.json - update_1/alpha/linux-x86_64/.htaccess - − update_1/alpha/linux-x86_64/14.5a2-14.5a5-linux-x86_64.xml - − update_1/alpha/linux-x86_64/14.5a3-14.5a5-linux-x86_64.xml - + update_1/alpha/linux-x86_64/14.5a3-14.5a6-linux-x86_64.xml - − update_1/alpha/linux-x86_64/14.5a4-14.5a5-linux-x86_64.xml - + update_1/alpha/linux-x86_64/14.5a4-14.5a6-linux-x86_64.xml - + update_1/alpha/linux-x86_64/14.5a5-14.5a6-linux-x86_64.xml - − update_1/alpha/linux-x86_64/14.5a5-linux-x86_64.xml - + update_1/alpha/linux-x86_64/14.5a6-linux-x86_64.xml - update_1/alpha/macos/.htaccess - − update_1/alpha/macos/14.5a2-14.5a5-macos.xml - − update_1/alpha/macos/14.5a3-14.5a5-macos.xml - + update_1/alpha/macos/14.5a3-14.5a6-macos.xml - − update_1/alpha/macos/14.5a4-14.5a5-macos.xml - + update_1/alpha/macos/14.5a4-14.5a6-macos.xml - + update_1/alpha/macos/14.5a5-14.5a6-macos.xml - − update_1/alpha/macos/14.5a5-macos.xml - + update_1/alpha/macos/14.5a6-macos.xml - update_1/alpha/windows-x86_64/.htaccess - − update_1/alpha/windows-x86_64/14.5a2-14.5a5-windows-x86_64.xml - − update_1/alpha/windows-x86_64/14.5a3-14.5a5-windows-x86_64.xml - + update_1/alpha/windows-x86_64/14.5a3-14.5a6-windows-x86_64.xml - − update_1/alpha/windows-x86_64/14.5a4-14.5a5-windows-x86_64.xml - + update_1/alpha/windows-x86_64/14.5a4-14.5a6-windows-x86_64.xml - + update_1/alpha/windows-x86_64/14.5a5-14.5a6-windows-x86_64.xml - − update_1/alpha/windows-x86_64/14.5a5-windows-x86_64.xml - + update_1/alpha/windows-x86_64/14.5a6-windows-x86_64.xml The diff was not included because it is too large. View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser-update-respo… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser-update-respo… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-update-responses][main] 7 commits: alpha: new version, 14.5a6 (linux-i686)
by ma1 (@ma1) 09 Apr '25

09 Apr '25
ma1 pushed to branch main at The Tor Project / Applications / Tor Browser update responses Commits: aff8037a by hackademix at 2025-04-09T12:08:07+02:00 alpha: new version, 14.5a6 (linux-i686) - - - - - 0a238846 by hackademix at 2025-04-09T12:08:08+02:00 alpha: new version, 14.5a6 (linux-x86_64) - - - - - 5d754b4f by hackademix at 2025-04-09T12:08:08+02:00 alpha: new version, 14.5a6 (macos) - - - - - 33494de2 by hackademix at 2025-04-09T12:08:08+02:00 alpha: new version, 14.5a6 (windows-i686) - - - - - c1bef86e by hackademix at 2025-04-09T12:08:09+02:00 alpha: new version, 14.5a6 (windows-x86_64) - - - - - 1836cc03 by hackademix at 2025-04-09T12:08:09+02:00 alpha: new version, 14.5a6 (android) - - - - - 879d9a2d by hackademix at 2025-04-09T12:08:10+02:00 alpha: new version, 14.5a6 - - - - - 43 changed files: - update_3/alpha/download-android-aarch64.json - update_3/alpha/download-android-armv7.json - update_3/alpha/download-android-x86.json - update_3/alpha/download-android-x86_64.json - update_3/alpha/download-linux-i686.json - update_3/alpha/download-linux-x86_64.json - update_3/alpha/download-macos.json - update_3/alpha/download-windows-i686.json - update_3/alpha/download-windows-x86_64.json - update_3/alpha/downloads.json - update_3/alpha/linux-i686/.htaccess - update_3/alpha/linux-i686/14.5a2-14.5a5-linux-i686.xml → update_3/alpha/linux-i686/14.5a3-14.5a6-linux-i686.xml - update_3/alpha/linux-i686/14.5a3-14.5a5-linux-i686.xml → update_3/alpha/linux-i686/14.5a4-14.5a6-linux-i686.xml - update_3/alpha/linux-i686/14.5a4-14.5a5-linux-i686.xml → update_3/alpha/linux-i686/14.5a5-14.5a6-linux-i686.xml - update_3/alpha/linux-i686/14.5a5-linux-i686.xml → update_3/alpha/linux-i686/14.5a6-linux-i686.xml - update_3/alpha/linux-x86_64/.htaccess - update_3/alpha/linux-x86_64/14.5a2-14.5a5-linux-x86_64.xml → update_3/alpha/linux-x86_64/14.5a3-14.5a6-linux-x86_64.xml - update_3/alpha/linux-x86_64/14.5a3-14.5a5-linux-x86_64.xml → update_3/alpha/linux-x86_64/14.5a4-14.5a6-linux-x86_64.xml - update_3/alpha/linux-x86_64/14.5a4-14.5a5-linux-x86_64.xml → update_3/alpha/linux-x86_64/14.5a5-14.5a6-linux-x86_64.xml - update_3/alpha/linux-x86_64/14.5a5-linux-x86_64.xml → update_3/alpha/linux-x86_64/14.5a6-linux-x86_64.xml - update_3/alpha/macos/.htaccess - update_3/alpha/macos/14.5a4-14.5a5-macos.xml → update_3/alpha/macos/14.5a3-14.5a6-macos.xml - update_3/alpha/macos/14.5a2-14.5a5-macos.xml → update_3/alpha/macos/14.5a4-14.5a6-macos.xml - update_3/alpha/macos/14.5a3-14.5a5-macos.xml → update_3/alpha/macos/14.5a5-14.5a6-macos.xml - update_3/alpha/macos/14.5a5-macos.xml → update_3/alpha/macos/14.5a6-macos.xml - update_3/alpha/windows-i686/.htaccess - − update_3/alpha/windows-i686/14.5a2-14.5a5-windows-i686.xml - − update_3/alpha/windows-i686/14.5a3-14.5a5-windows-i686.xml - + update_3/alpha/windows-i686/14.5a3-14.5a6-windows-i686.xml - − update_3/alpha/windows-i686/14.5a4-14.5a5-windows-i686.xml - + update_3/alpha/windows-i686/14.5a4-14.5a6-windows-i686.xml - + update_3/alpha/windows-i686/14.5a5-14.5a6-windows-i686.xml - − update_3/alpha/windows-i686/14.5a5-windows-i686.xml - + update_3/alpha/windows-i686/14.5a6-windows-i686.xml - update_3/alpha/windows-x86_64/.htaccess - − update_3/alpha/windows-x86_64/14.5a2-14.5a5-windows-x86_64.xml - − update_3/alpha/windows-x86_64/14.5a3-14.5a5-windows-x86_64.xml - + update_3/alpha/windows-x86_64/14.5a3-14.5a6-windows-x86_64.xml - − update_3/alpha/windows-x86_64/14.5a4-14.5a5-windows-x86_64.xml - + update_3/alpha/windows-x86_64/14.5a4-14.5a6-windows-x86_64.xml - + update_3/alpha/windows-x86_64/14.5a5-14.5a6-windows-x86_64.xml - − update_3/alpha/windows-x86_64/14.5a5-windows-x86_64.xml - + update_3/alpha/windows-x86_64/14.5a6-windows-x86_64.xml The diff was not included because it is too large. View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build] Pushed new tag mb-14.5a6-build1
by morgan (@morgan) 09 Apr '25

09 Apr '25
morgan pushed new tag mb-14.5a6-build1 at The Tor Project / Applications / tor-browser-build -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/tree/mb-… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build] Pushed new tag tbb-14.5a6-build1
by morgan (@morgan) 09 Apr '25

09 Apr '25
morgan pushed new tag tbb-14.5a6-build1 at The Tor Project / Applications / tor-browser-build -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/tree/tbb… 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-128.9.0esr-14.5-1-build2
by morgan (@morgan) 09 Apr '25

09 Apr '25
morgan pushed new tag tor-browser-128.9.0esr-14.5-1-build2 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-build][main] Bug 41404,41405: Prepare Tor,Mullvad Browser 14.5a6
by morgan (@morgan) 09 Apr '25

09 Apr '25
morgan pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: 281c7f6b by Morgan at 2025-04-08T19:57:53+00:00 Bug 41404,41405: Prepare Tor,Mullvad Browser 14.5a6 - - - - - 10 changed files: - projects/browser/Bundle-Data/Docs-MB/ChangeLog.txt - projects/browser/Bundle-Data/Docs-TBB/ChangeLog.txt - projects/browser/config - projects/firefox/config - projects/geckoview/config - projects/go/config - projects/manual/config - projects/tor/config - projects/translation/config - rbm.conf Changes: ===================================== projects/browser/Bundle-Data/Docs-MB/ChangeLog.txt ===================================== @@ -1,3 +1,26 @@ +Mullvad Browser 14.5a6 - April 08 2025 + * All Platforms + * Updated Firefox to 128.9.0esr + * Updated uBlock Origin to 1.63.2 + * Bug 410: Update learn more link text in about:mullvad-browser [mullvad-browser] + * Bug 411: Use the same logic in about:mullvad-browser as the about dialog for the release notes [mullvad-browser] + * Bug 417: Rebase Mullvad Browser Alpha onto 128.9.0esr [mullvad-browser] + * Bug 419: Create a Mullvad Browser version of migrateUI [mullvad-browser] + * Bug 41919: Add temporarily visible web content-size overlay after resizing window when letterboxing is enabled [tor-browser] + * Bug 43322: Stop blocking all fonts in FontFace [tor-browser] + * Bug 43601: Backport security fixes from Firefox 137 [tor-browser] + * Linux + * Bug 415: Load apparmor profile when configuring deb package [mullvad-browser] + * Build System + * All Platforms + * Bug 41365: Indent download*.json files [tor-browser-build] + * Bug 41409: Create a script for quickly setting up protected branches [tor-browser-build] + * Bug 41419: Add comment in downloads.json to mention that the file is deprecated, and that download-$platform.json should be used instead [tor-browser-build] + * Bug 41420: Update the changelog script for label updates [tor-browser-build] + * Bug 40083: rbm creates out/$project directories with mode 0700 [rbm] + * macOS + * Bug 41403: The rcodesign step has a wrong dmg name in alpha [tor-browser-build] + Mullvad Browser 14.5a5 - March 21 2025 * All Platforms * Updated uBlock Origin to 1.63.0 ===================================== projects/browser/Bundle-Data/Docs-TBB/ChangeLog.txt ===================================== @@ -1,3 +1,46 @@ +Tor Browser 14.5a6 - April 08 2025 + * All Platforms + * Updated Tor to 0.4.9.2-alpha + * Bug 43322: Stop blocking all fonts in FontFace [tor-browser] + * Bug 43443: Drop effective top level domain for `au.securedrop.tor.onion` [tor-browser] + * Bug 43585: Rebase Tor Browser alpha onto 128.9.0esr [tor-browser] + * Bug 43601: Backport security fixes from Firefox 137 [tor-browser] + * Bug 43628: Handle unavailability of NetworkLinkService API in Tor Connect [tor-browser] + * Bug 41425: Snowflake needs to be listed separately on torrc-defaults [tor-browser-build] + * Windows + macOS + Linux + * Updated Firefox to 128.9.0esr + * Bug 41919: Add temporarily visible web content-size overlay after resizing window when letterboxing is enabled [tor-browser] + * Bug 43130: Adjust preferences for contrast theme or forced colors [tor-browser] + * Bug 43531: Use "label" attribute rather than textContent for the bridge dialog XUL buttons [tor-browser] + * Bug 43563: TorConnect country/region names should change based on the app language [tor-browser] + * Android + * Updated GeckoView to 128.9.0esr + * Bug 43464: TBA Alpha and Nightly cannot be debugged with about:debugging [tor-browser] + * Bug 43565: The quit button on Android doesn't actually exit [tor-browser] + * Bug 43576: Connection Assist on Android Polish [tor-browser] + * Bug 43581: Bookmarks are failing to load on Tor Browser Android Alpha 14.5a5 [tor-browser] + * Bug 43593: Use "region" instead of "country" in connect assist [tor-browser] + * Bug 43604: TorDomainIsolator routinely clears Android browser circuit data [tor-browser] + * Bug 41422: Patch viaduct in Application Services to always return a backend error [tor-browser-build] + * Build System + * All Platforms + * Updated Go to 1.23.8 + * Bug 41365: Indent download*.json files [tor-browser-build] + * Bug 41406: Restore -desktop and -android Makefile targets. [tor-browser-build] + * Bug 41407: Use Lyrebird also for the Snowflake PT [tor-browser-build] + * Bug 41409: Create a script for quickly setting up protected branches [tor-browser-build] + * Bug 41411: Update licenses for PTs [tor-browser-build] + * Bug 41417: Bump the conjure version we ship [tor-browser-build] + * Bug 41419: Add comment in downloads.json to mention that the file is deprecated, and that download-$platform.json should be used instead [tor-browser-build] + * Bug 41420: Update the changelog script for label updates [tor-browser-build] + * Bug 41426: Set the Lyrebird version [tor-browser-build] + * Bug 40083: rbm creates out/$project directories with mode 0700 [rbm] + * macOS + * Bug 41403: The rcodesign step has a wrong dmg name in alpha [tor-browser-build] + * Android + * Bug 41400: Add branding localization to GeckoView [tor-browser-build] + * Bug 41410: Use the Lyrebird name on Android [tor-browser-build] + Tor Browser 14.5a5 - March 21 2025 * All Platforms * Updated Lyrebird to 0.6.0 ===================================== projects/browser/config ===================================== @@ -114,9 +114,9 @@ input_files: - URL: https://addons.mozilla.org/firefox/downloads/file/4411102/noscript-12.1.1.x… name: noscript sha256sum: f9639e63ffcfc352036de00e4ff6694bb0ca65a0bb8fbd103bd08f32dc1ff31a - - URL: https://addons.mozilla.org/firefox/downloads/file/4456610/ublock_origin-1.6… + - URL: https://addons.mozilla.org/firefox/downloads/file/4458450/ublock_origin-1.6… name: ublock-origin - sha256sum: 8a208284b53565957c878a93b717b46ea0d079cb097214062b76bb96dc18a0f4 + sha256sum: d93176cef4dc042e41ba500aa2a90e5d57b5be77449cbd522111585e3a0cd158 enable: '[% c("var/mullvad-browser") %]' - URL: https://cdn.mullvad.net/browser-extension/0.9.4/mullvad-browser-extension-0… name: mullvad-extension ===================================== projects/firefox/config ===================================== @@ -20,7 +20,7 @@ var: browser_series: '14.5' browser_rebase: 1 browser_branch: '[% c("var/browser_series") %]-[% c("var/browser_rebase") %]' - browser_build: 1 + browser_build: 2 copyright_year: '[% exec("git show -s --format=%ci " _ c("git_hash") _ "^{commit}", { exec_noco => 1 }).remove("-.*") %]' nightly_updates_publish_dir: '[% c("var/nightly_updates_publish_dir_prefix") %]nightly-[% c("var/osname") %]' gitlab_project: https://gitlab.torproject.org/tpo/applications/tor-browser ===================================== projects/geckoview/config ===================================== @@ -22,7 +22,7 @@ var: browser_series: '14.5' browser_rebase: 1 browser_branch: '[% c("var/browser_series") %]-[% c("var/browser_rebase") %]' - browser_build: 1 + browser_build: 2 gitlab_project: https://gitlab.torproject.org/tpo/applications/tor-browser git_commit: '[% exec("git rev-parse " _ c("git_hash") _ "^{commit}", { exec_noco => 1 }) %]' deps: ===================================== projects/go/config ===================================== @@ -1,11 +1,11 @@ # vim: filetype=yaml sw=2 -version: '1.23.7' +version: '1.23.8' filename: '[% project %]-[% c("version") %]-[% c("var/osname") %]-[% c("var/build_id") %].tar.[% c("compress_tar") %]' container: use_container: 1 var: - source_sha256: 7cfabd46b73eb4c26b19d69515dd043d7183a6559acccd5cfdb25eb6b266a458 + source_sha256: 0ca1f1e37ea255e3ce283af3f4e628502fb444587da987a5bb96d6c6f15930d4 no_crosscompile: 1 setup: | mkdir -p /var/tmp/dist ===================================== projects/manual/config ===================================== @@ -1,7 +1,7 @@ # vim: filetype=yaml sw=2 # To update, see doc/how-to-update-the-manual.txt # Remember to update also the package's hash, with the version! -version: 227750 +version: 263551 filename: 'manual-[% c("version") %]-[% c("var/build_id") %].tar.[% c("compress_tar") %]' container: use_container: 1 @@ -23,6 +23,6 @@ input_files: - project: container-image - URL: 'https://build-sources.tbb.torproject.org/manual_[% c("version") %].zip' name: manual - sha256sum: 3f80d2d1193042211ad2dc14b27d68aabfa1629472d5b2ad6fabc7b1e38b0580 + sha256sum: f8d312081457b1cab3e8fcafda1d0e534852b5d3c3cb1bd32100f13298cb7839 - filename: packagemanual.py name: package_script ===================================== projects/tor/config ===================================== @@ -1,6 +1,6 @@ # vim: filetype=yaml sw=2 filename: '[% project %]-[% c("version") %]-[% c("var/osname") %]-[% c("var/build_id") %].tar.[% c("compress_tar") %]' -version: 0.4.9.1-alpha +version: 0.4.9.2-alpha git_hash: 'tor-[% c("version") %]' git_url: https://gitlab.torproject.org/tpo/core/tor.git git_submodule: 1 ===================================== projects/translation/config ===================================== @@ -12,19 +12,19 @@ compress_tar: 'gz' steps: base-browser: base-browser: '[% INCLUDE build %]' - git_hash: 86fc2c2f873ef1df7cb564aa683c0ba7c2071185 + git_hash: b54e21b36db35ad390c4f385b76cbd293a58cbc6 targets: nightly: git_hash: 'base-browser' tor-browser: tor-browser: '[% INCLUDE build %]' - git_hash: 3bd4b0f7867b3539d0963fa0b5ce2c425cc94df7 + git_hash: 94aae5dcdfa2e99b516acb6a834a54f7de76e54f targets: nightly: git_hash: 'tor-browser' mullvad-browser: mullvad-browser: '[% INCLUDE build %]' - git_hash: ceaea33b0fa3ad7cf0f563392185bc9e8519079f + git_hash: 34b45a7417145b1f26784825ef6c873497cbda0a targets: nightly: git_hash: 'mullvad-browser' @@ -32,7 +32,7 @@ steps: fenix: '[% INCLUDE build %]' # We need to bump the commit before releasing but just pointing to a branch # might cause too much rebuidling of the Firefox part. - git_hash: 550f0663ad92e56f1d3cf1660309f55e1fc0dabb + git_hash: b5bc0929fbfff8343a8c57e26ffa70ea4d38c2ce compress_tar: 'zst' targets: nightly: ===================================== rbm.conf ===================================== @@ -73,11 +73,11 @@ buildconf: git_signtag_opt: '-s' var: - torbrowser_version: '14.5a5' + torbrowser_version: '14.5a6' torbrowser_build: 'build1' # This should be the date of when the build is started. For the build # to be reproducible, browser_release_date should always be in the past. - browser_release_date: '2025/03/20 18:10:00' + browser_release_date: '2025/04/08 17:53:31' browser_release_date_timestamp: '[% USE date; date.format(c("var/browser_release_date"), "%s") %]' browser_default_channel: alpha browser_platforms: @@ -96,9 +96,9 @@ var: updater_enabled: 1 build_mar: 1 torbrowser_incremental_from: + - 14.5a5 - 14.5a4 - 14.5a3 - - 14.5a2 mar_channel_id: '[% c("var/projectname") %]-torproject-[% c("var/channel") %]' # By default, we sort the list of installed packages. This allows sharing View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/2… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/2… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • ...
  • 2025
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.