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

October 2024

  • 1 participants
  • 290 discussions
[Git][tpo/applications/tor-browser] Pushed new tag tor-browser-115.16.0esr-13.5-1-build3
by ma1 (@ma1) 08 Oct '24

08 Oct '24
ma1 pushed new tag tor-browser-115.16.0esr-13.5-1-build3 at The Tor Project / Applications / Tor Browser -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/tree/tor-brows… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-115.16.0esr-13.5-1] Bug 1923344. a=diannaS
by ma1 (@ma1) 08 Oct '24

08 Oct '24
ma1 pushed to branch tor-browser-115.16.0esr-13.5-1 at The Tor Project / Applications / Tor Browser Commits: e9a98dae by Emilio Cobos Álvarez at 2024-10-08T20:36:09+02:00 Bug 1923344. a=diannaS Original Revision: https://phabricator.services.mozilla.com/D224958 Differential Revision: https://phabricator.services.mozilla.com/D224963 - - - - - 2 changed files: - dom/animation/AnimationTimeline.cpp - dom/animation/ScrollTimelineAnimationTracker.cpp Changes: ==============================… [View More]======= dom/animation/AnimationTimeline.cpp ===================================== @@ -41,41 +41,33 @@ AnimationTimeline::~AnimationTimeline() { mAnimationOrder.clear(); } bool AnimationTimeline::Tick() { bool needsTicks = false; - nsTArray<Animation*> animationsToRemove; - - for (Animation* animation = mAnimationOrder.getFirst(); animation; - animation = - static_cast<LinkedListElement<Animation>*>(animation)->getNext()) { + AutoTArray<RefPtr<Animation>, 32> animationsToTick; + for (Animation* animation : mAnimationOrder) { MOZ_ASSERT(mAnimations.Contains(animation), "The sampling order list should be a subset of the hashset"); MOZ_ASSERT(!animation->IsHiddenByContentVisibility(), "The sampling order list should not contain any animations " "that are hidden by content-visibility"); + animationsToTick.AppendElement(animation); + } + for (Animation* animation : animationsToTick) { // Skip any animations that are longer need associated with this timeline. if (animation->GetTimeline() != this) { - // If animation has some other timeline, it better not be also in the - // animation list of this timeline object! - MOZ_ASSERT(!animation->GetTimeline()); - animationsToRemove.AppendElement(animation); + RemoveAnimation(animation); continue; } needsTicks |= animation->NeedsTicks(); - // Even if |animation| doesn't need future ticks, we should still - // Tick it this time around since it might just need a one-off tick in - // order to dispatch events. + // Even if |animation| doesn't need future ticks, we should still Tick it + // this time around since it might just need a one-off tick in order to + // dispatch events. animation->Tick(); - if (!animation->NeedsTicks()) { - animationsToRemove.AppendElement(animation); + RemoveAnimation(animation); } } - for (Animation* animation : animationsToRemove) { - RemoveAnimation(animation); - } - return needsTicks; } @@ -91,11 +83,12 @@ void AnimationTimeline::NotifyAnimationUpdated(Animation& aAnimation) { } void AnimationTimeline::RemoveAnimation(Animation* aAnimation) { - MOZ_ASSERT(!aAnimation->GetTimeline() || aAnimation->GetTimeline() == this); - if (static_cast<LinkedListElement<Animation>*>(aAnimation)->isInList()) { + if (static_cast<LinkedListElement<Animation>*>(aAnimation)->isInList() && + MOZ_LIKELY(!aAnimation->GetTimeline() || + aAnimation->GetTimeline() == this)) { + static_cast<LinkedListElement<Animation>*>(aAnimation)->remove(); MOZ_ASSERT(mAnimations.Contains(aAnimation), "The sampling order list should be a subset of the hashset"); - static_cast<LinkedListElement<Animation>*>(aAnimation)->remove(); } mAnimations.Remove(aAnimation); } ===================================== dom/animation/ScrollTimelineAnimationTracker.cpp ===================================== @@ -13,13 +13,10 @@ namespace mozilla { NS_IMPL_CYCLE_COLLECTION(ScrollTimelineAnimationTracker, mPendingSet, mDocument) void ScrollTimelineAnimationTracker::TriggerPendingAnimations() { - for (auto iter = mPendingSet.begin(), end = mPendingSet.end(); iter != end; - ++iter) { - dom::Animation* animation = *iter; - + for (RefPtr<dom::Animation>& animation : + ToTArray<AutoTArray<RefPtr<dom::Animation>, 32>>(mPendingSet)) { MOZ_ASSERT(animation->GetTimeline() && !animation->GetTimeline()->IsMonotonicallyIncreasing()); - // FIXME: Trigger now may not be correct because the spec says: // If a user agent determines that animation is immediately ready, it may // schedule the task (i.e. ResumeAt()) as a microtask such that it runs at @@ -39,9 +36,7 @@ void ScrollTimelineAnimationTracker::TriggerPendingAnimations() { // inactive, and this also matches the current spec definition. continue; } - - // Note: Remove() is legitimately called once per entry during the loop. - mPendingSet.Remove(iter); + mPendingSet.Remove(animation); } } View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/e9a98da… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/e9a98da… You're receiving this email because of your account on gitlab.torproject.org. [View Less]
1 0
0 0
[Git][tpo/applications/tor-browser-build][main] Bug 41260: Don't set legacy version for Mullvad Browser
by morgan (@morgan) 08 Oct '24

08 Oct '24
morgan pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: b585a1a9 by Nicolas Vigier at 2024-10-07T23:48:35+02:00 Bug 41260: Don&#39;t set legacy version for Mullvad Browser First part was done in f27b37421deb3dd27fb76ee40cfb6ec77c9012a2. But this part was missed. - - - - - 1 changed file: - projects/release/update_responses_config.yml Changes: ===================================== projects/release/update_responses_config.yml ======================… [View More]=============== @@ -29,7 +29,7 @@ build_targets: channels: [% c('var/channel') %]: - [% c("var/torbrowser_version") %] -[% IF c("var/torbrowser_legacy_version") -%] +[% IF c("var/tor-browser") && c("var/torbrowser_legacy_version") -%] - [% c("var/torbrowser_legacy_version") %] [% END -%] versions: View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/b… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/b… You're receiving this email because of your account on gitlab.torproject.org. [View Less]
1 0
0 0
[Git][tpo/applications/mullvad-browser][mullvad-browser-128.3.0esr-14.0-1] fixup! MB 38: Mullvad Browser configuration
by Pier Angelo Vendrame (@pierov) 08 Oct '24

08 Oct '24
Pier Angelo Vendrame pushed to branch mullvad-browser-128.3.0esr-14.0-1 at The Tor Project / Applications / Mullvad Browser Commits: 03a35fcd by Pier Angelo Vendrame at 2024-10-08T12:23:46+02:00 fixup! MB 38: Mullvad Browser configuration Bug 42356: Preference review for Firefox ESR128. Remove privacy.webrtc.legacyGlobalIndicator, as it is not supported by Firefox anymore. - - - - - 1 changed file: - browser/app/profile/000-mullvad-browser.js Changes: =================================… [View More]==== browser/app/profile/000-mullvad-browser.js ===================================== @@ -18,11 +18,6 @@ pref("doh-rollout.disable-heuristics", true); // mullvad-browser#37: Customization for the about dialog pref("app.releaseNotesURL.aboutDialog", "about:blank"); -// mullvad-browser#94: Disable legacy global microphone/webcam indicator -// Disable the legacy Firefox Quantum-styled global webcam/microphone indicator in favor of each -// platform's native indicator -pref("privacy.webrtc.legacyGlobalIndicator", false); - // mullvad-browser#87: Windows and Linux need additional work to make the // default browser choice working. // We are shipping only the portable versions for the initial release anyway, so View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/03a… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/03a… You're receiving this email because of your account on gitlab.torproject.org. [View Less]
1 0
0 0
[Git][tpo/applications/mullvad-browser-update-responses][main] alpha: new version, 14.0a8
by boklm (@boklm) 08 Oct '24

08 Oct '24
boklm pushed to branch main at The Tor Project / Applications / mullvad-browser-update-responses Commits: 42ef87a3 by Nicolas Vigier at 2024-10-08T09:51:31+02:00 alpha: new version, 14.0a8 Done with tor-browser-build!1057. - - - - - 29 changed files: - update_1/alpha/.htaccess - − update_1/alpha/14.0a4-14.0a7-linux-x86_64-ALL.xml - − update_1/alpha/14.0a4-14.0a7-macos-ALL.xml - − update_1/alpha/14.0a4-14.0a7-windows-x86_64-ALL.xml - − update_1/alpha/14.0a5-14.0a7-linux-x86_64-ALL.xml - − … [View More]update_1/alpha/14.0a5-14.0a7-macos-ALL.xml - − update_1/alpha/14.0a5-14.0a7-windows-x86_64-ALL.xml - + 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.0a7-linux-x86_64-ALL.xml - − update_1/alpha/14.0a6-14.0a7-macos-ALL.xml - − update_1/alpha/14.0a6-14.0a7-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.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-linux-x86_64-ALL.xml - − update_1/alpha/14.0a7-macos-ALL.xml - − update_1/alpha/14.0a7-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/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.0a7/ no-update.xml [last] -RewriteRule ^Linux_x86_64-gcc3/14.0a4/ALL 14.0a4-14.0a7-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/14.0a5/ALL 14.0a5-14.0a7-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/14.0a6/ALL 14.0a6-14.0a7-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 14.0a7-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/ 14.0a7-linux-x86_64-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/14.0a4/ALL 14.0a4-14.0a7-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/14.0a5/ALL 14.0a5-14.0a7-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/14.0a6/ALL 14.0a6-14.0a7-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 14.0a7-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/ 14.0a7-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/14.0a4/ALL 14.0a4-14.0a7-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/14.0a5/ALL 14.0a5-14.0a7-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/14.0a6/ALL 14.0a6-14.0a7-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 14.0a7-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/ 14.0a7-macos-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a4/ALL 14.0a4-14.0a7-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a5/ALL 14.0a5-14.0a7-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a6/ALL 14.0a6-14.0a7-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 14.0a7-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/ 14.0a7-windows-x86_64-ALL.xml [last] +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] ===================================== update_1/alpha/14.0a4-14.0a7-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7_…" hashFunction="SHA512" hashValue="5e24cd984455df47644007d7f8a46327edf70af4d8f7c551723d90774a7c420d744bbd2d454431ff914a02aa0235daac2091a6b1d8f97e835658dc262080c9c6" size="113987869" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64--14.0a4…" hashFunction="SHA512" hashValue="3fdd50f5537a528acd621f1150fd6c4680fcb0992614c0e1df8d838feb9060582f2ec1c2ac219552c45757d7bd7ab6bc34d2f28b438630b7715cd327127fbcf4" size="7001267" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a4-14.0a7-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7_ALL.mar" hashFunction="SHA512" hashValue="d6fccf821566ed85c7937bc689f314cc6cfbcbaa12ec0c160982682df40376ca5037b6bb042d49131eabc7f989f90286ba12cd00f44b9971618d3fa3c0dc2b6c" size="129029378" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos--14.0a4-14.0a7…" hashFunction="SHA512" hashValue="e5e387581a008386320d64a8b55943e519a3e164c8117be5e109de32785d19a8278dadd6ec1a21c421ed77f79075f821dea17548e0d0bee5750935af57fe788d" size="12008441" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a4-14.0a7-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="7c151dfcd7be3a8e5ad43a4ff3402a1bfcc7813ace5f4ee735e0d20c0e491b7ad2c1c7580c67db02ff049f71ab71ed26adb67233fcc25e8131086d3280e57923" size="95008024" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="5e5b5965a268a50b83521a6a88e627a72a72ade2c47b19763a8c312474e47a79f052c10192340c7a646e8066b0caee2f06dee95cf0dba25feabce60d2f709bbe" size="7472142" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a5-14.0a7-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7_…" hashFunction="SHA512" hashValue="5e24cd984455df47644007d7f8a46327edf70af4d8f7c551723d90774a7c420d744bbd2d454431ff914a02aa0235daac2091a6b1d8f97e835658dc262080c9c6" size="113987869" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64--14.0a5…" hashFunction="SHA512" hashValue="7950fbaa6f2e2558468c22d9b058de4a45ec7b11643911f33c1043a2a1c628865c157ad140bb358359cafc3fc3c6cec51a7543cfd389ef8d19dd59bf4e3a0219" size="6865471" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a5-14.0a7-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7_ALL.mar" hashFunction="SHA512" hashValue="d6fccf821566ed85c7937bc689f314cc6cfbcbaa12ec0c160982682df40376ca5037b6bb042d49131eabc7f989f90286ba12cd00f44b9971618d3fa3c0dc2b6c" size="129029378" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos--14.0a5-14.0a7…" hashFunction="SHA512" hashValue="9cab93fc5292d65acf454414cfe56325f0bf1531a60b7b61a33cde6a2ad1a51adf630b71b3a0c4cd213c5ecf215511a211e4ba3ecd8be5e9952064e68550c46f" size="11855125" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a5-14.0a7-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="7c151dfcd7be3a8e5ad43a4ff3402a1bfcc7813ace5f4ee735e0d20c0e491b7ad2c1c7580c67db02ff049f71ab71ed26adb67233fcc25e8131086d3280e57923" size="95008024" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="47b7a57ca5b7b1eb77f39718d1ddc2dcfd1aa87449cee0c5933b5c3cfabd74bb034f0b277196bc1baba24661d19c618fefed62459cf1d48ef7b3c18e3486a9e5" size="7329762" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a5-14.0a8-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?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 ===================================== @@ -0,0 +1,2 @@ +<?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 ===================================== @@ -0,0 +1,2 @@ +<?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.0a7-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7_…" hashFunction="SHA512" hashValue="5e24cd984455df47644007d7f8a46327edf70af4d8f7c551723d90774a7c420d744bbd2d454431ff914a02aa0235daac2091a6b1d8f97e835658dc262080c9c6" size="113987869" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64--14.0a6…" hashFunction="SHA512" hashValue="74f4065215a7825ca7fadba68db150bedadcb9527333bde5eaec2508a74bab57ec48335a73f144ce9bb1a8a33105b73ac0691480390ef9984f9591b7fa79fb40" size="6838327" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a6-14.0a7-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7_ALL.mar" hashFunction="SHA512" hashValue="d6fccf821566ed85c7937bc689f314cc6cfbcbaa12ec0c160982682df40376ca5037b6bb042d49131eabc7f989f90286ba12cd00f44b9971618d3fa3c0dc2b6c" size="129029378" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos--14.0a6-14.0a7…" hashFunction="SHA512" hashValue="c3c199a7f54bd103194aaabafd7b10ce17873c6b491a8b77edb3a4d75e8853c626958d54dd2f735ddbd388c7750d202153650e35fb65db1c756141897a53aa31" size="11712465" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a6-14.0a7-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="7c151dfcd7be3a8e5ad43a4ff3402a1bfcc7813ace5f4ee735e0d20c0e491b7ad2c1c7580c67db02ff049f71ab71ed26adb67233fcc25e8131086d3280e57923" size="95008024" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="16ee78b84b979dc7071812e059443beb1216b322ccd2c17e6ecfd47a9b1e40eaf24d5d3bd82dd3eb223c4f991f8d3e3bcc05696c27229f7db451377215ff2b78" size="7154414" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a6-14.0a8-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?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 ===================================== @@ -0,0 +1,2 @@ +<?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 ===================================== @@ -0,0 +1,2 @@ +<?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.0a7-14.0a8-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?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 ===================================== @@ -0,0 +1,2 @@ +<?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 ===================================== @@ -0,0 +1,2 @@ +<?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-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7_…" hashFunction="SHA512" hashValue="5e24cd984455df47644007d7f8a46327edf70af4d8f7c551723d90774a7c420d744bbd2d454431ff914a02aa0235daac2091a6b1d8f97e835658dc262080c9c6" size="113987869" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a7-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7_ALL.mar" hashFunction="SHA512" hashValue="d6fccf821566ed85c7937bc689f314cc6cfbcbaa12ec0c160982682df40376ca5037b6bb042d49131eabc7f989f90286ba12cd00f44b9971618d3fa3c0dc2b6c" size="129029378" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a7-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="7c151dfcd7be3a8e5ad43a4ff3402a1bfcc7813ace5f4ee735e0d20c0e491b7ad2c1c7580c67db02ff049f71ab71ed26adb67233fcc25e8131086d3280e57923" size="95008024" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a8-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?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 ===================================== @@ -0,0 +1,2 @@ +<?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 ===================================== @@ -0,0 +1,2 @@ +<?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/download-linux-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7.…","git_tag":"mb-14.0a7-build1","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7.…","version":"14.0a7"} \ No newline at end of file +{"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 ===================================== update_1/alpha/download-macos.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7.dmg","git_tag":"mb-14.0a7-build1","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7.dmg.asc","version":"14.0a7"} \ No newline at end of file +{"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 ===================================== update_1/alpha/download-windows-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…","git_tag":"mb-14.0a7-build1","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…","version":"14.0a7"} \ No newline at end of file +{"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 ===================================== update_1/alpha/downloads.json ===================================== @@ -1 +1 @@ -{"downloads":{"linux-x86_64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7.…","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7.…"}},"macos":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7.dmg","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7.dmg.asc"}},"win64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…"}}},"tag":"mb-14.0a7-build1","version":"14.0a7"} \ No newline at end of file +{"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 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. [View Less]
1 0
0 0
[Git][tpo/applications/mullvad-browser][mullvad-browser-128.3.0esr-14.0-1] fixup! Firefox preference overrides.
by ma1 (@ma1) 08 Oct '24

08 Oct '24
ma1 pushed to branch mullvad-browser-128.3.0esr-14.0-1 at The Tor Project / Applications / Mullvad Browser Commits: 93669b13 by hackademix at 2024-10-08T09:06:43+02:00 fixup! Firefox preference overrides. Bug 43197: Disable automatic exception for HTTPS-First. - - - - - 1 changed file: - browser/app/profile/001-base-profile.js Changes: ===================================== browser/app/profile/001-base-profile.js ===================================== @@ -120,6 +120,8 @@ pref("dom.… [View More]security.https_only_mode", true); // The previous pref automatically sets this to true (see StaticPrefList.yaml), // but set it anyway only as a defense-in-depth. pref("dom.security.https_only_mode_pbm", true); +// tor-browser#43197, defense in depth if ever https-only got disabled +pref("dom.security.https_first_add_exception_on_failiure", false); // tor-browser#22320: Hide referer when comming from a .onion address // We enable this here (rather than in Tor Browser) in case users of other View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/936… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/936… You're receiving this email because of your account on gitlab.torproject.org. [View Less]
1 0
0 0
[Git][tpo/applications/tor-browser][base-browser-128.3.0esr-14.0-1] fixup! Firefox preference overrides.
by ma1 (@ma1) 08 Oct '24

08 Oct '24
ma1 pushed to branch base-browser-128.3.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: 905e6a95 by hackademix at 2024-10-08T09:06:30+02:00 fixup! Firefox preference overrides. Bug 43197: Disable automatic exception for HTTPS-First. - - - - - 1 changed file: - browser/app/profile/001-base-profile.js Changes: ===================================== browser/app/profile/001-base-profile.js ===================================== @@ -120,6 +120,8 @@ pref("dom.security.… [View More]https_only_mode", true); // The previous pref automatically sets this to true (see StaticPrefList.yaml), // but set it anyway only as a defense-in-depth. pref("dom.security.https_only_mode_pbm", true); +// tor-browser#43197, defense in depth if ever https-only got disabled +pref("dom.security.https_first_add_exception_on_failiure", false); // tor-browser#22320: Hide referer when comming from a .onion address // We enable this here (rather than in Tor Browser) in case users of other View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/905e6a9… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/905e6a9… You're receiving this email because of your account on gitlab.torproject.org. [View Less]
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-128.3.0esr-14.0-1] fixup! Firefox preference overrides.
by ma1 (@ma1) 08 Oct '24

08 Oct '24
ma1 pushed to branch tor-browser-128.3.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: b0b0ccd9 by hackademix at 2024-10-07T23:25:50+02:00 fixup! Firefox preference overrides. Bug 43197: Disable automatic exception for HTTPS-First. - - - - - 1 changed file: - browser/app/profile/001-base-profile.js Changes: ===================================== browser/app/profile/001-base-profile.js ===================================== @@ -120,6 +120,8 @@ pref("dom.security.… [View More]https_only_mode", true); // The previous pref automatically sets this to true (see StaticPrefList.yaml), // but set it anyway only as a defense-in-depth. pref("dom.security.https_only_mode_pbm", true); +// tor-browser#43197, defense in depth if ever https-only got disabled +pref("dom.security.https_first_add_exception_on_failiure", false); // tor-browser#22320: Hide referer when comming from a .onion address // We enable this here (rather than in Tor Browser) in case users of other View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/b0b0ccd… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/b0b0ccd… You're receiving this email because of your account on gitlab.torproject.org. [View Less]
1 0
0 0
[Git][tpo/applications/mullvad-browser-update-responses][main] Revert "alpha: new version, 14.0a8"
by morgan (@morgan) 07 Oct '24

07 Oct '24
morgan pushed to branch main at The Tor Project / Applications / mullvad-browser-update-responses Commits: f655217d by Morgan at 2024-10-07T21:14:41+00:00 Revert &quot;alpha: new version, 14.0a8&quot; This reverts commit 86995f86aaf2bcd4edff5c6e2cbd34cf5d4faa49. - - - - - 29 changed files: - update_1/alpha/.htaccess - + update_1/alpha/14.0a4-14.0a7-linux-x86_64-ALL.xml - + update_1/alpha/14.0a4-14.0a7-macos-ALL.xml - + update_1/alpha/14.0a4-14.0a7-windows-x86_64-ALL.xml - + … [View More]update_1/alpha/14.0a5-14.0a7-linux-x86_64-ALL.xml - + update_1/alpha/14.0a5-14.0a7-macos-ALL.xml - + update_1/alpha/14.0a5-14.0a7-windows-x86_64-ALL.xml - − update_1/alpha/14.0a5-14.0a8+13.5a11-linux-x86_64-ALL.xml - − update_1/alpha/14.0a5-14.0a8+13.5a11-macos-ALL.xml - − update_1/alpha/14.0a5-14.0a8+13.5a11-windows-x86_64-ALL.xml - + update_1/alpha/14.0a6-14.0a7-linux-x86_64-ALL.xml - + update_1/alpha/14.0a6-14.0a7-macos-ALL.xml - + update_1/alpha/14.0a6-14.0a7-windows-x86_64-ALL.xml - − update_1/alpha/14.0a6-14.0a8+13.5a11-linux-x86_64-ALL.xml - − update_1/alpha/14.0a6-14.0a8+13.5a11-macos-ALL.xml - − update_1/alpha/14.0a6-14.0a8+13.5a11-windows-x86_64-ALL.xml - − update_1/alpha/14.0a7-14.0a8+13.5a11-linux-x86_64-ALL.xml - − update_1/alpha/14.0a7-14.0a8+13.5a11-macos-ALL.xml - − update_1/alpha/14.0a7-14.0a8+13.5a11-windows-x86_64-ALL.xml - + update_1/alpha/14.0a7-linux-x86_64-ALL.xml - + update_1/alpha/14.0a7-macos-ALL.xml - + update_1/alpha/14.0a7-windows-x86_64-ALL.xml - − update_1/alpha/14.0a8+13.5a11-linux-x86_64-ALL.xml - − update_1/alpha/14.0a8+13.5a11-macos-ALL.xml - − update_1/alpha/14.0a8+13.5a11-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+13.5a11-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/14.0a6/ALL 14.0a6-14.0a8+13.5a11-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/14.0a7/ALL 14.0a7-14.0a8+13.5a11-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 14.0a8+13.5a11-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/ 14.0a8+13.5a11-linux-x86_64-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/14.0a5/ALL 14.0a5-14.0a8+13.5a11-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/14.0a6/ALL 14.0a6-14.0a8+13.5a11-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/14.0a7/ALL 14.0a7-14.0a8+13.5a11-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 14.0a8+13.5a11-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/ 14.0a8+13.5a11-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/14.0a5/ALL 14.0a5-14.0a8+13.5a11-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/14.0a6/ALL 14.0a6-14.0a8+13.5a11-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/14.0a7/ALL 14.0a7-14.0a8+13.5a11-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 14.0a8+13.5a11-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/ 14.0a8+13.5a11-macos-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a5/ALL 14.0a5-14.0a8+13.5a11-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a6/ALL 14.0a6-14.0a8+13.5a11-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a7/ALL 14.0a7-14.0a8+13.5a11-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 14.0a8+13.5a11-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/ 14.0a8+13.5a11-windows-x86_64-ALL.xml [last] +RewriteRule ^[^/]+/14.0a7/ no-update.xml [last] +RewriteRule ^Linux_x86_64-gcc3/14.0a4/ALL 14.0a4-14.0a7-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/14.0a5/ALL 14.0a5-14.0a7-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/14.0a6/ALL 14.0a6-14.0a7-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 14.0a7-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/ 14.0a7-linux-x86_64-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/14.0a4/ALL 14.0a4-14.0a7-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/14.0a5/ALL 14.0a5-14.0a7-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/14.0a6/ALL 14.0a6-14.0a7-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 14.0a7-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/ 14.0a7-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/14.0a4/ALL 14.0a4-14.0a7-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/14.0a5/ALL 14.0a5-14.0a7-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/14.0a6/ALL 14.0a6-14.0a7-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 14.0a7-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/ 14.0a7-macos-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a4/ALL 14.0a4-14.0a7-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a5/ALL 14.0a5-14.0a7-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a6/ALL 14.0a6-14.0a7-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 14.0a7-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/ 14.0a7-windows-x86_64-ALL.xml [last] ===================================== update_1/alpha/14.0a4-14.0a7-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7_…" hashFunction="SHA512" hashValue="5e24cd984455df47644007d7f8a46327edf70af4d8f7c551723d90774a7c420d744bbd2d454431ff914a02aa0235daac2091a6b1d8f97e835658dc262080c9c6" size="113987869" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64--14.0a4…" hashFunction="SHA512" hashValue="3fdd50f5537a528acd621f1150fd6c4680fcb0992614c0e1df8d838feb9060582f2ec1c2ac219552c45757d7bd7ab6bc34d2f28b438630b7715cd327127fbcf4" size="7001267" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a4-14.0a7-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7_ALL.mar" hashFunction="SHA512" hashValue="d6fccf821566ed85c7937bc689f314cc6cfbcbaa12ec0c160982682df40376ca5037b6bb042d49131eabc7f989f90286ba12cd00f44b9971618d3fa3c0dc2b6c" size="129029378" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos--14.0a4-14.0a7…" hashFunction="SHA512" hashValue="e5e387581a008386320d64a8b55943e519a3e164c8117be5e109de32785d19a8278dadd6ec1a21c421ed77f79075f821dea17548e0d0bee5750935af57fe788d" size="12008441" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a4-14.0a7-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="7c151dfcd7be3a8e5ad43a4ff3402a1bfcc7813ace5f4ee735e0d20c0e491b7ad2c1c7580c67db02ff049f71ab71ed26adb67233fcc25e8131086d3280e57923" size="95008024" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="5e5b5965a268a50b83521a6a88e627a72a72ade2c47b19763a8c312474e47a79f052c10192340c7a646e8066b0caee2f06dee95cf0dba25feabce60d2f709bbe" size="7472142" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a5-14.0a7-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7_…" hashFunction="SHA512" hashValue="5e24cd984455df47644007d7f8a46327edf70af4d8f7c551723d90774a7c420d744bbd2d454431ff914a02aa0235daac2091a6b1d8f97e835658dc262080c9c6" size="113987869" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64--14.0a5…" hashFunction="SHA512" hashValue="7950fbaa6f2e2558468c22d9b058de4a45ec7b11643911f33c1043a2a1c628865c157ad140bb358359cafc3fc3c6cec51a7543cfd389ef8d19dd59bf4e3a0219" size="6865471" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a5-14.0a7-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7_ALL.mar" hashFunction="SHA512" hashValue="d6fccf821566ed85c7937bc689f314cc6cfbcbaa12ec0c160982682df40376ca5037b6bb042d49131eabc7f989f90286ba12cd00f44b9971618d3fa3c0dc2b6c" size="129029378" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos--14.0a5-14.0a7…" hashFunction="SHA512" hashValue="9cab93fc5292d65acf454414cfe56325f0bf1531a60b7b61a33cde6a2ad1a51adf630b71b3a0c4cd213c5ecf215511a211e4ba3ecd8be5e9952064e68550c46f" size="11855125" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a5-14.0a7-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="7c151dfcd7be3a8e5ad43a4ff3402a1bfcc7813ace5f4ee735e0d20c0e491b7ad2c1c7580c67db02ff049f71ab71ed26adb67233fcc25e8131086d3280e57923" size="95008024" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="47b7a57ca5b7b1eb77f39718d1ddc2dcfd1aa87449cee0c5933b5c3cfabd74bb034f0b277196bc1baba24661d19c618fefed62459cf1d48ef7b3c18e3486a9e5" size="7329762" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a5-14.0a8+13.5a11-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+13.5a11-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+13.5a11-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.0a7-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7_…" hashFunction="SHA512" hashValue="5e24cd984455df47644007d7f8a46327edf70af4d8f7c551723d90774a7c420d744bbd2d454431ff914a02aa0235daac2091a6b1d8f97e835658dc262080c9c6" size="113987869" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64--14.0a6…" hashFunction="SHA512" hashValue="74f4065215a7825ca7fadba68db150bedadcb9527333bde5eaec2508a74bab57ec48335a73f144ce9bb1a8a33105b73ac0691480390ef9984f9591b7fa79fb40" size="6838327" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a6-14.0a7-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7_ALL.mar" hashFunction="SHA512" hashValue="d6fccf821566ed85c7937bc689f314cc6cfbcbaa12ec0c160982682df40376ca5037b6bb042d49131eabc7f989f90286ba12cd00f44b9971618d3fa3c0dc2b6c" size="129029378" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos--14.0a6-14.0a7…" hashFunction="SHA512" hashValue="c3c199a7f54bd103194aaabafd7b10ce17873c6b491a8b77edb3a4d75e8853c626958d54dd2f735ddbd388c7750d202153650e35fb65db1c756141897a53aa31" size="11712465" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a6-14.0a7-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="7c151dfcd7be3a8e5ad43a4ff3402a1bfcc7813ace5f4ee735e0d20c0e491b7ad2c1c7580c67db02ff049f71ab71ed26adb67233fcc25e8131086d3280e57923" size="95008024" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="16ee78b84b979dc7071812e059443beb1216b322ccd2c17e6ecfd47a9b1e40eaf24d5d3bd82dd3eb223c4f991f8d3e3bcc05696c27229f7db451377215ff2b78" size="7154414" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a6-14.0a8+13.5a11-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+13.5a11-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+13.5a11-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.0a7-14.0a8+13.5a11-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+13.5a11-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+13.5a11-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-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7_…" hashFunction="SHA512" hashValue="5e24cd984455df47644007d7f8a46327edf70af4d8f7c551723d90774a7c420d744bbd2d454431ff914a02aa0235daac2091a6b1d8f97e835658dc262080c9c6" size="113987869" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a7-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7_ALL.mar" hashFunction="SHA512" hashValue="d6fccf821566ed85c7937bc689f314cc6cfbcbaa12ec0c160982682df40376ca5037b6bb042d49131eabc7f989f90286ba12cd00f44b9971618d3fa3c0dc2b6c" size="129029378" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a7-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="7c151dfcd7be3a8e5ad43a4ff3402a1bfcc7813ace5f4ee735e0d20c0e491b7ad2c1c7580c67db02ff049f71ab71ed26adb67233fcc25e8131086d3280e57923" size="95008024" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a8+13.5a11-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+13.5a11-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+13.5a11-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/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.0a7/mullvad-browser-linux-x86_64-14.0a7.…","git_tag":"mb-14.0a7-build1","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7.…","version":"14.0a7"} \ 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.0a7/mullvad-browser-macos-14.0a7.dmg","git_tag":"mb-14.0a7-build1","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7.dmg.asc","version":"14.0a7"} \ 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.0a7/mullvad-browser-windows-x86_64-14.0a…","git_tag":"mb-14.0a7-build1","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…","version":"14.0a7"} \ 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.0a7/mullvad-browser-linux-x86_64-14.0a7.…","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7.…"}},"macos":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7.dmg","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7.dmg.asc"}},"win64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…"}}},"tag":"mb-14.0a7-build1","version":"14.0a7"} \ 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. [View Less]
1 0
0 0
[Git][tpo/applications/mullvad-browser-update-responses][main] alpha: new version, 14.0a8
by morgan (@morgan) 07 Oct '24

07 Oct '24
morgan pushed to branch main at The Tor Project / Applications / mullvad-browser-update-responses Commits: 86995f86 by Morgan at 2024-10-07T21:05:58+00:00 alpha: new version, 14.0a8 - - - - - 29 changed files: - update_1/alpha/.htaccess - − update_1/alpha/14.0a4-14.0a7-linux-x86_64-ALL.xml - − update_1/alpha/14.0a4-14.0a7-macos-ALL.xml - − update_1/alpha/14.0a4-14.0a7-windows-x86_64-ALL.xml - − update_1/alpha/14.0a5-14.0a7-linux-x86_64-ALL.xml - − update_1/alpha/14.0a5-14.0a7-macos-ALL.… [View More]xml - − update_1/alpha/14.0a5-14.0a7-windows-x86_64-ALL.xml - + update_1/alpha/14.0a5-14.0a8+13.5a11-linux-x86_64-ALL.xml - + update_1/alpha/14.0a5-14.0a8+13.5a11-macos-ALL.xml - + update_1/alpha/14.0a5-14.0a8+13.5a11-windows-x86_64-ALL.xml - − update_1/alpha/14.0a6-14.0a7-linux-x86_64-ALL.xml - − update_1/alpha/14.0a6-14.0a7-macos-ALL.xml - − update_1/alpha/14.0a6-14.0a7-windows-x86_64-ALL.xml - + update_1/alpha/14.0a6-14.0a8+13.5a11-linux-x86_64-ALL.xml - + update_1/alpha/14.0a6-14.0a8+13.5a11-macos-ALL.xml - + update_1/alpha/14.0a6-14.0a8+13.5a11-windows-x86_64-ALL.xml - + update_1/alpha/14.0a7-14.0a8+13.5a11-linux-x86_64-ALL.xml - + update_1/alpha/14.0a7-14.0a8+13.5a11-macos-ALL.xml - + update_1/alpha/14.0a7-14.0a8+13.5a11-windows-x86_64-ALL.xml - − update_1/alpha/14.0a7-linux-x86_64-ALL.xml - − update_1/alpha/14.0a7-macos-ALL.xml - − update_1/alpha/14.0a7-windows-x86_64-ALL.xml - + update_1/alpha/14.0a8+13.5a11-linux-x86_64-ALL.xml - + update_1/alpha/14.0a8+13.5a11-macos-ALL.xml - + update_1/alpha/14.0a8+13.5a11-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.0a7/ no-update.xml [last] -RewriteRule ^Linux_x86_64-gcc3/14.0a4/ALL 14.0a4-14.0a7-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/14.0a5/ALL 14.0a5-14.0a7-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/14.0a6/ALL 14.0a6-14.0a7-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 14.0a7-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/ 14.0a7-linux-x86_64-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/14.0a4/ALL 14.0a4-14.0a7-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/14.0a5/ALL 14.0a5-14.0a7-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/14.0a6/ALL 14.0a6-14.0a7-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 14.0a7-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/ 14.0a7-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/14.0a4/ALL 14.0a4-14.0a7-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/14.0a5/ALL 14.0a5-14.0a7-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/14.0a6/ALL 14.0a6-14.0a7-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 14.0a7-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/ 14.0a7-macos-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a4/ALL 14.0a4-14.0a7-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a5/ALL 14.0a5-14.0a7-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a6/ALL 14.0a6-14.0a7-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 14.0a7-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/ 14.0a7-windows-x86_64-ALL.xml [last] +RewriteRule ^[^/]+/14.0a8/ no-update.xml [last] +RewriteRule ^Linux_x86_64-gcc3/14.0a5/ALL 14.0a5-14.0a8+13.5a11-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/14.0a6/ALL 14.0a6-14.0a8+13.5a11-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/14.0a7/ALL 14.0a7-14.0a8+13.5a11-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 14.0a8+13.5a11-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/ 14.0a8+13.5a11-linux-x86_64-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/14.0a5/ALL 14.0a5-14.0a8+13.5a11-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/14.0a6/ALL 14.0a6-14.0a8+13.5a11-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/14.0a7/ALL 14.0a7-14.0a8+13.5a11-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 14.0a8+13.5a11-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/ 14.0a8+13.5a11-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/14.0a5/ALL 14.0a5-14.0a8+13.5a11-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/14.0a6/ALL 14.0a6-14.0a8+13.5a11-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/14.0a7/ALL 14.0a7-14.0a8+13.5a11-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 14.0a8+13.5a11-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/ 14.0a8+13.5a11-macos-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a5/ALL 14.0a5-14.0a8+13.5a11-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a6/ALL 14.0a6-14.0a8+13.5a11-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a7/ALL 14.0a7-14.0a8+13.5a11-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 14.0a8+13.5a11-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/ 14.0a8+13.5a11-windows-x86_64-ALL.xml [last] ===================================== update_1/alpha/14.0a4-14.0a7-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7_…" hashFunction="SHA512" hashValue="5e24cd984455df47644007d7f8a46327edf70af4d8f7c551723d90774a7c420d744bbd2d454431ff914a02aa0235daac2091a6b1d8f97e835658dc262080c9c6" size="113987869" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64--14.0a4…" hashFunction="SHA512" hashValue="3fdd50f5537a528acd621f1150fd6c4680fcb0992614c0e1df8d838feb9060582f2ec1c2ac219552c45757d7bd7ab6bc34d2f28b438630b7715cd327127fbcf4" size="7001267" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a4-14.0a7-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7_ALL.mar" hashFunction="SHA512" hashValue="d6fccf821566ed85c7937bc689f314cc6cfbcbaa12ec0c160982682df40376ca5037b6bb042d49131eabc7f989f90286ba12cd00f44b9971618d3fa3c0dc2b6c" size="129029378" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos--14.0a4-14.0a7…" hashFunction="SHA512" hashValue="e5e387581a008386320d64a8b55943e519a3e164c8117be5e109de32785d19a8278dadd6ec1a21c421ed77f79075f821dea17548e0d0bee5750935af57fe788d" size="12008441" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a4-14.0a7-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="7c151dfcd7be3a8e5ad43a4ff3402a1bfcc7813ace5f4ee735e0d20c0e491b7ad2c1c7580c67db02ff049f71ab71ed26adb67233fcc25e8131086d3280e57923" size="95008024" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="5e5b5965a268a50b83521a6a88e627a72a72ade2c47b19763a8c312474e47a79f052c10192340c7a646e8066b0caee2f06dee95cf0dba25feabce60d2f709bbe" size="7472142" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a5-14.0a7-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7_…" hashFunction="SHA512" hashValue="5e24cd984455df47644007d7f8a46327edf70af4d8f7c551723d90774a7c420d744bbd2d454431ff914a02aa0235daac2091a6b1d8f97e835658dc262080c9c6" size="113987869" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64--14.0a5…" hashFunction="SHA512" hashValue="7950fbaa6f2e2558468c22d9b058de4a45ec7b11643911f33c1043a2a1c628865c157ad140bb358359cafc3fc3c6cec51a7543cfd389ef8d19dd59bf4e3a0219" size="6865471" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a5-14.0a7-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7_ALL.mar" hashFunction="SHA512" hashValue="d6fccf821566ed85c7937bc689f314cc6cfbcbaa12ec0c160982682df40376ca5037b6bb042d49131eabc7f989f90286ba12cd00f44b9971618d3fa3c0dc2b6c" size="129029378" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos--14.0a5-14.0a7…" hashFunction="SHA512" hashValue="9cab93fc5292d65acf454414cfe56325f0bf1531a60b7b61a33cde6a2ad1a51adf630b71b3a0c4cd213c5ecf215511a211e4ba3ecd8be5e9952064e68550c46f" size="11855125" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a5-14.0a7-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="7c151dfcd7be3a8e5ad43a4ff3402a1bfcc7813ace5f4ee735e0d20c0e491b7ad2c1c7580c67db02ff049f71ab71ed26adb67233fcc25e8131086d3280e57923" size="95008024" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="47b7a57ca5b7b1eb77f39718d1ddc2dcfd1aa87449cee0c5933b5c3cfabd74bb034f0b277196bc1baba24661d19c618fefed62459cf1d48ef7b3c18e3486a9e5" size="7329762" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a5-14.0a8+13.5a11-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?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+13.5a11-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?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+13.5a11-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?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.0a7-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7_…" hashFunction="SHA512" hashValue="5e24cd984455df47644007d7f8a46327edf70af4d8f7c551723d90774a7c420d744bbd2d454431ff914a02aa0235daac2091a6b1d8f97e835658dc262080c9c6" size="113987869" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64--14.0a6…" hashFunction="SHA512" hashValue="74f4065215a7825ca7fadba68db150bedadcb9527333bde5eaec2508a74bab57ec48335a73f144ce9bb1a8a33105b73ac0691480390ef9984f9591b7fa79fb40" size="6838327" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a6-14.0a7-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7_ALL.mar" hashFunction="SHA512" hashValue="d6fccf821566ed85c7937bc689f314cc6cfbcbaa12ec0c160982682df40376ca5037b6bb042d49131eabc7f989f90286ba12cd00f44b9971618d3fa3c0dc2b6c" size="129029378" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos--14.0a6-14.0a7…" hashFunction="SHA512" hashValue="c3c199a7f54bd103194aaabafd7b10ce17873c6b491a8b77edb3a4d75e8853c626958d54dd2f735ddbd388c7750d202153650e35fb65db1c756141897a53aa31" size="11712465" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a6-14.0a7-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="7c151dfcd7be3a8e5ad43a4ff3402a1bfcc7813ace5f4ee735e0d20c0e491b7ad2c1c7580c67db02ff049f71ab71ed26adb67233fcc25e8131086d3280e57923" size="95008024" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="16ee78b84b979dc7071812e059443beb1216b322ccd2c17e6ecfd47a9b1e40eaf24d5d3bd82dd3eb223c4f991f8d3e3bcc05696c27229f7db451377215ff2b78" size="7154414" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a6-14.0a8+13.5a11-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?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+13.5a11-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?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+13.5a11-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?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.0a7-14.0a8+13.5a11-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?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+13.5a11-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?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+13.5a11-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?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-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7_…" hashFunction="SHA512" hashValue="5e24cd984455df47644007d7f8a46327edf70af4d8f7c551723d90774a7c420d744bbd2d454431ff914a02aa0235daac2091a6b1d8f97e835658dc262080c9c6" size="113987869" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a7-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7_ALL.mar" hashFunction="SHA512" hashValue="d6fccf821566ed85c7937bc689f314cc6cfbcbaa12ec0c160982682df40376ca5037b6bb042d49131eabc7f989f90286ba12cd00f44b9971618d3fa3c0dc2b6c" size="129029378" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a7-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="7c151dfcd7be3a8e5ad43a4ff3402a1bfcc7813ace5f4ee735e0d20c0e491b7ad2c1c7580c67db02ff049f71ab71ed26adb67233fcc25e8131086d3280e57923" size="95008024" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a8+13.5a11-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?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+13.5a11-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?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+13.5a11-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?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/download-linux-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7.…","git_tag":"mb-14.0a7-build1","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7.…","version":"14.0a7"} \ No newline at end of file +{"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 ===================================== update_1/alpha/download-macos.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7.dmg","git_tag":"mb-14.0a7-build1","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7.dmg.asc","version":"14.0a7"} \ No newline at end of file +{"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 ===================================== update_1/alpha/download-windows-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…","git_tag":"mb-14.0a7-build1","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…","version":"14.0a7"} \ No newline at end of file +{"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 ===================================== update_1/alpha/downloads.json ===================================== @@ -1 +1 @@ -{"downloads":{"linux-x86_64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7.…","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7.…"}},"macos":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7.dmg","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7.dmg.asc"}},"win64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…"}}},"tag":"mb-14.0a7-build1","version":"14.0a7"} \ No newline at end of file +{"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 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. [View Less]
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • ...
  • 29
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.