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
Download
Threads by month
  • ----- 2025 -----
  • 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
  • 18691 discussions
[Git][tpo/applications/tor-browser-build][main] 2 commits: Bug 40932: Clean up projects/release/update_responses_config.yml
by richard (@richard) 24 Aug '23

24 Aug '23
richard pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: 2936205f by Nicolas Vigier at 2023-08-23T19:07:33+02:00 Bug 40932: Clean up projects/release/update_responses_config.yml Remove appname_bundle_android, appname_bundle_macos, appname_bundle_linux, appname_bundle_win32, appname_bundle_win64 from projects/release/update_responses_config.yml since they are not used anymore after 9f201283811ec85c49ca81d27b728411e952a02b. - - - - - 6c264f8e by Nicolas Vigier at 2023-08-23T19:07:35+02:00 Bug 40931: Fix incrementals after #40829 We update tools/signing/nightly to fix signing of nightly incrementals. We also update tools/update-responses/update_responses to fix the regexp to match .mar and incremental.mar filenames, since the OS now includes a `-` (except for macos). We change the incremental filenames to use `--` instead of `-` to separate OS and old_version, to make it easier to parse since both of those can include a `-`. - - - - - 5 changed files: - projects/release/update_responses_config.yml - tools/signing/nightly/config.yml - tools/signing/nightly/sign-nightly - tools/signing/nightly/update-responses-base-config.yml - tools/update-responses/update_responses Changes: ===================================== projects/release/update_responses_config.yml ===================================== @@ -3,11 +3,6 @@ tmp_dir: '[% c("tmp_dir") %]' create_downloads_json: 1 appname_marfile: '[% c("var/project-name") %]' appname_bundle: '[% c("var/project-name") %]' -appname_bundle_android: '[% c("var/project-name") %]' -appname_bundle_macos: '[% c("var/ProjectName") %]' -appname_bundle_linux: '[% c("var/project-name") %]' -appname_bundle_win32: '[% c("var/projectname") %]-install' -appname_bundle_win64: '[% c("var/projectname") %]-install-win64' releases_dir: [% path(c('output_dir')) %][% IF ! c("var/nightly") %]/signed[% END %] download: gpg_keyring: ../../keyring/torbrowser.gpg ===================================== tools/signing/nightly/config.yml ===================================== @@ -12,6 +12,7 @@ torbrowser: - nightly-macos nss_db_dir: nssdb appname_marfile: tor-browser + appname_bundle: tor-browser basebrowser: publish_dirs: - basebrowser-nightly-linux-x86_64 @@ -21,6 +22,7 @@ basebrowser: - basebrowser-nightly-macos nss_db_dir: nssdb-basebrowser-1 appname_marfile: base-browser + appname_bundle: base-browser nss_certname: nightly-marsigner gpg_keyring: keyring/torbrowser-nightly.gpg rsync_dest: /srv/tbb-nightlies-master.torproject.org/htdocs/nightly-updates/ ===================================== tools/signing/nightly/sign-nightly ===================================== @@ -246,6 +246,7 @@ sub update_responses { $ur_config->{download}{mars_url} .= "/$publish_dir"; $ur_config->{releases_dir} = "$topdir/nightly/$publish_dir"; $ur_config->{appname_marfile} = get_config('appname_marfile'); + $ur_config->{appname_bundle} = get_config('appname_bundle'); $ur_config->{channels}->{nightly} = $version; $ur_config->{versions}->{$version} = $ur_config->{versions}->{nightly_version}; my $buildinfos = get_buildinfos("$topdir/nightly/$publish_dir/$version/build-infos.json"); ===================================== tools/signing/nightly/update-responses-base-config.yml ===================================== @@ -2,13 +2,13 @@ download: mars_url: https://nightlies.tbb.torproject.org/nightly-updates build_targets: - linux32: Linux_x86-gcc3 - linux64: Linux_x86_64-gcc3 - win32: + linux-i686: Linux_x86-gcc3 + linux-x86_64: Linux_x86_64-gcc3 + windows-i686: - WINNT_x86-gcc3 - WINNT_x86-gcc3-x86 - WINNT_x86-gcc3-x64 - win64: WINNT_x86_64-gcc3-x64 + windows-x86_64: WINNT_x86_64-gcc3-x64 macos: - Darwin_x86_64-gcc3 - Darwin_aarch64-gcc3 @@ -16,20 +16,20 @@ channels: nightly: nightly_version versions: nightly_version: - platformVersion: 68.2.0 + platformVersion: 115.1.0 detailsURL: http://umj4zbqdfcyevlkgqgpq6foxk3z75zzxsbgt5jqmfxofrbrjh3crbnad.onion/ migrate_langs: pt-PT: pt-BR macos: minSupportedOSVersion: 16.0.0 - win32: + windows-i686: minSupportedOSVersion: 6.1 minSupportedInstructionSet: SSE2 - win64: + windows-x86_64: minSupportedOSVersion: 6.1 minSupportedInstructionSet: SSE2 - linux32: + linux-i686: minSupportedInstructionSet: SSE2 - linux64: + linux-x86_64: minSupportedInstructionSet: SSE2 mar_compression: xz ===================================== tools/update-responses/update_responses ===================================== @@ -98,7 +98,7 @@ sub get_version_files { opendir(my $d, $vdir) or exit_error "Error opening directory $vdir"; foreach my $file (readdir $d) { next unless -f "$vdir/$file"; - if ($file =~ m/^$appname-([^-]+)-${version}_(.+)\.mar$/) { + if ($file =~ m/^$appname-(.+)-${version}_(.+)\.mar$/) { my ($os, $lang) = ($1, $2); $files->{$os}{$lang}{complete} = { type => 'complete', @@ -109,7 +109,7 @@ sub get_version_files { }; next; } - if ($file =~ m/^$appname-([^-]+)-(.+)-${version}_(.+)\.incremental\.mar$/) { + if ($file =~ m/^$appname-(.+)--(.+)-${version}_(.+)\.incremental\.mar$/) { my ($os, $from_version, $lang) = ($1, $2, $3); $files->{$os}{$lang}{partial}{$from_version} = { type => 'partial', @@ -223,7 +223,7 @@ sub mar_filename { sub create_incremental_mar { my ($config, $pm, $from_version, $new_version, $os, $lang, $channel) = @_; my $appname = $config->{appname_marfile}; - my $mar_file = "$appname-$os-${from_version}-${new_version}_$lang.incremental.mar"; + my $mar_file = "$appname-$os--${from_version}-${new_version}_$lang.incremental.mar"; my $mar_file_path = version_dir($config, $new_version) . '/' . $mar_file; if ($ENV{MAR_SKIP_EXISTING} && -f $mar_file_path) { print "Skipping $mar_file\n"; View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/… 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] alpha: new version, 13.0a3
by richard (@richard) 23 Aug '23

23 Aug '23
richard pushed to branch main at The Tor Project / Applications / Tor Browser update responses Commits: e91ae567 by Richard Pospesel at 2023-08-23T20:10:28+00:00 alpha: new version, 13.0a3 - - - - - 26 changed files: - update_3/alpha/.htaccess - − update_3/alpha/13.0a1-13.0a2-linux32-ALL.xml - − update_3/alpha/13.0a1-13.0a2-linux64-ALL.xml - − update_3/alpha/13.0a1-13.0a2-macos-ALL.xml - − update_3/alpha/13.0a1-13.0a2-win32-ALL.xml - − update_3/alpha/13.0a1-13.0a2-win64-ALL.xml - − update_3/alpha/13.0a2-linux32-ALL.xml - − update_3/alpha/13.0a2-linux64-ALL.xml - − update_3/alpha/13.0a2-macos-ALL.xml - − update_3/alpha/13.0a2-win32-ALL.xml - − update_3/alpha/13.0a2-win64-ALL.xml - + update_3/alpha/13.0a3-linux-i686-ALL.xml - + update_3/alpha/13.0a3-linux-x86_64-ALL.xml - + update_3/alpha/13.0a3-macos-ALL.xml - + update_3/alpha/13.0a3-windows-i686-ALL.xml - + update_3/alpha/13.0a3-windows-x86_64-ALL.xml - 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 Changes: ===================================== update_3/alpha/.htaccess ===================================== @@ -2,28 +2,20 @@ RewriteEngine On # bug 26569: Redirect pre-8.0a9 alpha users to a separate update directory RewriteRule ^[^/]+/8\.0a[12345678]/.* https://aus1.torproject.org/torbrowser/update_pre8.0a9/alpha/$0 [last] RewriteRule ^[^/]+/[4567]\..*/.* https://aus1.torproject.org/torbrowser/update_pre8.0a9/alpha/$0 [last] -RewriteRule ^[^/]+/13.0a2/ no-update.xml [last] -RewriteRule ^Linux_x86-gcc3/13.0a1/ALL 13.0a1-13.0a2-linux32-ALL.xml [last] -RewriteRule ^Linux_x86-gcc3/[^/]+/ALL 13.0a2-linux32-ALL.xml [last] -RewriteRule ^Linux_x86-gcc3/ 13.0a2-linux32-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/13.0a1/ALL 13.0a1-13.0a2-linux64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 13.0a2-linux64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/ 13.0a2-linux64-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/13.0a1/ALL 13.0a1-13.0a2-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 13.0a2-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/ 13.0a2-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/13.0a1/ALL 13.0a1-13.0a2-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 13.0a2-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/ 13.0a2-macos-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3/13.0a1/ALL 13.0a1-13.0a2-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3/[^/]+/ALL 13.0a2-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3/ 13.0a2-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3-x86/13.0a1/ALL 13.0a1-13.0a2-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3-x86/[^/]+/ALL 13.0a2-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3-x86/ 13.0a2-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3-x64/13.0a1/ALL 13.0a1-13.0a2-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3-x64/[^/]+/ALL 13.0a2-win32-ALL.xml [last] -RewriteRule ^WINNT_x86-gcc3-x64/ 13.0a2-win32-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/13.0a1/ALL 13.0a1-13.0a2-win64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 13.0a2-win64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/ 13.0a2-win64-ALL.xml [last] +RewriteRule ^[^/]+/13.0a3/ no-update.xml [last] +RewriteRule ^Linux_x86-gcc3/[^/]+/ALL 13.0a3-linux-i686-ALL.xml [last] +RewriteRule ^Linux_x86-gcc3/ 13.0a3-linux-i686-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 13.0a3-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/ 13.0a3-linux-x86_64-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 13.0a3-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/ 13.0a3-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 13.0a3-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/ 13.0a3-macos-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3/[^/]+/ALL 13.0a3-windows-i686-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3/ 13.0a3-windows-i686-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3-x86/[^/]+/ALL 13.0a3-windows-i686-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3-x86/ 13.0a3-windows-i686-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3-x64/[^/]+/ALL 13.0a3-windows-i686-ALL.xml [last] +RewriteRule ^WINNT_x86-gcc3-x64/ 13.0a3-windows-i686-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 13.0a3-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/ 13.0a3-windows-x86_64-ALL.xml [last] ===================================== update_3/alpha/13.0a1-13.0a2-linux32-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0a2" appVersion="13.0a2" platformVersion="115.1.0" buildID="20230808073312" detailsURL="https://blog.torproject.org/new-release-tor-browser-130a2" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-130a2" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/13.0a2/tor-browser-linux32-13.0a…" hashFunction="SHA512" hashValue="b5cad209999888d18aea90b39452b7e7d57a31ca76e5aa96b866ad16b41a4e89829503a6984bdd2bf95fa723bcfac2931d3ff92e626742fabeaab6e8112c7424" size="125964751" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/13.0a2/tor-browser-linux32-13.0a…" hashFunction="SHA512" hashValue="768c5641636ec8777dd586ed5cfdc1e0762cea240d1570b7e59eea8ee251c204618e887a7cc7522efc435308da5fde066327551b92ace2f81b8631ee96f30141" size="13930975" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.0a1-13.0a2-linux64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0a2" appVersion="13.0a2" platformVersion="115.1.0" buildID="20230808073312" detailsURL="https://blog.torproject.org/new-release-tor-browser-130a2" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-130a2" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/13.0a2/tor-browser-linux64-13.0a…" hashFunction="SHA512" hashValue="f8687482dd50e2badadeeb6b6133db2f90741742822bf9dcf6a9c593210dedfa711a1b3435cefa5b6bf95d9750b9e1a46ed4cce433da52083b6dd16297df2189" size="125277667" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/13.0a2/tor-browser-linux64-13.0a…" hashFunction="SHA512" hashValue="df08414c8586378fca4f1cbacc35630249c6793a2798f4d371b2efb1839c20313077d167cc3cfb5b3f0c4fd03bf305440c86b69c7afc98c7a755581aa62acfe2" size="13546921" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.0a1-13.0a2-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0a2" appVersion="13.0a2" platformVersion="115.1.0" buildID="20230808073312" detailsURL="https://blog.torproject.org/new-release-tor-browser-130a2" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-130a2" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/13.0a2/tor-browser-macos-13.0a2_…" hashFunction="SHA512" hashValue="9587c8414b527a2bb7a07779a5b9db1a6618d09c5863c59f218fbac269ac900720a7f86054d71297da8f50a36c9e3a24c2431bb9436ef93a2b409bc81054c1c5" size="163024075" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/13.0a2/tor-browser-macos-13.0a1-…" hashFunction="SHA512" hashValue="00a977e3d7316f9bdd3ffe75ab30346c387a6df90e78edb49bebaf202cafae90b165dad142acd02e67d969b40ee4a41538c28c092abb457ab1916b4997e68dca" size="36784639" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.0a1-13.0a2-win32-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0a2" appVersion="13.0a2" platformVersion="115.1.0" buildID="20230808073312" detailsURL="https://blog.torproject.org/new-release-tor-browser-130a2" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-130a2" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/13.0a2/tor-browser-win32-13.0a2_…" hashFunction="SHA512" hashValue="4e957ef5a5898a0620a8f7756397285a343528c60010aaaec85fd9a0ab5a95830e61cf14a4ebfaec3d7616204791339dbf30e592d4caa41431fb5187e867325e" size="106892876" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/13.0a2/tor-browser-win32-13.0a1-…" hashFunction="SHA512" hashValue="e6349a0aa171736fa6c21bafae7b9295c3eb9bcf2e3e6c7a968ea3285428f0f241108290510e5c0b73c904439fe94b69a43dce97a118c5e4e7fe1135162688e4" size="14977638" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.0a1-13.0a2-win64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0a2" appVersion="13.0a2" platformVersion="115.1.0" buildID="20230808073312" detailsURL="https://blog.torproject.org/new-release-tor-browser-130a2" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-130a2" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/13.0a2/tor-browser-win64-13.0a2_…" hashFunction="SHA512" hashValue="28e4a3bd4d5e2ceca5ae4dae5002f938a5bb724cd14788fc605286eadaf8bc110ad2b874b2e004b6ed1f593c2ae406c7b8bd0fcbe9d0319fbacac10bb808b470" size="106938826" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/13.0a2/tor-browser-win64-13.0a1-…" hashFunction="SHA512" hashValue="bc9bceb4b746ba4b69ece9f9dfdf43513c1761a2da3917d343e76d2f7c995ee77e7e4d019e9612a778daa421b041ddce036fb0e1f53104139c25c7bafafd8233" size="14074332" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.0a2-linux32-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0a2" appVersion="13.0a2" platformVersion="115.1.0" buildID="20230808073312" detailsURL="https://blog.torproject.org/new-release-tor-browser-130a2" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-130a2" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/13.0a2/tor-browser-linux32-13.0a…" hashFunction="SHA512" hashValue="b5cad209999888d18aea90b39452b7e7d57a31ca76e5aa96b866ad16b41a4e89829503a6984bdd2bf95fa723bcfac2931d3ff92e626742fabeaab6e8112c7424" size="125964751" type="complete"></patch></update></updates> ===================================== update_3/alpha/13.0a2-linux64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0a2" appVersion="13.0a2" platformVersion="115.1.0" buildID="20230808073312" detailsURL="https://blog.torproject.org/new-release-tor-browser-130a2" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-130a2" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/13.0a2/tor-browser-linux64-13.0a…" hashFunction="SHA512" hashValue="f8687482dd50e2badadeeb6b6133db2f90741742822bf9dcf6a9c593210dedfa711a1b3435cefa5b6bf95d9750b9e1a46ed4cce433da52083b6dd16297df2189" size="125277667" type="complete"></patch></update></updates> ===================================== update_3/alpha/13.0a2-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0a2" appVersion="13.0a2" platformVersion="115.1.0" buildID="20230808073312" detailsURL="https://blog.torproject.org/new-release-tor-browser-130a2" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-130a2" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/13.0a2/tor-browser-macos-13.0a2_…" hashFunction="SHA512" hashValue="9587c8414b527a2bb7a07779a5b9db1a6618d09c5863c59f218fbac269ac900720a7f86054d71297da8f50a36c9e3a24c2431bb9436ef93a2b409bc81054c1c5" size="163024075" type="complete"></patch></update></updates> ===================================== update_3/alpha/13.0a2-win32-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0a2" appVersion="13.0a2" platformVersion="115.1.0" buildID="20230808073312" detailsURL="https://blog.torproject.org/new-release-tor-browser-130a2" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-130a2" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/13.0a2/tor-browser-win32-13.0a2_…" hashFunction="SHA512" hashValue="4e957ef5a5898a0620a8f7756397285a343528c60010aaaec85fd9a0ab5a95830e61cf14a4ebfaec3d7616204791339dbf30e592d4caa41431fb5187e867325e" size="106892876" type="complete"></patch></update></updates> ===================================== update_3/alpha/13.0a2-win64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0a2" appVersion="13.0a2" platformVersion="115.1.0" buildID="20230808073312" detailsURL="https://blog.torproject.org/new-release-tor-browser-130a2" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-130a2" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/13.0a2/tor-browser-win64-13.0a2_…" hashFunction="SHA512" hashValue="28e4a3bd4d5e2ceca5ae4dae5002f938a5bb724cd14788fc605286eadaf8bc110ad2b874b2e004b6ed1f593c2ae406c7b8bd0fcbe9d0319fbacac10bb808b470" size="106938826" type="complete"></patch></update></updates> ===================================== update_3/alpha/13.0a3-linux-i686-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.0a3" appVersion="13.0a3" platformVersion="115.2.0" buildID="20230821193339" detailsURL="https://blog.torproject.org/new-release-tor-browser-130a3" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-130a3" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/13.0a3/tor-browser-linux-i686-13…" hashFunction="SHA512" hashValue="1e448b768e99e4d9a3667e84faef80605888234c4b79e6b1511e7bd147430cec1c359687b6deb07e4788822f5710885a1bd1eac85a23c009a1752ca3271cf535" size="125969599" type="complete"></patch></update></updates> ===================================== update_3/alpha/13.0a3-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.0a3" appVersion="13.0a3" platformVersion="115.2.0" buildID="20230821193339" detailsURL="https://blog.torproject.org/new-release-tor-browser-130a3" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-130a3" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/13.0a3/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="500d3503cb06e172cc2ecdb7b70a10719927be70392a9b966e32e4d0cac1676bb6ed3b74026eadad0443bb7f3f79d19f56632ba80c455d6b75d30bd00f5323b8" size="125287631" type="complete"></patch></update></updates> ===================================== update_3/alpha/13.0a3-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.0a3" appVersion="13.0a3" platformVersion="115.2.0" buildID="20230821193339" detailsURL="https://blog.torproject.org/new-release-tor-browser-130a3" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-130a3" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/13.0a3/tor-browser-macos-13.0a3_…" hashFunction="SHA512" hashValue="aae242a22aa6f3000fd4dca76c5e8ac56772c70927247bcc5fc3c3660bd023e1a14a23dc5e48a4e09ca1319b20a6505d215a6f725458b5bbff5dd811a7b25a07" size="163024731" type="complete"></patch></update></updates> ===================================== update_3/alpha/13.0a3-windows-i686-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.0a3" appVersion="13.0a3" platformVersion="115.2.0" buildID="20230821193339" detailsURL="https://blog.torproject.org/new-release-tor-browser-130a3" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-130a3" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/13.0a3/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="720f0f5942115c9b70083fb929f083df3d2788b0c462c88e8477bbe483456783c4b93f8ffbdf53aafe549131f3a4ee73056a0f41668563faa92e7f7a3c513fac" size="106897676" type="complete"></patch></update></updates> ===================================== update_3/alpha/13.0a3-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.0a3" appVersion="13.0a3" platformVersion="115.2.0" buildID="20230821193339" detailsURL="https://blog.torproject.org/new-release-tor-browser-130a3" actions="showURL" openURL="https://blog.torproject.org/new-release-tor-browser-130a3" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/13.0a3/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="7a82fafd9d26f03f336004c2221712f8aae0aab62afbb3ff1a3fb3aefe1f00099930ce91564f4f2df4f1a9228ba21f7f144794731c9a377106611bdf43124911" size="106942626" type="complete"></patch></update></updates> ===================================== update_3/alpha/download-android-aarch64.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/13.0a2/tor-browser-13.0a2-android-aa…","git_tag":"tbb-13.0a2-build5","sig":"https://dist.torproject.org/torbrowser/13.0a2/tor-browser-13.0a2-android-aa…","version":"13.0a2"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/13.0a3/tor-browser-android-aarch64-1…","git_tag":"tbb-13.0a3-build1","sig":"https://dist.torproject.org/torbrowser/13.0a3/tor-browser-android-aarch64-1…","version":"13.0a3"} \ No newline at end of file ===================================== update_3/alpha/download-android-armv7.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/13.0a2/tor-browser-13.0a2-android-ar…","git_tag":"tbb-13.0a2-build5","sig":"https://dist.torproject.org/torbrowser/13.0a2/tor-browser-13.0a2-android-ar…","version":"13.0a2"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/13.0a3/tor-browser-android-armv7-13.…","git_tag":"tbb-13.0a3-build1","sig":"https://dist.torproject.org/torbrowser/13.0a3/tor-browser-android-armv7-13.…","version":"13.0a3"} \ No newline at end of file ===================================== update_3/alpha/download-android-x86.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/13.0a2/tor-browser-13.0a2-android-x8…","git_tag":"tbb-13.0a2-build5","sig":"https://dist.torproject.org/torbrowser/13.0a2/tor-browser-13.0a2-android-x8…","version":"13.0a2"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/13.0a3/tor-browser-android-x86-13.0a…","git_tag":"tbb-13.0a3-build1","sig":"https://dist.torproject.org/torbrowser/13.0a3/tor-browser-android-x86-13.0a…","version":"13.0a3"} \ No newline at end of file ===================================== update_3/alpha/download-android-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/13.0a2/tor-browser-13.0a2-android-x8…","git_tag":"tbb-13.0a2-build5","sig":"https://dist.torproject.org/torbrowser/13.0a2/tor-browser-13.0a2-android-x8…","version":"13.0a2"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/13.0a3/tor-browser-android-x86_64-13…","git_tag":"tbb-13.0a3-build1","sig":"https://dist.torproject.org/torbrowser/13.0a3/tor-browser-android-x86_64-13…","version":"13.0a3"} \ No newline at end of file ===================================== update_3/alpha/download-linux-i686.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/13.0a2/tor-browser-linux32-13.0a2_AL…","git_tag":"tbb-13.0a2-build5","sig":"https://dist.torproject.org/torbrowser/13.0a2/tor-browser-linux32-13.0a2_AL…","version":"13.0a2"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/13.0a3/tor-browser-linux-i686-13.0a3…","git_tag":"tbb-13.0a3-build1","sig":"https://dist.torproject.org/torbrowser/13.0a3/tor-browser-linux-i686-13.0a3…","version":"13.0a3"} \ No newline at end of file ===================================== update_3/alpha/download-linux-x86_64.json deleted ===================================== @@ -1 +0,0 @@ -{"binary":"https://dist.torproject.org/torbrowser/13.0a2/tor-browser-linux64-13.0a2_AL…","git_tag":"tbb-13.0a2-build5","sig":"https://dist.torproject.org/torbrowser/13.0a2/tor-browser-linux64-13.0a2_AL…","version":"13.0a2"} \ No newline at end of file ===================================== update_3/alpha/download-macos.json ===================================== @@ -1 +1 @@ -{"binary":"https://dist.torproject.org/torbrowser/13.0a2/TorBrowser-13.0a2-macos_ALL.d…","git_tag":"tbb-13.0a2-build5","sig":"https://dist.torproject.org/torbrowser/13.0a2/TorBrowser-13.0a2-macos_ALL.d…","version":"13.0a2"} \ No newline at end of file +{"binary":"https://dist.torproject.org/torbrowser/13.0a3/tor-browser-macos-13.0a3.dmg","git_tag":"tbb-13.0a3-build1","sig":"https://dist.torproject.org/torbrowser/13.0a3/tor-browser-macos-13.0a3.dmg.…","version":"13.0a3"} \ No newline at end of file ===================================== update_3/alpha/download-windows-i686.json deleted ===================================== @@ -1 +0,0 @@ -{"binary":"https://dist.torproject.org/torbrowser/13.0a2/torbrowser-install-13.0a2_ALL…","git_tag":"tbb-13.0a2-build5","sig":"https://dist.torproject.org/torbrowser/13.0a2/torbrowser-install-13.0a2_ALL…","version":"13.0a2"} \ No newline at end of file ===================================== update_3/alpha/download-windows-x86_64.json deleted ===================================== @@ -1 +0,0 @@ -{"binary":"https://dist.torproject.org/torbrowser/13.0a2/torbrowser-install-win64-13.0…","git_tag":"tbb-13.0a2-build5","sig":"https://dist.torproject.org/torbrowser/13.0a2/torbrowser-install-win64-13.0…","version":"13.0a2"} \ No newline at end of file ===================================== update_3/alpha/downloads.json ===================================== @@ -1 +1 @@ -{"downloads":{"linux32":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/13.0a2/tor-browser-linux32-13.0a2_AL…","sig":"https://dist.torproject.org/torbrowser/13.0a2/tor-browser-linux32-13.0a2_AL…"}},"linux64":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/13.0a2/tor-browser-linux64-13.0a2_AL…","sig":"https://dist.torproject.org/torbrowser/13.0a2/tor-browser-linux64-13.0a2_AL…"}},"macos":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/13.0a2/TorBrowser-13.0a2-macos_ALL.d…","sig":"https://dist.torproject.org/torbrowser/13.0a2/TorBrowser-13.0a2-macos_ALL.d…"}},"win32":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/13.0a2/torbrowser-install-13.0a2_ALL…","sig":"https://dist.torproject.org/torbrowser/13.0a2/torbrowser-install-13.0a2_ALL…"}},"win64":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/13.0a2/torbrowser-install-win64-13.0…","sig":"https://dist.torproject.org/torbrowser/13.0a2/torbrowser-install-win64-13.0…"}}},"tag":"tbb-13.0a2-build5","version":"13.0a2"} \ No newline at end of file +{"downloads":{"linux-i686":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/13.0a3/tor-browser-linux-i686-13.0a3…","sig":"https://dist.torproject.org/torbrowser/13.0a3/tor-browser-linux-i686-13.0a3…"}},"linux-x86_64":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/13.0a3/tor-browser-linux-x86_64-13.0…","sig":"https://dist.torproject.org/torbrowser/13.0a3/tor-browser-linux-x86_64-13.0…"}},"macos":{"ALL":{"binary":"https://dist.torproject.org/torbrowser/13.0a3/tor-browser-macos-13.0a3.dmg","sig":"https://dist.torproject.org/torbrowser/13.0a3/tor-browser-macos-13.0a3.dmg.…"}}},"tag":"tbb-13.0a3-build1","version":"13.0a3"} \ No newline at end of file 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-13.0a3-build1
by richard (@richard) 23 Aug '23

23 Aug '23
richard pushed new tag mb-13.0a3-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-13.0a3-build1
by richard (@richard) 23 Aug '23

23 Aug '23
richard pushed new tag tbb-13.0a3-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-build][main] 2 commits: Update the Tor Browser Alpha releas prep issue template
by richard (@richard) 23 Aug '23

23 Aug '23
richard pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: ba6c8c0e by Richard Pospesel at 2023-08-21T21:22:12+00:00 Update the Tor Browser Alpha releas prep issue template - replaced android-components and fenix entries with firefox-android entry in - updated openssl entry to reflect the 3.0.X series tor now uses - - - - - b16d0b0d by Richard Pospesel at 2023-08-21T22:32:27+00:00 Bug 40914,40915: Release Prep for Tor,Mullvad Bowser 13.0a3 - - - - - 9 changed files: - .gitlab/issue_templates/Release Prep - Tor Browser Alpha.md - projects/browser/Bundle-Data/Docs-MB/ChangeLog.txt - projects/browser/Bundle-Data/Docs-TBB/ChangeLog.txt - projects/browser/allowed_addons.json - projects/firefox-android/config - projects/firefox/config - projects/geckoview/config - projects/translation/config - rbm.conf Changes: ===================================== .gitlab/issue_templates/Release Prep - Tor Browser Alpha.md ===================================== @@ -57,10 +57,9 @@ Tor Browser Alpha (and Nightly) are on the `main` branch - [ ] ***(Optional)*** Update `projects/application-services/config`: **NOTE** we don't currently have any of our own patches for this project - [ ] `git_hash` : update to appropriate git commit associated with `$(ESR_VERSION)` - - [ ] ***(Optional)*** Update `projects/android-components/config`: - - [ ] `android_components_build` : update to match alpha android-components tag - - [ ] ***(Optional)*** Update `projects/fenix/config` - - [ ] `fenix_build` : update to match fenix tag + - [ ] ***(Optional)*** Update `projects/firefox-android/config`: + - [ ] `fenix_version` : update to match alpha `firefox-android` build tag + - [ ] `browser_branch` : update to match alpha `firefox-android` build tag - [ ] Update allowed_addons.json by running (from `tor-browser-build` root): - `./tools/fetch_allowed_addons.py > projects/browser/allowed_addons.json` - [ ] Update common build configs @@ -69,8 +68,8 @@ Tor Browser Alpha (and Nightly) are on the `main` branch - [ ] `URL` - [ ] `sha256sum` - [ ] Check for OpenSSL updates here : https://www.openssl.org/source/ - - [ ] ***(Optional)*** If new 1.X.Y version available, update `projects/openssl/config` - - [ ] `version` : update to next 1.X.Y version + - [ ] ***(Optional)*** If new 3.0.X version available, update `projects/openssl/config` + - [ ] `version` : update to next 3.0.X version - [ ] `input_files/sha256sum` : update to sha256 sum of source tarball - [ ] Check for zlib updates here: https://github.com/madler/zlib/releases - [ ] **(Optional)** If new tag available, update `projects/zlib/config` ===================================== projects/browser/Bundle-Data/Docs-MB/ChangeLog.txt ===================================== @@ -1,3 +1,26 @@ +Mullvad Browser 13.0a3 - August 21 2023 + * All Platforms + * Updated Translations + * Updated Firefox to 115.2.0esr + * Bug 220: "Firefox Suggest" string appears when search matches a bookmark [mullvad-browser] + * Bug 223: Trademarks in the about popup are not translated [mullvad-browser] + * Bug 230: Rebase MB 13.0 alpha onto 115.2.0esr [mullvad-browser] + * Bug 40924: Customize MOZ_APP_REMOTINGNAME instead of passing --name and --class [tor-browser-build] + * Bug 41833: Reload extensions on new identiy [tor-browser] + * Bug 41943: Lock javascript.options.spectre.disable_for_isolated_content to false [tor-browser] + * Bug 41984: Rename languageNotification.ftl to base-browser.ftl [tor-browser] + * Bug 42019: Empty browser's clipboard on browser shutdown [tor-browser] + * Bug 42022: Prevent extension search engines from breaking the whole search system [tor-browser] + * Bug 42029: Defense-in-depth: disable non-proxied UDP WebRTC [tor-browser] + * Linux + * Bug 40576: Fontconfig warning: remove 'blank' configuration [tor-browser-build] + * Build System + * All Platforms + * Bug 40829: Review and standardize naming scheme for browser installer/package artifacts [tor-browser-build] + * Bug 40921: staticiforme-prepare-cdn-dist-upload uses hardcoded torbrowser path for .htacess file generation [tor-browser-build] + * Bug 40922: Use base-browser.ftl instead of languageNotification.ftl [tor-browser-build] + * Bug 40923: Switch Mullvad Browser translations to the new repository [tor-browser-build] + Mullvad Browser 13.0a2 - August 08 2023 * All Platforms * Updated NoScript to 11.4.26 ===================================== projects/browser/Bundle-Data/Docs-TBB/ChangeLog.txt ===================================== @@ -1,3 +1,32 @@ +Tor Browser 13.0a3 - August 21 2023 + * All Platforms + * Updated Translations + * Bug 41943: Lock javascript.options.spectre.disable_for_isolated_content to false [tor-browser] + * Bug 41984: Rename languageNotification.ftl to base-browser.ftl [tor-browser] + * Bug 42019: Empty browser's clipboard on browser shutdown [tor-browser] + * Bug 42030: Rebase the browsers to 115.2.0esr [tor-browser] + * Windows + macOS + Linux + * Updated Firefox to 115.2.0esr + * Bug 40175: Connections in reader mode are not FPI [tor-browser] + * Bug 40924: Customize MOZ_APP_REMOTINGNAME instead of passing --name and --class [tor-browser-build] + * Bug 41691: "Firefox Suggest" text appearing in UI [tor-browser] + * Bug 41833: Reload extensions on new identiy [tor-browser] + * Bug 42022: Prevent extension search engines from breaking the whole search system [tor-browser] + * Bug 42031: TBB 13.0a2: TypeError: channel.loadInfo.browsingContext.topChromeWindow.gBrowser is undefined [tor-browser] + * Linux + * Bug 40576: Fontconfig warning: remove 'blank' configuration [tor-browser-build] + * Android + * Updated GeckoView to 115.2.0esr + * Bug 42018: Rebase Firefox for Android to 115.2.1 [tor-browser] + * Build System + * All Platforms + * Bug 40829: Review and standardize naming scheme for browser installer/package artifacts [tor-browser-build] + * Bug 40921: staticiforme-prepare-cdn-dist-upload uses hardcoded torbrowser path for .htacess file generation [tor-browser-build] + * Windows + macOS + Linux + * Bug 40922: Use base-browser.ftl instead of languageNotification.ftl [tor-browser-build] + * Linux + * Bug 41967: Add a Makefile recipe to create multi-lingual dev builds [tor-browser] + Tor Browser 13.0a2 - August 08 2023 * All Platforms * Updated Translations ===================================== projects/browser/allowed_addons.json ===================================== @@ -17,7 +17,7 @@ "picture_url": "https://addons.mozilla.org/user-media/userpics/34/9734/13299734/13299734.pn…" } ], - "average_daily_users": 963152, + "average_daily_users": 962524, "categories": { "android": [ "experimental", @@ -31,7 +31,7 @@ "contributions_url": "https://opencollective.com/darkreader?utm_content=product-page-contribute&u…", "created": "2017-09-19T07:03:00Z", "current_version": { - "id": 5584147, + "id": 5607027, "compatibility": { "firefox": { "min": "54.0", @@ -42,7 +42,7 @@ "max": "*" } }, - "edit_url": "https://addons.mozilla.org/en-US/developers/addon/darkreader/versions/55841…", + "edit_url": "https://addons.mozilla.org/en-US/developers/addon/darkreader/versions/56070…", "is_strict_compatibility_enabled": false, "license": { "id": 22, @@ -53,22 +53,22 @@ "url": "http://www.opensource.org/license/mit" }, "release_notes": { - "en-US": "- Using passive event listeners.\n- Fixed System Automation on Firefox.\n- Fixed News section.\n- Users' fixes for websites." + "en-US": "- Optimize inline style handling (fixes DuckDuckGo issue).\n- Added an option to enable/disable the extension for all websites by default.\n- Dynamic mode fixes.\n- Users' fixes for websites." }, - "reviewed": "2023-06-26T12:31:32Z", - "version": "4.9.64", + "reviewed": "2023-08-14T10:45:12Z", + "version": "4.9.65", "files": [ { - "id": 4128489, - "created": "2023-06-22T06:55:05Z", - "hash": "sha256:c09ed43a96dccab1de3445aac263de0569e3333da330d645094e3f938f13b30e", + "id": 4151368, + "created": "2023-08-10T20:54:06Z", + "hash": "sha256:964d7fdeec1dc90b5238a82db699de7a2bbf54e3e2bf18569befff451f35f89a", "is_restart_required": false, "is_webextension": true, "is_mozilla_signed_extension": false, "platform": "all", - "size": 664243, + "size": 668520, "status": "public", - "url": "https://addons.mozilla.org/firefox/downloads/file/4128489/darkreader-4.9.64…", + "url": "https://addons.mozilla.org/firefox/downloads/file/4151368/darkreader-4.9.65…", "permissions": [ "alarms", "contextMenus", @@ -146,7 +146,7 @@ }, "is_disabled": false, "is_experimental": false, - "last_updated": "2023-06-26T12:31:32Z", + "last_updated": "2023-08-14T10:45:12Z", "name": { "ar": "Dark Reader", "bn": "Dark Reader", @@ -221,10 +221,10 @@ "category": "recommended" }, "ratings": { - "average": 4.5592, - "bayesian_average": 4.55804261202379, - "count": 5093, - "text_count": 1604 + "average": 4.5571, + "bayesian_average": 4.555944276544156, + "count": 5116, + "text_count": 1611 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/darkreader/reviews/", "requires_payment": false, @@ -321,7 +321,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/darkreader/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/darkreader/versions/", - "weekly_downloads": 24659 + "weekly_downloads": 24008 }, "notes": null }, @@ -337,7 +337,7 @@ "picture_url": "https://addons.mozilla.org/user-media/userpics/56/7656/6937656/6937656.png?…" } ], - "average_daily_users": 249415, + "average_daily_users": 247179, "categories": { "android": [ "security-privacy" @@ -553,10 +553,10 @@ "category": "recommended" }, "ratings": { - "average": 4.816, - "bayesian_average": 4.811352368325867, - "count": 1353, - "text_count": 238 + "average": 4.8153, + "bayesian_average": 4.810656818463578, + "count": 1359, + "text_count": 239 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/decentraleyes/reviews/", "requires_payment": false, @@ -641,7 +641,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/decentraleyes/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/decentraleyes/versions/", - "weekly_downloads": 3670 + "weekly_downloads": 3402 }, "notes": null }, @@ -657,7 +657,7 @@ "picture_url": "https://addons.mozilla.org/user-media/userpics/73/4073/5474073/5474073.png?…" } ], - "average_daily_users": 1076698, + "average_daily_users": 1063750, "categories": { "android": [ "security-privacy" @@ -1180,9 +1180,9 @@ "category": "recommended" }, "ratings": { - "average": 4.8009, - "bayesian_average": 4.798135100629341, - "count": 2265, + "average": 4.8013, + "bayesian_average": 4.798528563346096, + "count": 2270, "text_count": 431 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/privacy-badger17/reviews/", @@ -1207,7 +1207,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/privacy-badger17/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/privacy-badger17/versions/", - "weekly_downloads": 18718 + "weekly_downloads": 17673 }, "notes": null }, @@ -1223,7 +1223,7 @@ "picture_url": null } ], - "average_daily_users": 6229783, + "average_daily_users": 6171541, "categories": { "android": [ "security-privacy" @@ -1388,7 +1388,7 @@ }, "is_disabled": false, "is_experimental": false, - "last_updated": "2023-08-07T17:15:41Z", + "last_updated": "2023-08-20T17:20:27Z", "name": { "ar": "uBlock Origin", "bg": "uBlock Origin", @@ -1533,10 +1533,10 @@ "category": "recommended" }, "ratings": { - "average": 4.7828, - "bayesian_average": 4.782404807048353, - "count": 15798, - "text_count": 4101 + "average": 4.7845, + "bayesian_average": 4.784104875047849, + "count": 15865, + "text_count": 4114 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/reviews/", "requires_payment": false, @@ -1598,7 +1598,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/versions/", - "weekly_downloads": 143905 + "weekly_downloads": 134237 }, "notes": null }, @@ -1614,7 +1614,7 @@ "picture_url": null } ], - "average_daily_users": 167376, + "average_daily_users": 169092, "categories": { "android": [ "photos-media" @@ -1713,9 +1713,9 @@ "category": "recommended" }, "ratings": { - "average": 4.4929, - "bayesian_average": 4.487789225993283, - "count": 1132, + "average": 4.4938, + "bayesian_average": 4.488680120012364, + "count": 1134, "text_count": 423 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/video-background-play-fix/re…", @@ -1738,7 +1738,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/video-background-play-fix/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/video-background-play-fix/ve…", - "weekly_downloads": 328 + "weekly_downloads": 371 }, "notes": null }, @@ -1754,7 +1754,7 @@ "picture_url": null } ], - "average_daily_users": 85334, + "average_daily_users": 84181, "categories": { "android": [ "experimental", @@ -1892,7 +1892,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/privacy-possum/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/privacy-possum/versions/", - "weekly_downloads": 1565 + "weekly_downloads": 1090 }, "notes": null }, @@ -1908,7 +1908,7 @@ "picture_url": "https://addons.mozilla.org/user-media/userpics/64/9064/12929064/12929064.pn…" } ], - "average_daily_users": 257984, + "average_daily_users": 257425, "categories": { "android": [ "photos-media", @@ -2127,10 +2127,10 @@ "category": "recommended" }, "ratings": { - "average": 4.6539, - "bayesian_average": 4.64926734511088, - "count": 1303, - "text_count": 250 + "average": 4.6544, + "bayesian_average": 4.6497676877016945, + "count": 1308, + "text_count": 252 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/search_by_image/reviews/", "requires_payment": false, @@ -2151,7 +2151,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/search_by_image/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/search_by_image/versions/", - "weekly_downloads": 4027 + "weekly_downloads": 4018 }, "notes": null }, @@ -2174,7 +2174,7 @@ "picture_url": null } ], - "average_daily_users": 111124, + "average_daily_users": 111536, "categories": { "android": [ "other" @@ -2457,10 +2457,10 @@ "category": "recommended" }, "ratings": { - "average": 4.4123, - "bayesian_average": 4.407708861807205, - "count": 1232, - "text_count": 334 + "average": 4.4024, + "bayesian_average": 4.397830651353168, + "count": 1240, + "text_count": 339 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/google-search-fixer/reviews/", "requires_payment": false, @@ -2480,7 +2480,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/google-search-fixer/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/google-search-fixer/versions/", - "weekly_downloads": 30 + "weekly_downloads": 39 }, "notes": null }, @@ -2496,7 +2496,7 @@ "picture_url": "https://addons.mozilla.org/user-media/userpics/43/0143/143/143.png?modified…" } ], - "average_daily_users": 301669, + "average_daily_users": 296794, "categories": { "android": [ "performance", @@ -2614,7 +2614,7 @@ }, "is_disabled": false, "is_experimental": false, - "last_updated": "2023-07-25T09:58:54Z", + "last_updated": "2023-08-09T15:50:38Z", "name": { "de": "NoScript", "el": "NoScript", @@ -2686,10 +2686,10 @@ "category": "recommended" }, "ratings": { - "average": 4.4047, - "bayesian_average": 4.402001757843669, - "count": 2093, - "text_count": 811 + "average": 4.4025, + "bayesian_average": 4.399796585802099, + "count": 2097, + "text_count": 813 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/noscript/reviews/", "requires_payment": false, @@ -2733,7 +2733,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/noscript/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/noscript/versions/", - "weekly_downloads": 7783 + "weekly_downloads": 7446 }, "notes": null }, @@ -2749,7 +2749,7 @@ "picture_url": null } ], - "average_daily_users": 150191, + "average_daily_users": 150070, "categories": { "android": [ "performance", @@ -2864,10 +2864,10 @@ "category": "recommended" }, "ratings": { - "average": 3.9015, - "bayesian_average": 3.8972613162211953, - "count": 1147, - "text_count": 406 + "average": 3.8994, + "bayesian_average": 3.895166058088759, + "count": 1153, + "text_count": 408 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/youtube-high-definition/revi…", "requires_payment": false, @@ -2886,7 +2886,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/youtube-high-definition/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/youtube-high-definition/vers…", - "weekly_downloads": 1838 + "weekly_downloads": 1749 }, "notes": null } ===================================== projects/firefox-android/config ===================================== @@ -17,7 +17,6 @@ var: fenix_version: 115.2.1 browser_branch: 13.0-1 browser_build: 1 - platform_version: 115.0 variant: Beta # This should be updated when the list of gradle dependencies is changed. gradle_dependencies_version: 1 ===================================== projects/firefox/config ===================================== @@ -14,11 +14,11 @@ container: use_container: 1 var: - firefox_platform_version: 115.1.0 + firefox_platform_version: 115.2.0 firefox_version: '[% c("var/firefox_platform_version") %]esr' browser_series: '13.0' browser_branch: '[% c("var/browser_series") %]-1' - browser_build: 4 + browser_build: 2 branding_directory_prefix: 'tb' copyright_year: '[% exec("git show -s --format=%ci").remove("-.*") %]' nightly_updates_publish_dir: '[% c("var/nightly_updates_publish_dir_prefix") %]nightly-[% c("var/osname") %]' @@ -85,7 +85,6 @@ targets: git_url: https://gitlab.torproject.org/tpo/applications/mullvad-browser.git var: branding_directory_prefix: 'mb' - browser_build: 3 gitlab_project: https://gitlab.torproject.org/tpo/applications/mullvad-browser linux-x86_64: ===================================== projects/geckoview/config ===================================== @@ -14,9 +14,9 @@ container: use_container: 1 var: - geckoview_version: 115.1.0esr + geckoview_version: 115.2.0esr browser_branch: 13.0-1 - browser_build: 4 + browser_build: 2 copyright_year: '[% exec("git show -s --format=%ci").remove("-.*") %]' gitlab_project: https://gitlab.torproject.org/tpo/applications/tor-browser git_commit: '[% exec("git rev-parse HEAD") %]' ===================================== projects/translation/config ===================================== @@ -12,19 +12,19 @@ compress_tar: 'gz' steps: base-browser: base-browser: '[% INCLUDE build %]' - git_hash: f940956c425c199f622f53fef9a735fc303b11f1 + git_hash: 6544f03cf00e87e9b10eb20efa176b3cb97bc201 targets: nightly: git_hash: 'base-browser' tor-browser: tor-browser: '[% INCLUDE build %]' - git_hash: 2b885b2a6dfeaa046678133755639d6e26485754 + git_hash: 976a9c609d09666b67e5a7f530a5df7bad8b35ea targets: nightly: git_hash: 'tor-browser' mullvad-browser: mullvad-browser: '[% INCLUDE build %]' - git_hash: 1f736c5ae157f27df975c18bf3f2fa5f4bb5e33a + git_hash: 57de1569da0e2c48fd999a13e555f6b522041993 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: e037147c72348192ddd38c2a21712c65031b912c + git_hash: 46dc5bacb64aba3b170ce87cf07af414faa7c35a compress_tar: 'zst' targets: nightly: ===================================== rbm.conf ===================================== @@ -81,10 +81,11 @@ buildconf: git_signtag_opt: '-s' var: - torbrowser_version: '13.0a2' - torbrowser_build: 'build5' + torbrowser_version: '13.0a3' + torbrowser_build: 'build1' torbrowser_incremental_from: - '13.0a1' + - '13.0a2' updater_enabled: 1 build_mar: 1 mar_channel_id: '[% c("var/projectname") %]-torproject-[% c("var/channel") %]' View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/compare/… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-bundle-testsuite][main] Bug 40075: Use /tmp for nightly builds on tb-build-06
by richard (@richard) 22 Aug '23

22 Aug '23
richard pushed to branch main at The Tor Project / Applications / tor-browser-bundle-testsuite Commits: 8924181a by Nicolas Vigier at 2023-07-05T18:23:39+02:00 Bug 40075: Use /tmp for nightly builds on tb-build-06 - - - - - 1 changed file: - rbm-config/tb-build-06.torproject.org.rbm.local.conf Changes: ===================================== rbm-config/tb-build-06.torproject.org.rbm.local.conf ===================================== @@ -10,7 +10,7 @@ ### builds are made from this directory, so using a directory on a fast ### disk can improve build time. By default we are using a tmp directory ### under the tor-browser-build directory. -#tmp_dir: /tmp +tmp_dir: /tmp ### The debug option defines whether a debugging shell should be opened ### automatically in the build directory/container in case of build View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-bundle-testsuite… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-bundle-testsuite… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][base-browser-115.2.0esr-13.0-1] 2 commits: Bug 42027: Base Browser migration procedures.
by Pier Angelo Vendrame (@pierov) 22 Aug '23

22 Aug '23
Pier Angelo Vendrame pushed to branch base-browser-115.2.0esr-13.0-1 at The Tor Project / Applications / Tor Browser Commits: f96d5aae by Pier Angelo Vendrame at 2023-08-22T18:51:06+02:00 Bug 42027: Base Browser migration procedures. This commit implmenents the the Base Browser&#39;s version of _migrateUI. - - - - - fc9ab629 by Pier Angelo Vendrame at 2023-08-22T18:51:09+02:00 Bug 41739: Remove &quot;Website appearance&quot; from about:preferences. It is ignored because of RFP and it is confusing for users. - - - - - 2 changed files: - browser/components/BrowserGlue.sys.mjs - browser/components/preferences/main.inc.xhtml Changes: ===================================== browser/components/BrowserGlue.sys.mjs ===================================== @@ -1211,6 +1211,9 @@ BrowserGlue.prototype = { // handle any UI migration this._migrateUI(); + // Base Browser-specific version of _migrateUI. + this._migrateUIBB(); + // Clear possibly auto enabled enterprise_roots prefs (see bug 40166) if ( !Services.prefs.getBoolPref( @@ -4283,6 +4286,25 @@ BrowserGlue.prototype = { Services.prefs.setIntPref("browser.migration.version", UI_VERSION); }, + _migrateUIBB() { + // Version 1: 13.0a3. Reset layout.css.prefers-color-scheme.content-override + // for tor-browser#41739. + const MIGRATION_VERSION = 1; + const MIGRATION_PREF = "basebrowser.migration.version"; + // We do not care whether this is a new or old profile, since in version 1 + // we just quickly clear a user preference, which should not do anything to + // new profiles. + // Shall we ever raise the version number and have a watershed, we can add + // a check easily (any version > 0 will be an old profile). + const currentVersion = Services.prefs.getIntPref(MIGRATION_PREF, 0); + if (currentVersion < 1) { + Services.prefs.clearUserPref( + "layout.css.prefers-color-scheme.content-override" + ); + } + Services.prefs.setIntPref(MIGRATION_PREF, MIGRATION_VERSION); + }, + async _showUpgradeDialog() { const data = await lazy.OnboardingMessageProvider.getUpgradeMessage(); const { gBrowser } = lazy.BrowserWindowTracker.getTopWindow(); ===================================== browser/components/preferences/main.inc.xhtml ===================================== @@ -138,7 +138,7 @@ </hbox> <!-- Website appearance --> -<groupbox id="webAppearanceGroup" data-category="paneGeneral" hidden="true"> +<groupbox id="webAppearanceGroup" data-category="paneGeneral" hidden="true" data-hidden-from-search="true"> <html:h2 data-l10n-id="preferences-web-appearance-header"/> <html:div id="webAppearanceSettings"> <description data-l10n-id="preferences-web-appearance-description"/> View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/ed4858… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/ed4858… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-115.2.0esr-13.0-1] 2 commits: Bug 42027: Base Browser migration procedures.
by Pier Angelo Vendrame (@pierov) 22 Aug '23

22 Aug '23
Pier Angelo Vendrame pushed to branch tor-browser-115.2.0esr-13.0-1 at The Tor Project / Applications / Tor Browser Commits: 5ff3177a by Pier Angelo Vendrame at 2023-08-22T18:44:59+02:00 Bug 42027: Base Browser migration procedures. This commit implmenents the the Base Browser&#39;s version of _migrateUI. - - - - - f268423e by Pier Angelo Vendrame at 2023-08-22T18:45:00+02:00 Bug 41739: Remove &quot;Website appearance&quot; from about:preferences. It is ignored because of RFP and it is confusing for users. - - - - - 2 changed files: - browser/components/BrowserGlue.sys.mjs - browser/components/preferences/main.inc.xhtml Changes: ===================================== browser/components/BrowserGlue.sys.mjs ===================================== @@ -1300,6 +1300,9 @@ BrowserGlue.prototype = { // handle any UI migration this._migrateUI(); + // Base Browser-specific version of _migrateUI. + this._migrateUIBB(); + // Handle any TBB-specific migration before showing the UI. Keep after // _migrateUI to make sure this._isNewProfile has been defined. this._migrateUITBB(); @@ -4404,6 +4407,25 @@ BrowserGlue.prototype = { Services.prefs.setIntPref("browser.migration.version", UI_VERSION); }, + _migrateUIBB() { + // Version 1: 13.0a3. Reset layout.css.prefers-color-scheme.content-override + // for tor-browser#41739. + const MIGRATION_VERSION = 1; + const MIGRATION_PREF = "basebrowser.migration.version"; + // We do not care whether this is a new or old profile, since in version 1 + // we just quickly clear a user preference, which should not do anything to + // new profiles. + // Shall we ever raise the version number and have a watershed, we can add + // a check easily (any version > 0 will be an old profile). + const currentVersion = Services.prefs.getIntPref(MIGRATION_PREF, 0); + if (currentVersion < 1) { + Services.prefs.clearUserPref( + "layout.css.prefers-color-scheme.content-override" + ); + } + Services.prefs.setIntPref(MIGRATION_PREF, MIGRATION_VERSION); + }, + // Use this method for any TBB migration that can be run just before showing // the UI. // Anything that critically needs to be migrated earlier should not use this. ===================================== browser/components/preferences/main.inc.xhtml ===================================== @@ -138,7 +138,7 @@ </hbox> <!-- Website appearance --> -<groupbox id="webAppearanceGroup" data-category="paneGeneral" hidden="true"> +<groupbox id="webAppearanceGroup" data-category="paneGeneral" hidden="true" data-hidden-from-search="true"> <html:h2 data-l10n-id="preferences-web-appearance-header"/> <html:div id="webAppearanceSettings"> <description data-l10n-id="preferences-web-appearance-description"/> View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/d17f31… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/d17f31… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][base-browser-115.2.0esr-13.0-1] 2 commits: Bug 42019: Empty browser's clipboard on browser shutdown
by richard (@richard) 22 Aug '23

22 Aug '23
richard pushed to branch base-browser-115.2.0esr-13.0-1 at The Tor Project / Applications / Tor Browser Commits: cde79442 by hackademix at 2023-08-22T15:53:12+00:00 Bug 42019: Empty browser&#39;s clipboard on browser shutdown - - - - - ed48588b by cypherpunks1 at 2023-08-22T15:53:31+00:00 fixup! Firefox preference overrides. Bug 41876: Disable the Firefox View tab - - - - - 2 changed files: - browser/app/profile/001-base-profile.js - browser/components/BrowserGlue.sys.mjs Changes: ===================================== browser/app/profile/001-base-profile.js ===================================== @@ -17,6 +17,9 @@ pref("startup.homepage_welcome_url.additional", ""); // Disable Firefox Welcome Dialog pref("browser.aboutwelcome.enabled", false); +// Disable the Firefox View tab (tor-browser#41876) +pref("browser.tabs.firefox-view", false); + // Bug 41668: allow users to apply updates. This is set also in firefox.js for // all platforms, except for Windows. As explained on firefox.js, Firefox uses a // per-installation preference on Windows. However, we patch this behavior, and ===================================== browser/components/BrowserGlue.sys.mjs ===================================== @@ -1909,6 +1909,7 @@ BrowserGlue.prototype = { lazy.UpdateListener.reset(); } }, + () => Services.clipboard.emptyClipboard(Ci.nsIClipboard.kGlobalClipboard) // tor-browser#42019 ]; for (let task of tasks) { View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/225930… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/225930… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-115.2.0esr-13.0-1] fixup! Bug 16940: After update, load local change notes.
by Pier Angelo Vendrame (@pierov) 22 Aug '23

22 Aug '23
Pier Angelo Vendrame pushed to branch tor-browser-115.2.0esr-13.0-1 at The Tor Project / Applications / Tor Browser Commits: d17f3162 by Pier Angelo Vendrame at 2023-08-22T17:53:33+02:00 fixup! Bug 16940: After update, load local change notes. Remove the doubled and unused aboutTBUpdate.dtd - - - - - 2 changed files: - − browser/locales/en-US/chrome/browser/aboutTBUpdate.dtd - browser/locales/jar.mn Changes: ===================================== browser/locales/en-US/chrome/browser/aboutTBUpdate.dtd deleted ===================================== @@ -1,14 +0,0 @@ -<!ENTITY aboutTBUpdate.changelogTitle "Tor Browser Changelog"> -<!ENTITY aboutTBUpdate.updated "Tor Browser has been updated."> -<!-- LOCALIZATION NOTE: the following entities are used to create the link to - - obtain more information about the latest update. - - The markup on the page looks like this: - - &aboutTBUpdate.linkPrefix;<a href="...">&aboutTBUpdate.linkLabel;</a>&aboutTBUpdate.linkSuffix; - - So, linkPrefix is what precedes the link, linkLabel is the link itself, - - and linkSuffix is a text after the link. --> -<!ENTITY aboutTBUpdate.linkPrefix "For the most up-to-date information about this release, "> -<!ENTITY aboutTBUpdate.linkLabel "visit our website"> -<!ENTITY aboutTBUpdate.linkSuffix "."> -<!ENTITY aboutTBUpdate.version "Version"> -<!ENTITY aboutTBUpdate.releaseDate "Release Date"> -<!ENTITY aboutTBUpdate.releaseNotes "Release Notes"> ===================================== browser/locales/jar.mn ===================================== @@ -18,9 +18,6 @@ @AB_CD@.jar: % locale browser @AB_CD@ %locale/browser/ -#ifdef BASE_BROWSER_UPDATE - locale/browser/aboutTBUpdate.dtd (%chrome/browser/aboutTBUpdate.dtd) -#endif locale/browser/browser.properties (%chrome/browser/browser.properties) locale/browser/customizableui/customizableWidgets.properties (%chrome/browser/customizableui/customizableWidgets.properties) locale/browser/uiDensity.properties (%chrome/browser/uiDensity.properties) View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/d17f316… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/d17f316… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 376
  • 377
  • 378
  • 379
  • 380
  • 381
  • 382
  • ...
  • 1870
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.