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 -----
  • 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
  • 18597 discussions
[Git][tpo/applications/tor-browser-build][main] Bug 41261: Use an uncompressed NoScript xpi file to improve apk compression
by morgan (@morgan) 10 Oct '24

10 Oct '24
morgan pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: 6bf962cd by cypherpunks1 at 2024-10-10T00:35:11+00:00 Bug 41261: Use an uncompressed NoScript xpi file to improve apk compression - - - - - 1 changed file: - projects/browser/build.android Changes: ===================================== projects/browser/build.android ===================================== @@ -21,7 +21,15 @@ noscript_path="$ext_dir/{73a6fe31-595d-460b-a920-fcc0f8843232}.xpi" mkdir -p /var/tmp/build/$ext_dir [% dest_dir _ '/' _ c('filename') %] cd /var/tmp/build -mv $rootdir/[% c('input_files_by_name/noscript') %] "$noscript_path" + +mkdir noscript +pushd noscript +unzip $rootdir/[% c('input_files_by_name/noscript') %] +[% c('zip', { + zip_src => [ '.' ], + zip_args => '-0 ../$noscript_path', + }) %] +popd [%IF c("var/tor-browser") -%] tar -xaf "$rootdir/[% c("input_files_by_name/tor-expert-bundle") %]/tor-expert-bundle.tar.gz" tor/pluggable_transports/pt_config.json View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/6… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/6… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/mullvad-browser][mullvad-browser-128.3.0esr-14.0-1] 2 commits: dropme! Bug 4234: Use the Firefox Update Process for Base Browser.
by morgan (@morgan) 10 Oct '24

10 Oct '24
morgan pushed to branch mullvad-browser-128.3.0esr-14.0-1 at The Tor Project / Applications / Mullvad Browser Commits: bc8fd871 by Pier Angelo Vendrame at 2024-10-10T21:13:43+00:00 dropme! Bug 4234: Use the Firefox Update Process for Base Browser. This commit is not for rebase. Revert "fixup! Bug 4234: Use the Firefox Update Process for Base Browser." This reverts commit af856ef0e56959a57baa0056916b84e02eaf4c67. - - - - - 2a2f50eb by Pier Angelo Vendrame at 2024-10-10T21:13:44+00:00 Bug 1923264 - Discard unsupported updates in selectUpdate. r=bytesized,nalexander UpdateService.#selectUpdate currently chooses always the most recent update even when unsupported and an older but supported one is available. This commit makes #selectUpdate discard the unsupported update if a supported alternative is found. Differential Revision: https://phabricator.services.mozilla.com/D224905 - - - - - 3 changed files: - toolkit/mozapps/update/tests/data/sharedUpdateXML.js - + toolkit/mozapps/update/tests/unit_aus_update/mixedUnsupported.js - toolkit/mozapps/update/tests/unit_aus_update/xpcshell.toml Changes: ===================================== toolkit/mozapps/update/tests/data/sharedUpdateXML.js ===================================== @@ -141,6 +141,7 @@ function getRemoteUpdateString(aUpdateProps, aPatches) { name: "App Update Test", promptWaitTime: null, type: "major", + unsupported: false, }; for (let name in aUpdateProps) { @@ -346,6 +347,7 @@ function getUpdateString(aUpdateProps) { aUpdateProps.disableBackgroundUpdates + '" ' : ""; + let unsupported = aUpdateProps.unsupported ? 'unsupported="true" ' : ""; let custom1 = aUpdateProps.custom1 ? aUpdateProps.custom1 + " " : ""; let custom2 = aUpdateProps.custom2 ? aUpdateProps.custom2 + " " : ""; let buildID = 'buildID="' + aUpdateProps.buildID + '"'; @@ -360,6 +362,7 @@ function getUpdateString(aUpdateProps) { promptWaitTime + disableBITS + disableBackgroundUpdates + + unsupported + custom1 + custom2 + buildID ===================================== toolkit/mozapps/update/tests/unit_aus_update/mixedUnsupported.js ===================================== @@ -0,0 +1,50 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +/** + * This tests that an older update is chosen over a more recent but unsupported + * update. + */ + +async function run_test() { + setupTestCommon(); + start_httpserver(); + setUpdateURL(gURLData + gHTTPHandlerPath); + setUpdateChannel("test_channel"); + + let patchProps = { + type: "complete", + url: "http://complete/", + size: "9856459", + }; + let patches = getRemotePatchString(patchProps); + patchProps = { type: "partial", url: "http://partial/", size: "1316138" }; + patches += getRemotePatchString(patchProps); + + let oldAppVersion = "900000.0"; + let newAppVersion = "999999.0"; + let update1 = getRemoteUpdateString( + { appVersion: newAppVersion, unsupported: true }, + patches + ); + let update2 = getRemoteUpdateString({ appVersion: oldAppVersion }, patches); + gResponseBody = getRemoteUpdatesXMLString(update1 + update2); + + let checkResult = await waitForUpdateCheck(true, { updateCount: 2 }); + let bestUpdate = await gAUS.selectUpdate(checkResult.updates); + bestUpdate.QueryInterface(Ci.nsIWritablePropertyBag); + Assert.equal( + bestUpdate.unsupported, + false, + "The unsupported update has been discarded." + ); + Assert.equal( + bestUpdate.appVersion, + oldAppVersion, + "Expected the older version to be chosen over the more recent but unsupported." + ); + + stop_httpserver(doTestFinish); +} ===================================== toolkit/mozapps/update/tests/unit_aus_update/xpcshell.toml ===================================== @@ -56,6 +56,8 @@ reason = "Feature is Firefox-specific and Windows-specific." ["languagePackUpdates.js"] skip-if = ["socketprocess_networking"] # Bug 1759035 +["mixedUnsupported.js"] + ["multiUpdate.js"] skip-if = ["socketprocess_networking"] # Bug 1759035 View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/be… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/be… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][base-browser-128.3.0esr-14.0-1] 2 commits: dropme! Bug 4234: Use the Firefox Update Process for Base Browser.
by morgan (@morgan) 10 Oct '24

10 Oct '24
morgan pushed to branch base-browser-128.3.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: e67837c7 by Pier Angelo Vendrame at 2024-10-10T21:12:54+00:00 dropme! Bug 4234: Use the Firefox Update Process for Base Browser. This commit is not for rebase. Revert "fixup! Bug 4234: Use the Firefox Update Process for Base Browser." This reverts commit af856ef0e56959a57baa0056916b84e02eaf4c67. - - - - - 011b3ff9 by Pier Angelo Vendrame at 2024-10-10T21:12:55+00:00 Bug 1923264 - Discard unsupported updates in selectUpdate. r=bytesized,nalexander UpdateService.#selectUpdate currently chooses always the most recent update even when unsupported and an older but supported one is available. This commit makes #selectUpdate discard the unsupported update if a supported alternative is found. Differential Revision: https://phabricator.services.mozilla.com/D224905 - - - - - 3 changed files: - toolkit/mozapps/update/tests/data/sharedUpdateXML.js - + toolkit/mozapps/update/tests/unit_aus_update/mixedUnsupported.js - toolkit/mozapps/update/tests/unit_aus_update/xpcshell.toml Changes: ===================================== toolkit/mozapps/update/tests/data/sharedUpdateXML.js ===================================== @@ -141,6 +141,7 @@ function getRemoteUpdateString(aUpdateProps, aPatches) { name: "App Update Test", promptWaitTime: null, type: "major", + unsupported: false, }; for (let name in aUpdateProps) { @@ -346,6 +347,7 @@ function getUpdateString(aUpdateProps) { aUpdateProps.disableBackgroundUpdates + '" ' : ""; + let unsupported = aUpdateProps.unsupported ? 'unsupported="true" ' : ""; let custom1 = aUpdateProps.custom1 ? aUpdateProps.custom1 + " " : ""; let custom2 = aUpdateProps.custom2 ? aUpdateProps.custom2 + " " : ""; let buildID = 'buildID="' + aUpdateProps.buildID + '"'; @@ -360,6 +362,7 @@ function getUpdateString(aUpdateProps) { promptWaitTime + disableBITS + disableBackgroundUpdates + + unsupported + custom1 + custom2 + buildID ===================================== toolkit/mozapps/update/tests/unit_aus_update/mixedUnsupported.js ===================================== @@ -0,0 +1,50 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +/** + * This tests that an older update is chosen over a more recent but unsupported + * update. + */ + +async function run_test() { + setupTestCommon(); + start_httpserver(); + setUpdateURL(gURLData + gHTTPHandlerPath); + setUpdateChannel("test_channel"); + + let patchProps = { + type: "complete", + url: "http://complete/", + size: "9856459", + }; + let patches = getRemotePatchString(patchProps); + patchProps = { type: "partial", url: "http://partial/", size: "1316138" }; + patches += getRemotePatchString(patchProps); + + let oldAppVersion = "900000.0"; + let newAppVersion = "999999.0"; + let update1 = getRemoteUpdateString( + { appVersion: newAppVersion, unsupported: true }, + patches + ); + let update2 = getRemoteUpdateString({ appVersion: oldAppVersion }, patches); + gResponseBody = getRemoteUpdatesXMLString(update1 + update2); + + let checkResult = await waitForUpdateCheck(true, { updateCount: 2 }); + let bestUpdate = await gAUS.selectUpdate(checkResult.updates); + bestUpdate.QueryInterface(Ci.nsIWritablePropertyBag); + Assert.equal( + bestUpdate.unsupported, + false, + "The unsupported update has been discarded." + ); + Assert.equal( + bestUpdate.appVersion, + oldAppVersion, + "Expected the older version to be chosen over the more recent but unsupported." + ); + + stop_httpserver(doTestFinish); +} ===================================== toolkit/mozapps/update/tests/unit_aus_update/xpcshell.toml ===================================== @@ -56,6 +56,8 @@ reason = "Feature is Firefox-specific and Windows-specific." ["languagePackUpdates.js"] skip-if = ["socketprocess_networking"] # Bug 1759035 +["mixedUnsupported.js"] + ["multiUpdate.js"] skip-if = ["socketprocess_networking"] # Bug 1759035 View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/c3282a… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/c3282a… 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.3.0esr-14.0-1] 2 commits: dropme! Bug 4234: Use the Firefox Update Process for Base Browser.
by morgan (@morgan) 10 Oct '24

10 Oct '24
morgan pushed to branch tor-browser-128.3.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: 39ab6faf by Pier Angelo Vendrame at 2024-10-10T20:55:41+00:00 dropme! Bug 4234: Use the Firefox Update Process for Base Browser. This commit is not for rebase. Revert "fixup! Bug 4234: Use the Firefox Update Process for Base Browser." This reverts commit af856ef0e56959a57baa0056916b84e02eaf4c67. - - - - - 25d29e14 by Pier Angelo Vendrame at 2024-10-10T20:55:41+00:00 Bug 1923264 - Discard unsupported updates in selectUpdate. r=bytesized,nalexander UpdateService.#selectUpdate currently chooses always the most recent update even when unsupported and an older but supported one is available. This commit makes #selectUpdate discard the unsupported update if a supported alternative is found. Differential Revision: https://phabricator.services.mozilla.com/D224905 - - - - - 3 changed files: - toolkit/mozapps/update/tests/data/sharedUpdateXML.js - + toolkit/mozapps/update/tests/unit_aus_update/mixedUnsupported.js - toolkit/mozapps/update/tests/unit_aus_update/xpcshell.toml Changes: ===================================== toolkit/mozapps/update/tests/data/sharedUpdateXML.js ===================================== @@ -141,6 +141,7 @@ function getRemoteUpdateString(aUpdateProps, aPatches) { name: "App Update Test", promptWaitTime: null, type: "major", + unsupported: false, }; for (let name in aUpdateProps) { @@ -346,6 +347,7 @@ function getUpdateString(aUpdateProps) { aUpdateProps.disableBackgroundUpdates + '" ' : ""; + let unsupported = aUpdateProps.unsupported ? 'unsupported="true" ' : ""; let custom1 = aUpdateProps.custom1 ? aUpdateProps.custom1 + " " : ""; let custom2 = aUpdateProps.custom2 ? aUpdateProps.custom2 + " " : ""; let buildID = 'buildID="' + aUpdateProps.buildID + '"'; @@ -360,6 +362,7 @@ function getUpdateString(aUpdateProps) { promptWaitTime + disableBITS + disableBackgroundUpdates + + unsupported + custom1 + custom2 + buildID ===================================== toolkit/mozapps/update/tests/unit_aus_update/mixedUnsupported.js ===================================== @@ -0,0 +1,50 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +/** + * This tests that an older update is chosen over a more recent but unsupported + * update. + */ + +async function run_test() { + setupTestCommon(); + start_httpserver(); + setUpdateURL(gURLData + gHTTPHandlerPath); + setUpdateChannel("test_channel"); + + let patchProps = { + type: "complete", + url: "http://complete/", + size: "9856459", + }; + let patches = getRemotePatchString(patchProps); + patchProps = { type: "partial", url: "http://partial/", size: "1316138" }; + patches += getRemotePatchString(patchProps); + + let oldAppVersion = "900000.0"; + let newAppVersion = "999999.0"; + let update1 = getRemoteUpdateString( + { appVersion: newAppVersion, unsupported: true }, + patches + ); + let update2 = getRemoteUpdateString({ appVersion: oldAppVersion }, patches); + gResponseBody = getRemoteUpdatesXMLString(update1 + update2); + + let checkResult = await waitForUpdateCheck(true, { updateCount: 2 }); + let bestUpdate = await gAUS.selectUpdate(checkResult.updates); + bestUpdate.QueryInterface(Ci.nsIWritablePropertyBag); + Assert.equal( + bestUpdate.unsupported, + false, + "The unsupported update has been discarded." + ); + Assert.equal( + bestUpdate.appVersion, + oldAppVersion, + "Expected the older version to be chosen over the more recent but unsupported." + ); + + stop_httpserver(doTestFinish); +} ===================================== toolkit/mozapps/update/tests/unit_aus_update/xpcshell.toml ===================================== @@ -56,6 +56,8 @@ reason = "Feature is Firefox-specific and Windows-specific." ["languagePackUpdates.js"] skip-if = ["socketprocess_networking"] # Bug 1759035 +["mixedUnsupported.js"] + ["multiUpdate.js"] skip-if = ["socketprocess_networking"] # Bug 1759035 View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/61c5f5… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/61c5f5… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/mullvad-browser][mullvad-browser-128.3.0esr-14.0-1] Bug 1922204: fixup square spoofed orientation. r=tjr
by morgan (@morgan) 10 Oct '24

10 Oct '24
morgan pushed to branch mullvad-browser-128.3.0esr-14.0-1 at The Tor Project / Applications / Mullvad Browser Commits: be3bc055 by Fatih at 2024-10-10T20:53:43+00:00 Bug 1922204: fixup square spoofed orientation. r=tjr Differential Revision: https://phabricator.services.mozilla.com/D224312 - - - - - 1 changed file: - toolkit/components/resistfingerprinting/nsRFPService.cpp Changes: ===================================== toolkit/components/resistfingerprinting/nsRFPService.cpp ===================================== @@ -2287,10 +2287,12 @@ Maybe<RFPTarget> nsRFPService::GetOverriddenFingerprintingSettingsForURI( /* static */ uint16_t nsRFPService::ViewportSizeToAngle(int32_t aWidth, int32_t aHeight) { + // Note that, if screen is square, we return portrait-primary. + // That's why we use > on non-android and >= on Android. #ifdef MOZ_WIDGET_ANDROID bool neutral = aHeight >= aWidth; #else - bool neutral = aWidth >= aHeight; + bool neutral = aWidth > aHeight; #endif if (neutral) { return 0; @@ -2301,7 +2303,7 @@ uint16_t nsRFPService::ViewportSizeToAngle(int32_t aWidth, int32_t aHeight) { /* static */ dom::OrientationType nsRFPService::ViewportSizeToOrientationType( int32_t aWidth, int32_t aHeight) { - if (aWidth >= aHeight) { + if (aWidth > aHeight) { return dom::OrientationType::Landscape_primary; } return dom::OrientationType::Portrait_primary; View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/be3… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/be3… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][base-browser-128.3.0esr-14.0-1] Bug 1922204: fixup square spoofed orientation. r=tjr
by morgan (@morgan) 10 Oct '24

10 Oct '24
morgan pushed to branch base-browser-128.3.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: c3282afe by Fatih at 2024-10-10T20:52:43+00:00 Bug 1922204: fixup square spoofed orientation. r=tjr Differential Revision: https://phabricator.services.mozilla.com/D224312 - - - - - 1 changed file: - toolkit/components/resistfingerprinting/nsRFPService.cpp Changes: ===================================== toolkit/components/resistfingerprinting/nsRFPService.cpp ===================================== @@ -2287,10 +2287,12 @@ Maybe<RFPTarget> nsRFPService::GetOverriddenFingerprintingSettingsForURI( /* static */ uint16_t nsRFPService::ViewportSizeToAngle(int32_t aWidth, int32_t aHeight) { + // Note that, if screen is square, we return portrait-primary. + // That's why we use > on non-android and >= on Android. #ifdef MOZ_WIDGET_ANDROID bool neutral = aHeight >= aWidth; #else - bool neutral = aWidth >= aHeight; + bool neutral = aWidth > aHeight; #endif if (neutral) { return 0; @@ -2301,7 +2303,7 @@ uint16_t nsRFPService::ViewportSizeToAngle(int32_t aWidth, int32_t aHeight) { /* static */ dom::OrientationType nsRFPService::ViewportSizeToOrientationType( int32_t aWidth, int32_t aHeight) { - if (aWidth >= aHeight) { + if (aWidth > aHeight) { return dom::OrientationType::Landscape_primary; } return dom::OrientationType::Portrait_primary; View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c3282af… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c3282af… 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.3.0esr-14.0-1] Bug 1922204: fixup square spoofed orientation. r=tjr
by morgan (@morgan) 10 Oct '24

10 Oct '24
morgan pushed to branch tor-browser-128.3.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: 61c5f500 by Fatih at 2024-10-10T09:43:32+02:00 Bug 1922204: fixup square spoofed orientation. r=tjr Differential Revision: https://phabricator.services.mozilla.com/D224312 - - - - - 1 changed file: - toolkit/components/resistfingerprinting/nsRFPService.cpp Changes: ===================================== toolkit/components/resistfingerprinting/nsRFPService.cpp ===================================== @@ -2287,10 +2287,12 @@ Maybe<RFPTarget> nsRFPService::GetOverriddenFingerprintingSettingsForURI( /* static */ uint16_t nsRFPService::ViewportSizeToAngle(int32_t aWidth, int32_t aHeight) { + // Note that, if screen is square, we return portrait-primary. + // That's why we use > on non-android and >= on Android. #ifdef MOZ_WIDGET_ANDROID bool neutral = aHeight >= aWidth; #else - bool neutral = aWidth >= aHeight; + bool neutral = aWidth > aHeight; #endif if (neutral) { return 0; @@ -2301,7 +2303,7 @@ uint16_t nsRFPService::ViewportSizeToAngle(int32_t aWidth, int32_t aHeight) { /* static */ dom::OrientationType nsRFPService::ViewportSizeToOrientationType( int32_t aWidth, int32_t aHeight) { - if (aWidth >= aHeight) { + if (aWidth > aHeight) { return dom::OrientationType::Landscape_primary; } return dom::OrientationType::Portrait_primary; View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/61c5f50… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/61c5f50… 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] alpha: new version, 14.0a9
by morgan (@morgan) 09 Oct '24

09 Oct '24
morgan pushed to branch main at The Tor Project / Applications / mullvad-browser-update-responses Commits: 3cfd6852 by Morgan at 2024-10-09T23:05:18+00:00 alpha: new version, 14.0a9 - - - - - 29 changed files: - update_1/alpha/.htaccess - − update_1/alpha/14.0a5-14.0a8-linux-x86_64-ALL.xml - − update_1/alpha/14.0a5-14.0a8-macos-ALL.xml - − update_1/alpha/14.0a5-14.0a8-windows-x86_64-ALL.xml - − update_1/alpha/14.0a6-14.0a8-linux-x86_64-ALL.xml - − update_1/alpha/14.0a6-14.0a8-macos-ALL.xml - − update_1/alpha/14.0a6-14.0a8-windows-x86_64-ALL.xml - + update_1/alpha/14.0a6-14.0a9-linux-x86_64-ALL.xml - + update_1/alpha/14.0a6-14.0a9-macos-ALL.xml - + update_1/alpha/14.0a6-14.0a9-windows-x86_64-ALL.xml - − update_1/alpha/14.0a7-14.0a8-linux-x86_64-ALL.xml - − update_1/alpha/14.0a7-14.0a8-macos-ALL.xml - − update_1/alpha/14.0a7-14.0a8-windows-x86_64-ALL.xml - + update_1/alpha/14.0a7-14.0a9-linux-x86_64-ALL.xml - + update_1/alpha/14.0a7-14.0a9-macos-ALL.xml - + update_1/alpha/14.0a7-14.0a9-windows-x86_64-ALL.xml - + update_1/alpha/14.0a8-14.0a9-linux-x86_64-ALL.xml - + update_1/alpha/14.0a8-14.0a9-macos-ALL.xml - + update_1/alpha/14.0a8-14.0a9-windows-x86_64-ALL.xml - − update_1/alpha/14.0a8-linux-x86_64-ALL.xml - − update_1/alpha/14.0a8-macos-ALL.xml - − update_1/alpha/14.0a8-windows-x86_64-ALL.xml - + update_1/alpha/14.0a9-linux-x86_64-ALL.xml - + update_1/alpha/14.0a9-macos-ALL.xml - + update_1/alpha/14.0a9-windows-x86_64-ALL.xml - 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 Changes: ===================================== update_1/alpha/.htaccess ===================================== @@ -1,22 +1,22 @@ RewriteEngine On -RewriteRule ^[^/]+/14.0a8/ no-update.xml [last] -RewriteRule ^Linux_x86_64-gcc3/14.0a5/ALL 14.0a5-14.0a8-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/14.0a6/ALL 14.0a6-14.0a8-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/14.0a7/ALL 14.0a7-14.0a8-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 14.0a8-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/ 14.0a8-linux-x86_64-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/14.0a5/ALL 14.0a5-14.0a8-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/14.0a6/ALL 14.0a6-14.0a8-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/14.0a7/ALL 14.0a7-14.0a8-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 14.0a8-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/ 14.0a8-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/14.0a5/ALL 14.0a5-14.0a8-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/14.0a6/ALL 14.0a6-14.0a8-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/14.0a7/ALL 14.0a7-14.0a8-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 14.0a8-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/ 14.0a8-macos-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a5/ALL 14.0a5-14.0a8-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a6/ALL 14.0a6-14.0a8-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a7/ALL 14.0a7-14.0a8-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 14.0a8-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/ 14.0a8-windows-x86_64-ALL.xml [last] +RewriteRule ^[^/]+/14.0a9/ no-update.xml [last] +RewriteRule ^Linux_x86_64-gcc3/14.0a6/ALL 14.0a6-14.0a9-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/14.0a7/ALL 14.0a7-14.0a9-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/14.0a8/ALL 14.0a8-14.0a9-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 14.0a9-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/ 14.0a9-linux-x86_64-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/14.0a6/ALL 14.0a6-14.0a9-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/14.0a7/ALL 14.0a7-14.0a9-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/14.0a8/ALL 14.0a8-14.0a9-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 14.0a9-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/ 14.0a9-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/14.0a6/ALL 14.0a6-14.0a9-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/14.0a7/ALL 14.0a7-14.0a9-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/14.0a8/ALL 14.0a8-14.0a9-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 14.0a9-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/ 14.0a9-macos-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a6/ALL 14.0a6-14.0a9-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a7/ALL 14.0a7-14.0a9-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a8/ALL 14.0a8-14.0a9-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 14.0a9-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/ 14.0a9-windows-x86_64-ALL.xml [last] ===================================== update_1/alpha/14.0a5-14.0a8-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a8" appVersion="14.0a8" platformVersion="128.3.0" buildID="20241003192708" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-linux-x86_64-14.0a8_…" size="114017989" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-linux-x86_64--14.0a5…" size="9524789" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a5-14.0a8-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a8" appVersion="14.0a8" platformVersion="128.3.0" buildID="20241003192708" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-macos-14.0a8_ALL.mar" size="129055046" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-macos--14.0a5-14.0a8…" size="14482314" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a5-14.0a8-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a8" appVersion="14.0a8" platformVersion="128.3.0" buildID="20241003192708" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-windows-x86_64-14.0a…" size="95040536" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-windows-x86_64--14.0…" size="9941704" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a6-14.0a8-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a8" appVersion="14.0a8" platformVersion="128.3.0" buildID="20241003192708" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-linux-x86_64-14.0a8_…" size="114017989" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-linux-x86_64--14.0a6…" size="9403369" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a6-14.0a8-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a8" appVersion="14.0a8" platformVersion="128.3.0" buildID="20241003192708" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-macos-14.0a8_ALL.mar" size="129055046" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-macos--14.0a6-14.0a8…" size="14347894" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a6-14.0a8-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a8" appVersion="14.0a8" platformVersion="128.3.0" buildID="20241003192708" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-windows-x86_64-14.0a…" size="95040536" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-windows-x86_64--14.0…" size="9874992" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a6-14.0a9-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a9" appVersion="14.0a9" platformVersion="128.3.0" buildID="20241008203309" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-linux-x86_64-14.0a9_…" size="114019445" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-linux-x86_64--14.0a6…" size="9429081" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a6-14.0a9-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a9" appVersion="14.0a9" platformVersion="128.3.0" buildID="20241008203309" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-macos-14.0a9_ALL.mar" size="129063226" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-macos--14.0a6-14.0a9…" size="14397074" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a6-14.0a9-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a9" appVersion="14.0a9" platformVersion="128.3.0" buildID="20241008203309" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-windows-x86_64-14.0a…" size="95007704" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-windows-x86_64--14.0…" size="9768332" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a7-14.0a8-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a8" appVersion="14.0a8" platformVersion="128.3.0" buildID="20241003192708" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-linux-x86_64-14.0a8_…" size="114017989" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-linux-x86_64--14.0a7…" size="6272877" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a7-14.0a8-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a8" appVersion="14.0a8" platformVersion="128.3.0" buildID="20241003192708" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-macos-14.0a8_ALL.mar" size="129055046" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-macos--14.0a7-14.0a8…" size="8733473" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a7-14.0a8-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a8" appVersion="14.0a8" platformVersion="128.3.0" buildID="20241003192708" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-windows-x86_64-14.0a…" size="95040536" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-windows-x86_64--14.0…" size="5371254" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a7-14.0a9-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a9" appVersion="14.0a9" platformVersion="128.3.0" buildID="20241008203309" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-linux-x86_64-14.0a9_…" size="114019445" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-linux-x86_64--14.0a7…" size="6282441" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a7-14.0a9-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a9" appVersion="14.0a9" platformVersion="128.3.0" buildID="20241008203309" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-macos-14.0a9_ALL.mar" size="129063226" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-macos--14.0a7-14.0a9…" size="9540109" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a7-14.0a9-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a9" appVersion="14.0a9" platformVersion="128.3.0" buildID="20241008203309" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-windows-x86_64-14.0a…" size="95007704" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-windows-x86_64--14.0…" size="5978110" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a8-14.0a9-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a9" appVersion="14.0a9" platformVersion="128.3.0" buildID="20241008203309" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-linux-x86_64-14.0a9_…" size="114019445" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-linux-x86_64--14.0a8…" size="3392543" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a8-14.0a9-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a9" appVersion="14.0a9" platformVersion="128.3.0" buildID="20241008203309" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-macos-14.0a9_ALL.mar" size="129063226" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-macos--14.0a8-14.0a9…" size="6508272" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a8-14.0a9-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a9" appVersion="14.0a9" platformVersion="128.3.0" buildID="20241008203309" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-windows-x86_64-14.0a…" size="95007704" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-windows-x86_64--14.0…" size="3304804" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a8-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a8" appVersion="14.0a8" platformVersion="128.3.0" buildID="20241003192708" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-linux-x86_64-14.0a8_…" size="114017989" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a8-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a8" appVersion="14.0a8" platformVersion="128.3.0" buildID="20241003192708" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-macos-14.0a8_ALL.mar" size="129055046" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a8-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a8" appVersion="14.0a8" platformVersion="128.3.0" buildID="20241003192708" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a8" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-windows-x86_64-14.0a…" size="95040536" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a9-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a9" appVersion="14.0a9" platformVersion="128.3.0" buildID="20241008203309" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-linux-x86_64-14.0a9_…" size="114019445" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a9-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a9" appVersion="14.0a9" platformVersion="128.3.0" buildID="20241008203309" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-macos-14.0a9_ALL.mar" size="129063226" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a9-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a9" appVersion="14.0a9" platformVersion="128.3.0" buildID="20241008203309" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a9" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-windows-x86_64-14.0a…" size="95007704" type="complete"></patch></update></updates> ===================================== update_1/alpha/download-linux-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-linux-x86_64-14.0a8.…","git_tag":"mb-14.0a8-build2","sig":"https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-linux-x86_64-14.0a8.…","version":"14.0a8"} \ No newline at end of file +{"binary":"https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-linux-x86_64-14.0a9.…","git_tag":"mb-14.0a9-build1","sig":"https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-linux-x86_64-14.0a9.…","version":"14.0a9"} \ No newline at end of file ===================================== update_1/alpha/download-macos.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-macos-14.0a8.dmg","git_tag":"mb-14.0a8-build2","sig":"https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-macos-14.0a8.dmg.asc","version":"14.0a8"} \ No newline at end of file +{"binary":"https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-macos-14.0a9.dmg","git_tag":"mb-14.0a9-build1","sig":"https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-macos-14.0a9.dmg.asc","version":"14.0a9"} \ No newline at end of file ===================================== update_1/alpha/download-windows-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-windows-x86_64-14.0a…","git_tag":"mb-14.0a8-build2","sig":"https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-windows-x86_64-14.0a…","version":"14.0a8"} \ No newline at end of file +{"binary":"https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-windows-x86_64-14.0a…","git_tag":"mb-14.0a9-build1","sig":"https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-windows-x86_64-14.0a…","version":"14.0a9"} \ No newline at end of file ===================================== update_1/alpha/downloads.json ===================================== @@ -1 +1 @@ -{"downloads":{"linux-x86_64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-linux-x86_64-14.0a8.…","sig":"https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-linux-x86_64-14.0a8.…"}},"macos":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-macos-14.0a8.dmg","sig":"https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-macos-14.0a8.dmg.asc"}},"win64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-windows-x86_64-14.0a…","sig":"https://cdn.mullvad.net/browser/14.0a8/mullvad-browser-windows-x86_64-14.0a…"}}},"tag":"mb-14.0a8-build2","version":"14.0a8"} \ No newline at end of file +{"downloads":{"linux-x86_64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-linux-x86_64-14.0a9.…","sig":"https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-linux-x86_64-14.0a9.…"}},"macos":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-macos-14.0a9.dmg","sig":"https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-macos-14.0a9.dmg.asc"}},"win64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-windows-x86_64-14.0a…","sig":"https://cdn.mullvad.net/browser/14.0a9/mullvad-browser-windows-x86_64-14.0a…"}}},"tag":"mb-14.0a9-build1","version":"14.0a9"} \ No newline at end of file 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] alpha: new version, 14.0a9
by morgan (@morgan) 09 Oct '24

09 Oct '24
morgan pushed to branch main at The Tor Project / Applications / Tor Browser update responses Commits: f382501e by Morgan at 2024-10-09T22:35:24+00:00 alpha: new version, 14.0a9 - - - - - 30 changed files: - update_3/alpha/.htaccess - update_3/alpha/13.5a10-14.0a8+13.5a11-linux-i686-ALL.xml → update_3/alpha/13.5a10-14.0a9+13.5a11-linux-i686-ALL.xml - update_3/alpha/13.5a10-14.0a8+13.5a11-linux-x86_64-ALL.xml → update_3/alpha/13.5a10-14.0a9+13.5a11-linux-x86_64-ALL.xml - update_3/alpha/13.5a10-14.0a8+13.5a11-macos-ALL.xml → update_3/alpha/13.5a10-14.0a9+13.5a11-macos-ALL.xml - update_3/alpha/13.5a10-14.0a8+13.5a11-windows-i686-ALL.xml → update_3/alpha/13.5a10-14.0a9+13.5a11-windows-i686-ALL.xml - update_3/alpha/13.5a10-14.0a8+13.5a11-windows-x86_64-ALL.xml → update_3/alpha/13.5a10-14.0a9+13.5a11-windows-x86_64-ALL.xml - update_3/alpha/13.5a8-14.0a8+13.5a11-linux-i686-ALL.xml → update_3/alpha/13.5a8-14.0a9+13.5a11-linux-i686-ALL.xml - update_3/alpha/13.5a8-14.0a8+13.5a11-linux-x86_64-ALL.xml → update_3/alpha/13.5a8-14.0a9+13.5a11-linux-x86_64-ALL.xml - update_3/alpha/13.5a8-14.0a8+13.5a11-macos-ALL.xml → update_3/alpha/13.5a8-14.0a9+13.5a11-macos-ALL.xml - update_3/alpha/13.5a8-14.0a8+13.5a11-windows-i686-ALL.xml → update_3/alpha/13.5a8-14.0a9+13.5a11-windows-i686-ALL.xml - update_3/alpha/13.5a8-14.0a8+13.5a11-windows-x86_64-ALL.xml → update_3/alpha/13.5a8-14.0a9+13.5a11-windows-x86_64-ALL.xml - update_3/alpha/13.5a9-14.0a8+13.5a11-linux-i686-ALL.xml → update_3/alpha/13.5a9-14.0a9+13.5a11-linux-i686-ALL.xml - update_3/alpha/13.5a9-14.0a8+13.5a11-linux-x86_64-ALL.xml → update_3/alpha/13.5a9-14.0a9+13.5a11-linux-x86_64-ALL.xml - update_3/alpha/13.5a9-14.0a8+13.5a11-macos-ALL.xml → update_3/alpha/13.5a9-14.0a9+13.5a11-macos-ALL.xml - update_3/alpha/13.5a9-14.0a8+13.5a11-windows-i686-ALL.xml → update_3/alpha/13.5a9-14.0a9+13.5a11-windows-i686-ALL.xml - update_3/alpha/13.5a9-14.0a8+13.5a11-windows-x86_64-ALL.xml → update_3/alpha/13.5a9-14.0a9+13.5a11-windows-x86_64-ALL.xml - − update_3/alpha/14.0a5-14.0a8+13.5a11-macos-ALL.xml - update_3/alpha/14.0a6-14.0a8+13.5a11-linux-i686-ALL.xml → update_3/alpha/14.0a6-14.0a9+13.5a11-linux-i686-ALL.xml - update_3/alpha/14.0a5-14.0a8+13.5a11-linux-x86_64-ALL.xml → update_3/alpha/14.0a6-14.0a9+13.5a11-linux-x86_64-ALL.xml - update_3/alpha/14.0a6-14.0a8+13.5a11-macos-ALL.xml → update_3/alpha/14.0a6-14.0a9+13.5a11-macos-ALL.xml - update_3/alpha/14.0a5-14.0a8+13.5a11-windows-i686-ALL.xml → update_3/alpha/14.0a6-14.0a9+13.5a11-windows-i686-ALL.xml - update_3/alpha/14.0a6-14.0a8+13.5a11-windows-x86_64-ALL.xml → update_3/alpha/14.0a6-14.0a9+13.5a11-windows-x86_64-ALL.xml - update_3/alpha/14.0a7-14.0a8+13.5a11-linux-i686-ALL.xml → update_3/alpha/14.0a7-14.0a9+13.5a11-linux-i686-ALL.xml - update_3/alpha/14.0a6-14.0a8+13.5a11-linux-x86_64-ALL.xml → update_3/alpha/14.0a7-14.0a9+13.5a11-linux-x86_64-ALL.xml - update_3/alpha/14.0a7-14.0a8+13.5a11-macos-ALL.xml → update_3/alpha/14.0a7-14.0a9+13.5a11-macos-ALL.xml - update_3/alpha/14.0a6-14.0a8+13.5a11-windows-i686-ALL.xml → update_3/alpha/14.0a7-14.0a9+13.5a11-windows-i686-ALL.xml - update_3/alpha/14.0a7-14.0a8+13.5a11-windows-x86_64-ALL.xml → update_3/alpha/14.0a7-14.0a9+13.5a11-windows-x86_64-ALL.xml - update_3/alpha/14.0a5-14.0a8+13.5a11-linux-i686-ALL.xml → update_3/alpha/14.0a8-14.0a9+13.5a11-linux-i686-ALL.xml - update_3/alpha/14.0a7-14.0a8+13.5a11-linux-x86_64-ALL.xml → update_3/alpha/14.0a8-14.0a9+13.5a11-linux-x86_64-ALL.xml - + update_3/alpha/14.0a8-14.0a9+13.5a11-macos-ALL.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-update-responses][main] release: new version, 13.5.7
by boklm (@boklm) 09 Oct '24

09 Oct '24
boklm pushed to branch main at The Tor Project / Applications / Tor Browser update responses Commits: 3fa48758 by Nicolas Vigier at 2024-10-09T19:34:57+02:00 release: new version, 13.5.7 - - - - - 30 changed files: - update_3/release/.htaccess - − update_3/release/13.5.3-13.5.6-linux-i686-ALL.xml - − update_3/release/13.5.3-13.5.6-linux-x86_64-ALL.xml - − update_3/release/13.5.3-13.5.6-macos-ALL.xml - − update_3/release/13.5.3-13.5.6-windows-i686-ALL.xml - − update_3/release/13.5.3-13.5.6-windows-x86_64-ALL.xml - − update_3/release/13.5.4-13.5.6-linux-i686-ALL.xml - − update_3/release/13.5.4-13.5.6-linux-x86_64-ALL.xml - − update_3/release/13.5.4-13.5.6-macos-ALL.xml - − update_3/release/13.5.4-13.5.6-windows-i686-ALL.xml - − update_3/release/13.5.4-13.5.6-windows-x86_64-ALL.xml - + update_3/release/13.5.4-13.5.7-linux-i686-ALL.xml - + update_3/release/13.5.4-13.5.7-linux-x86_64-ALL.xml - + update_3/release/13.5.4-13.5.7-macos-ALL.xml - + update_3/release/13.5.4-13.5.7-windows-i686-ALL.xml - + update_3/release/13.5.4-13.5.7-windows-x86_64-ALL.xml - − update_3/release/13.5.5-13.5.6-linux-i686-ALL.xml - − update_3/release/13.5.5-13.5.6-linux-x86_64-ALL.xml - − update_3/release/13.5.5-13.5.6-macos-ALL.xml - − update_3/release/13.5.5-13.5.6-windows-i686-ALL.xml - − update_3/release/13.5.5-13.5.6-windows-x86_64-ALL.xml - + update_3/release/13.5.5-13.5.7-linux-i686-ALL.xml - + update_3/release/13.5.5-13.5.7-linux-x86_64-ALL.xml - + update_3/release/13.5.5-13.5.7-macos-ALL.xml - + update_3/release/13.5.5-13.5.7-windows-i686-ALL.xml - + update_3/release/13.5.5-13.5.7-windows-x86_64-ALL.xml - + update_3/release/13.5.6-13.5.7-linux-i686-ALL.xml - + update_3/release/13.5.6-13.5.7-linux-x86_64-ALL.xml - + update_3/release/13.5.6-13.5.7-macos-ALL.xml - + update_3/release/13.5.6-13.5.7-windows-i686-ALL.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
  • ← Newer
  • 1
  • ...
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • ...
  • 1860
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.