richard pushed to branch maint-13.0 at The Tor Project / Applications / tor-browser-build
Commits:
94a9dad2 by Richard Pospesel at 2023-10-23T16:06:46+00:00
Bug 40977&40980: Prepare Tor and Mullvad Browser 13.0.1-build2
- - - - -
3 changed files:
- projects/browser/Bundle-Data/Docs-MB/ChangeLog.txt
- projects/browser/Bundle-Data/Docs-TBB/ChangeLog.txt
- rbm.conf
Changes:
=====================================
projects/browser/Bundle-Data/Docs-MB/ChangeLog.txt
=====================================
@@ -5,6 +5,8 @@ Mullvad Browser 13.0.1 - October 24 2023
* Bug 42185: Rebase stable browsers on top of 115.4.0esr [tor-browser]
* Bug 42191: Backport security fixes (Android & wontfix) from Firefox 119 to 115.4 - based Tor Browser [tor-browser]
* Build System
+ * Windows + Linux
+ * Bug 40991: Fix creation of downloads-windows-x86_64.json and downloads-linux-x86_64.json [tor-browser-build]
* Windows
* Bug 40984: The PDBs for .exe are not included [tor-browser-build]
=====================================
projects/browser/Bundle-Data/Docs-TBB/ChangeLog.txt
=====================================
@@ -13,6 +13,8 @@ Tor Browser 13.0.1 - October 24 2023
* Updated Go to 1.21.3
* Bug 40976: Update download-unsigned-sha256sums-gpg-signatures-from-people-tpo to fetch from tb-build-02 and tb-build-03 [tor-browser-build]
* Bug 40062: Copy input directories to containers recursively [rbm]
+ * Windows + Linux
+ * Bug 40991: Fix creation of downloads-windows-x86_64.json and downloads-linux-x86_64.json [tor-browser-build]
* Windows
* Bug 40984: The PDBs for .exe are not included [tor-browser-build]
* Linux
=====================================
rbm.conf
=====================================
@@ -82,7 +82,7 @@ buildconf:
var:
torbrowser_version: '13.0.1'
- torbrowser_build: 'build1'
+ torbrowser_build: 'build2'
torbrowser_incremental_from:
- '13.0'
- '12.5.6'
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/9…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/9…
You're receiving this email because of your account on gitlab.torproject.org.
richard pushed to branch maint-13.0 at The Tor Project / Applications / tor-browser-build
Commits:
d0f863fc by Richard Pospesel at 2023-10-23T16:05:05+00:00
Bug 40977&40980: Prepare Tor and Mullvad Browser 13.0.1-build2
- - - - -
2 changed files:
- projects/browser/Bundle-Data/Docs-MB/ChangeLog.txt
- projects/browser/Bundle-Data/Docs-TBB/ChangeLog.txt
Changes:
=====================================
projects/browser/Bundle-Data/Docs-MB/ChangeLog.txt
=====================================
@@ -5,6 +5,8 @@ Mullvad Browser 13.0.1 - October 24 2023
* Bug 42185: Rebase stable browsers on top of 115.4.0esr [tor-browser]
* Bug 42191: Backport security fixes (Android & wontfix) from Firefox 119 to 115.4 - based Tor Browser [tor-browser]
* Build System
+ * Windows + Linux
+ * Bug 40991: Fix creation of downloads-windows-x86_64.json and downloads-linux-x86_64.json [tor-browser-build]
* Windows
* Bug 40984: The PDBs for .exe are not included [tor-browser-build]
=====================================
projects/browser/Bundle-Data/Docs-TBB/ChangeLog.txt
=====================================
@@ -13,6 +13,8 @@ Tor Browser 13.0.1 - October 24 2023
* Updated Go to 1.21.3
* Bug 40976: Update download-unsigned-sha256sums-gpg-signatures-from-people-tpo to fetch from tb-build-02 and tb-build-03 [tor-browser-build]
* Bug 40062: Copy input directories to containers recursively [rbm]
+ * Windows + Linux
+ * Bug 40991: Fix creation of downloads-windows-x86_64.json and downloads-linux-x86_64.json [tor-browser-build]
* Windows
* Bug 40984: The PDBs for .exe are not included [tor-browser-build]
* Linux
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/d…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/d…
You're receiving this email because of your account on gitlab.torproject.org.
richard pushed to branch maint-13.0 at The Tor Project / Applications / tor-browser-build
Commits:
78659d49 by Nicolas Vigier at 2023-10-23T16:00:31+00:00
Bug 40991: Fix creation of downloads-windows-x86_64.json and downloads-linux-x86_64.json
Due to a typo, downloads-windows-x86_64.json and
downloads-linux-x86_64.json were not created.
- - - - -
1 changed file:
- tools/update-responses/update_responses
Changes:
=====================================
tools/update-responses/update_responses
=====================================
@@ -165,9 +165,9 @@ sub get_perplatform_downloads {
my $os;
if ($file =~ m/^$config->{appname_bundle}-macos-$version.dmg$/) {
$os = 'macos';
- } elsif ($file =~ m/^$config->{appname_bundle}-(linux-i686|linux-86_64)-${version}.tar.xz$/) {
+ } elsif ($file =~ m/^$config->{appname_bundle}-(linux-i686|linux-x86_64)-${version}.tar.xz$/) {
$os = $1;
- } elsif ($file =~ m/^$config->{appname_bundle}-(windows-i686|windows-86_64)-portable-${version}.exe$/) {
+ } elsif ($file =~ m/^$config->{appname_bundle}-(windows-i686|windows-x86_64)-portable-${version}.exe$/) {
$os = $1;
} elsif ($file =~ m/^$config->{appname_bundle}-(android-armv7|android-x86|android-x86_64|android-aarch64)-${version}.apk$/) {
$os = $1;
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7…
You're receiving this email because of your account on gitlab.torproject.org.
richard pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
7105556c by Nicolas Vigier at 2023-10-23T15:11:48+02:00
Bug 40991: Fix creation of downloads-windows-x86_64.json and downloads-linux-x86_64.json
Due to a typo, downloads-windows-x86_64.json and
downloads-linux-x86_64.json were not created.
- - - - -
1 changed file:
- tools/update-responses/update_responses
Changes:
=====================================
tools/update-responses/update_responses
=====================================
@@ -165,9 +165,9 @@ sub get_perplatform_downloads {
my $os;
if ($file =~ m/^$config->{appname_bundle}-macos-$version.dmg$/) {
$os = 'macos';
- } elsif ($file =~ m/^$config->{appname_bundle}-(linux-i686|linux-86_64)-${version}.tar.xz$/) {
+ } elsif ($file =~ m/^$config->{appname_bundle}-(linux-i686|linux-x86_64)-${version}.tar.xz$/) {
$os = $1;
- } elsif ($file =~ m/^$config->{appname_bundle}-(windows-i686|windows-86_64)-portable-${version}.exe$/) {
+ } elsif ($file =~ m/^$config->{appname_bundle}-(windows-i686|windows-x86_64)-portable-${version}.exe$/) {
$os = $1;
} elsif ($file =~ m/^$config->{appname_bundle}-(android-armv7|android-x86|android-x86_64|android-aarch64)-${version}.apk$/) {
$os = $1;
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7…
You're receiving this email because of your account on gitlab.torproject.org.