lists.torproject.org
Sign In Sign Up
Manage this list Sign In Sign Up

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

tbb-commits

Thread Start a new thread
Download
Threads by month
  • ----- 2025 -----
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2022 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2021 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2020 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2019 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2018 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2017 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2016 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2015 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2014 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
tbb-commits@lists.torproject.org

  • 18606 discussions
[Git][tpo/applications/mullvad-browser] Pushed new tag mullvad-browser-128.3.0esr-14.0-1-build3
by ma1 (@ma1) 08 Oct '24

08 Oct '24
ma1 pushed new tag mullvad-browser-128.3.0esr-14.0-1-build3 at The Tor Project / Applications / Mullvad Browser -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/tree/mullv… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/mullvad-browser][mullvad-browser-128.3.0esr-14.0-1] Bug 1923344 - r=smaug, a=dsmith
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: 0375bee4 by Emilio Cobos Álvarez at 2024-10-08T22:01:35+02:00 Bug 1923344 - r=smaug, a=dsmith Differential Revision: https://phabricator.services.mozilla.com/D224958 - - - - - 4 changed files: - dom/animation/AnimationTimeline.cpp - dom/animation/DocumentTimeline.cpp - dom/animation/ScrollTimelineAnimationTracker.cpp - layout/base/nsRefreshDriver.cpp Changes: ===================================== dom/animation/AnimationTimeline.cpp ===================================== @@ -40,41 +40,33 @@ AnimationTimeline::~AnimationTimeline() { mAnimationOrder.clear(); } bool AnimationTimeline::Tick(TickState& aState) { 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 + // queue events. animation->Tick(aState); - if (!animation->NeedsTicks()) { - animationsToRemove.AppendElement(animation); + RemoveAnimation(animation); } } - for (Animation* animation : animationsToRemove) { - RemoveAnimation(animation); - } - return needsTicks; } @@ -90,11 +82,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/DocumentTimeline.cpp ===================================== @@ -160,7 +160,12 @@ void DocumentTimeline::NotifyAnimationUpdated(Animation& aAnimation) { } void DocumentTimeline::TriggerAllPendingAnimationsNow() { + AutoTArray<RefPtr<Animation>, 32> animationsToTrigger; for (Animation* animation : mAnimationOrder) { + animationsToTrigger.AppendElement(animation); + } + + for (Animation* animation : animationsToTrigger) { animation->TryTriggerNow(); } } @@ -188,9 +193,6 @@ void DocumentTimeline::WillRefresh() { // of mDocument's PresShell. if (nsRefreshDriver* refreshDriver = GetRefreshDriver()) { refreshDriver->EnsureAnimationUpdate(); - } else { - MOZ_ASSERT_UNREACHABLE( - "Refresh driver should still be valid at end of WillRefresh"); } } ===================================== 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); } } ===================================== layout/base/nsRefreshDriver.cpp ===================================== @@ -2332,8 +2332,15 @@ void nsRefreshDriver::DetermineProximityToViewportAndNotifyResizeObservers() { } static CallState UpdateAndReduceAnimations(Document& aDocument) { - for (DocumentTimeline* timeline : aDocument.Timelines()) { - timeline->WillRefresh(); + { + AutoTArray<RefPtr<DocumentTimeline>, 32> timelinesToTick; + for (DocumentTimeline* timeline : aDocument.Timelines()) { + timelinesToTick.AppendElement(timeline); + } + + for (DocumentTimeline* tl : timelinesToTick) { + tl->WillRefresh(); + } } if (nsPresContext* pc = aDocument.GetPresContext()) { @@ -2363,7 +2370,8 @@ void nsRefreshDriver::UpdateAnimationsAndSendEvents() { // [1]: // https://drafts.csswg.org/web-animations-1/#update-animations-and-send-events nsAutoMicroTask mt; - UpdateAndReduceAnimations(*mPresContext->Document()); + RefPtr doc = mPresContext->Document(); + UpdateAndReduceAnimations(*doc); } // Hold all AnimationEventDispatcher in mAnimationEventFlushObservers as View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/037… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/037… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][base-browser-128.3.0esr-14.0-1] Bug 1923344 - r=smaug, a=dsmith
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: 04a8d31e by Emilio Cobos Álvarez at 2024-10-08T22:01:24+02:00 Bug 1923344 - r=smaug, a=dsmith Differential Revision: https://phabricator.services.mozilla.com/D224958 - - - - - 4 changed files: - dom/animation/AnimationTimeline.cpp - dom/animation/DocumentTimeline.cpp - dom/animation/ScrollTimelineAnimationTracker.cpp - layout/base/nsRefreshDriver.cpp Changes: ===================================== dom/animation/AnimationTimeline.cpp ===================================== @@ -40,41 +40,33 @@ AnimationTimeline::~AnimationTimeline() { mAnimationOrder.clear(); } bool AnimationTimeline::Tick(TickState& aState) { 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 + // queue events. animation->Tick(aState); - if (!animation->NeedsTicks()) { - animationsToRemove.AppendElement(animation); + RemoveAnimation(animation); } } - for (Animation* animation : animationsToRemove) { - RemoveAnimation(animation); - } - return needsTicks; } @@ -90,11 +82,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/DocumentTimeline.cpp ===================================== @@ -160,7 +160,12 @@ void DocumentTimeline::NotifyAnimationUpdated(Animation& aAnimation) { } void DocumentTimeline::TriggerAllPendingAnimationsNow() { + AutoTArray<RefPtr<Animation>, 32> animationsToTrigger; for (Animation* animation : mAnimationOrder) { + animationsToTrigger.AppendElement(animation); + } + + for (Animation* animation : animationsToTrigger) { animation->TryTriggerNow(); } } @@ -188,9 +193,6 @@ void DocumentTimeline::WillRefresh() { // of mDocument's PresShell. if (nsRefreshDriver* refreshDriver = GetRefreshDriver()) { refreshDriver->EnsureAnimationUpdate(); - } else { - MOZ_ASSERT_UNREACHABLE( - "Refresh driver should still be valid at end of WillRefresh"); } } ===================================== 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); } } ===================================== layout/base/nsRefreshDriver.cpp ===================================== @@ -2332,8 +2332,15 @@ void nsRefreshDriver::DetermineProximityToViewportAndNotifyResizeObservers() { } static CallState UpdateAndReduceAnimations(Document& aDocument) { - for (DocumentTimeline* timeline : aDocument.Timelines()) { - timeline->WillRefresh(); + { + AutoTArray<RefPtr<DocumentTimeline>, 32> timelinesToTick; + for (DocumentTimeline* timeline : aDocument.Timelines()) { + timelinesToTick.AppendElement(timeline); + } + + for (DocumentTimeline* tl : timelinesToTick) { + tl->WillRefresh(); + } } if (nsPresContext* pc = aDocument.GetPresContext()) { @@ -2363,7 +2370,8 @@ void nsRefreshDriver::UpdateAnimationsAndSendEvents() { // [1]: // https://drafts.csswg.org/web-animations-1/#update-animations-and-send-events nsAutoMicroTask mt; - UpdateAndReduceAnimations(*mPresContext->Document()); + RefPtr doc = mPresContext->Document(); + UpdateAndReduceAnimations(*doc); } // Hold all AnimationEventDispatcher in mAnimationEventFlushObservers as View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/04a8d31… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/04a8d31… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-128.3.0esr-14.0-1] Bug 1923344 - r=smaug, a=dsmith
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: 02b24a2d by Emilio Cobos Álvarez at 2024-10-08T22:01:13+02:00 Bug 1923344 - r=smaug, a=dsmith Differential Revision: https://phabricator.services.mozilla.com/D224958 - - - - - 4 changed files: - dom/animation/AnimationTimeline.cpp - dom/animation/DocumentTimeline.cpp - dom/animation/ScrollTimelineAnimationTracker.cpp - layout/base/nsRefreshDriver.cpp Changes: ===================================== dom/animation/AnimationTimeline.cpp ===================================== @@ -40,41 +40,33 @@ AnimationTimeline::~AnimationTimeline() { mAnimationOrder.clear(); } bool AnimationTimeline::Tick(TickState& aState) { 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 + // queue events. animation->Tick(aState); - if (!animation->NeedsTicks()) { - animationsToRemove.AppendElement(animation); + RemoveAnimation(animation); } } - for (Animation* animation : animationsToRemove) { - RemoveAnimation(animation); - } - return needsTicks; } @@ -90,11 +82,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/DocumentTimeline.cpp ===================================== @@ -160,7 +160,12 @@ void DocumentTimeline::NotifyAnimationUpdated(Animation& aAnimation) { } void DocumentTimeline::TriggerAllPendingAnimationsNow() { + AutoTArray<RefPtr<Animation>, 32> animationsToTrigger; for (Animation* animation : mAnimationOrder) { + animationsToTrigger.AppendElement(animation); + } + + for (Animation* animation : animationsToTrigger) { animation->TryTriggerNow(); } } @@ -188,9 +193,6 @@ void DocumentTimeline::WillRefresh() { // of mDocument's PresShell. if (nsRefreshDriver* refreshDriver = GetRefreshDriver()) { refreshDriver->EnsureAnimationUpdate(); - } else { - MOZ_ASSERT_UNREACHABLE( - "Refresh driver should still be valid at end of WillRefresh"); } } ===================================== 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); } } ===================================== layout/base/nsRefreshDriver.cpp ===================================== @@ -2332,8 +2332,15 @@ void nsRefreshDriver::DetermineProximityToViewportAndNotifyResizeObservers() { } static CallState UpdateAndReduceAnimations(Document& aDocument) { - for (DocumentTimeline* timeline : aDocument.Timelines()) { - timeline->WillRefresh(); + { + AutoTArray<RefPtr<DocumentTimeline>, 32> timelinesToTick; + for (DocumentTimeline* timeline : aDocument.Timelines()) { + timelinesToTick.AppendElement(timeline); + } + + for (DocumentTimeline* tl : timelinesToTick) { + tl->WillRefresh(); + } } if (nsPresContext* pc = aDocument.GetPresContext()) { @@ -2363,7 +2370,8 @@ void nsRefreshDriver::UpdateAnimationsAndSendEvents() { // [1]: // https://drafts.csswg.org/web-animations-1/#update-animations-and-send-events nsAutoMicroTask mt; - UpdateAndReduceAnimations(*mPresContext->Document()); + RefPtr doc = mPresContext->Document(); + UpdateAndReduceAnimations(*doc); } // Hold all AnimationEventDispatcher in mAnimationEventFlushObservers as View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/02b24a2… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/02b24a2… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-128.3.0esr-14.0-1] fixup! [android] Modify add-on support
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: d1579ad1 by hackademix at 2024-10-08T14:25:29+02:00 fixup! [android] Modify add-on support Bug 43132: Enable scriptless installation on Android. - - - - - 4 changed files: - mobile/shared/modules/geckoview/GeckoViewWebExtension.sys.mjs - toolkit/mozapps/extensions/AddonManager.sys.mjs - toolkit/mozapps/extensions/components.conf - toolkit/mozapps/extensions/internal/XPIInstall.sys.mjs Changes: ===================================== mobile/shared/modules/geckoview/GeckoViewWebExtension.sys.mjs ===================================== @@ -354,7 +354,9 @@ async function exportExtension(aAddon, aSourceURI) { disabledFlags.push("appVersionDisabled"); } const baseURL = policy ? policy.getURL() : ""; - const privateBrowsingAllowed = policy ? policy.privateBrowsingAllowed : false; + const privateBrowsingAllowed = policy + ? policy.privateBrowsingAllowed + : lazy.PrivateBrowsingUtils.permanentPrivateBrowsing; let updateDate; try { @@ -509,6 +511,9 @@ class ExtensionInstallListener { async onInstallEnded(aInstall, aAddon) { debug`onInstallEnded addonId=${aAddon.id}`; + if (lazy.PrivateBrowsingUtils.permanentPrivateBrowsing) { + await GeckoViewWebExtension.setPrivateBrowsingAllowed(aAddon.id, true); + } const extension = await exportExtension(aAddon, aInstall.sourceURI); this.resolve({ extension }); } ===================================== toolkit/mozapps/extensions/AddonManager.sys.mjs ===================================== @@ -83,7 +83,10 @@ const lazy = {}; ChromeUtils.defineESModuleGetters(lazy, { AbuseReporter: "resource://gre/modules/AbuseReporter.sys.mjs", AddonRepository: "resource://gre/modules/addons/AddonRepository.sys.mjs", + GeckoViewWebExtension: "resource://gre/modules/GeckoViewWebExtension.sys.mjs", + EventDispatcher: "resource://gre/modules/Messaging.sys.mjs", Extension: "resource://gre/modules/Extension.sys.mjs", + PrivateBrowsingUtils: "resource://gre/modules/PrivateBrowsingUtils.sys.mjs", RemoteSettings: "resource://services-settings/remote-settings.sys.mjs", TelemetryTimestamps: "resource://gre/modules/TelemetryTimestamps.sys.mjs", isGatedPermissionType: @@ -2346,6 +2349,24 @@ var AddonManagerInternal = { return promiseInstall; }, + async installGeckoViewWebExtension(extensionUri) { + const installId = Services.uuid.generateUUID().toString(); + let { extension } = await lazy.GeckoViewWebExtension.installWebExtension( + installId, + extensionUri + ); + if (lazy.PrivateBrowsingUtils.permanentPrivateBrowsing) { + extension = await lazy.GeckoViewWebExtension.setPrivateBrowsingAllowed( + extension.webExtensionId, + true + ); + } + await lazy.EventDispatcher.instance.sendRequest({ + type: "GeckoView:WebExtension:OnInstalled", + extension, + }); + }, + /** * Starts installation of an AddonInstall notifying the registered * web install listener of a blocked or started install. @@ -2518,6 +2539,10 @@ var AddonManagerInternal = { ); if (installAllowed) { + if (AppConstants.platform == "android") { + aInstall.cancel(); + return this.installGeckoViewWebExtension(aInstall.sourceURI); + } startInstall("AMO"); } else if (installPerm === Ci.nsIPermissionManager.DENY_ACTION) { // Block without prompt ===================================== toolkit/mozapps/extensions/components.conf ===================================== @@ -32,14 +32,13 @@ Classes = [ 'esModule': 'resource://gre/modules/amWebAPI.sys.mjs', 'constructor': 'WebAPI', }, + # tor-browser#43132: re-enable XPI handler on Android to allow scriptless extensions installation. + # This reverts https://bugzilla.mozilla.org/show_bug.cgi?id=1610571, which made sense for generic + # GeckoView extensionless embedders and for Firefox, relying on navigator.mozAddonManager. + { + 'cid': '{7beb3ba8-6ec3-41b4-b67c-da89b8518922}', + 'contract_ids': ['@mozilla.org/uriloader/content-handler;1?type=application/x-xpinstall'], + 'esModule': 'resource://gre/modules/amContentHandler.sys.mjs', + 'constructor': 'amContentHandler', + }, ] - -if buildconfig.substs['MOZ_WIDGET_TOOLKIT'] != 'android': - Classes += [ - { - 'cid': '{7beb3ba8-6ec3-41b4-b67c-da89b8518922}', - 'contract_ids': ['@mozilla.org/uriloader/content-handler;1?type=application/x-xpinstall'], - 'esModule': 'resource://gre/modules/amContentHandler.sys.mjs', - 'constructor': 'amContentHandler', - }, - ] ===================================== toolkit/mozapps/extensions/internal/XPIInstall.sys.mjs ===================================== @@ -4475,6 +4475,11 @@ export var XPIInstall = { return false; } + // tor-browser#43132: short-circuit permission check on Android scriptless install from AMO + if (AppConstants.platform == "android" && uri.prePath == "https://addons.mozilla.org") { + return true; + } + let requireWhitelist = Services.prefs.getBoolPref( PREF_XPI_WHITELIST_REQUIRED, true View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/d1579ad… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/d1579ad… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build] Pushed new tag mb-13.5.7-build2
by morgan (@morgan) 08 Oct '24

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

08 Oct '24
morgan pushed new tag tbb-13.5.7-build2 at The Tor Project / Applications / tor-browser-build -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/tree/tbb… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][maint-13.5] Bug 41264, 41265: Prepare Tor, Mullvad Browser 13.5.7 build2
by morgan (@morgan) 08 Oct '24

08 Oct '24
morgan pushed to branch maint-13.5 at The Tor Project / Applications / tor-browser-build Commits: 7a602096 by Morgan at 2024-10-08T19:31:28+00:00 Bug 41264,41265: Prepare Tor,Mullvad Browser 13.5.7 build2 - - - - - 2 changed files: - projects/geckoview/config - rbm.conf Changes: ===================================== projects/geckoview/config ===================================== @@ -16,7 +16,7 @@ container: var: geckoview_version: 115.16.0esr browser_branch: 13.5-1 - browser_build: 2 + browser_build: 3 copyright_year: '[% exec("git show -s --format=%ci").remove("-.*") %]' gitlab_project: https://gitlab.torproject.org/tpo/applications/tor-browser git_commit: '[% exec("git rev-parse HEAD") %]' ===================================== rbm.conf ===================================== @@ -74,7 +74,7 @@ buildconf: var: torbrowser_version: '13.5.7' - torbrowser_build: 'build1' + torbrowser_build: 'build2' # This should be the date of when the build is started. For the build # to be reproducible, browser_release_date should always be in the past. browser_release_date: '2024/10/08 18:28:00' View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/7… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build] Pushed new tag mb-13.5.7-build1
by morgan (@morgan) 08 Oct '24

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

08 Oct '24
morgan pushed new tag tbb-13.5.7-build1 at The Tor Project / Applications / tor-browser-build -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/tree/tbb… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser] Pushed new tag base-browser-115.16.0esr-13.5-1-build3
by ma1 (@ma1) 08 Oct '24

08 Oct '24
ma1 pushed new tag base-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/base-brow… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][base-browser-115.16.0esr-13.5-1] Bug 1923344. a=diannaS
by ma1 (@ma1) 08 Oct '24

08 Oct '24
ma1 pushed to branch base-browser-115.16.0esr-13.5-1 at The Tor Project / Applications / Tor Browser Commits: 2f9b37cc by Emilio Cobos Álvarez at 2024-10-08T20:58:19+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: ===================================== 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/2f9b37c… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/2f9b37c… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][maint-13.5] Bug 41264, 41265: Prepare Tor, Mullvad Browser 13.5.7
by morgan (@morgan) 08 Oct '24

08 Oct '24
morgan pushed to branch maint-13.5 at The Tor Project / Applications / tor-browser-build Commits: f1c2514c by Morgan at 2024-10-08T18:38:43+00:00 Bug 41264,41265: Prepare Tor,Mullvad Browser 13.5.7 - - - - - 8 changed files: - projects/browser/Bundle-Data/Docs-MB/ChangeLog.txt - projects/browser/Bundle-Data/Docs-TBB/ChangeLog.txt - projects/browser/allowed_addons.json - projects/browser/config - projects/firefox/config - projects/manual/config - projects/translation/config - rbm.conf Changes: ===================================== projects/browser/Bundle-Data/Docs-MB/ChangeLog.txt ===================================== @@ -1,3 +1,25 @@ +Mullvad Browser 13.5.7 - October 08 2024 + * All Platforms + * Updated uBlock Origin to 1.60.0 + * Bug 361: SSL_ERROR_NO_CYPHER_OVERLAP on some Brazilian government websites [mullvad-browser] + * Bug 43201: Security fixes from Firefox 131.0.2 [tor-browser] + +Mullvad Browser 14.0a8 - October 07 2024 + * All Platforms + * Updated uBlock Origin to 1.60.0 + * Bug 349: Tidy up mullvad Fluent files [mullvad-browser] + * Bug 30543: compat: make spoofed orientation reflect spoofed screen dimensions [1607032 + 1918202] [tor-browser] + * Bug 42054: ESR128: investigate - thorin's list [tor-browser] + * Bug 43164: Prevent search-bar from being auto-hidden when not used for awhile [tor-browser] + * Bug 43169: compat: align userAgent in navigator + HTTP Header [tor-browser] + * Bug 43173: Backport security fixes from Firefox 131 [tor-browser] + * Bug 43178: Audit fingerprinting overrides (MozBug 1834274) [tor-browser] + * Build System + * All Platforms + * Bug 43157: Move tb-dev to base-browser [tor-browser] + * Bug 41256: tools/signing/upload-update_responses-to-staticiforme should regenerate update-responses when it already exists [tor-browser-build] + * Bug 41259: Skip versions which don't set incremental_from when generating incrementals [tor-browser-build] + Mullvad Browser 13.5.6 - September 30 2024 * All Platforms * Updated Firefox to 115.16.0esr ===================================== projects/browser/Bundle-Data/Docs-TBB/ChangeLog.txt ===================================== @@ -1,3 +1,47 @@ +Tor Browser 13.5.7 - October 08 2024 + * All Platforms + * Bug 43201: Security fixes from Firefox 131.0.2 [tor-browser] + * Bug 361: SSL_ERROR_NO_CYPHER_OVERLAP on some Brazilian government websites [mullvad-browser] + * Build System + * Windows + macOS + Linux + * Bug 41254: Drop cryptoSafetyPrompt.properties line [tor-browser-build] + +Tor Browser 14.0a8 - October 07 2024 + * All Platforms + * Bug 30543: compat: make spoofed orientation reflect spoofed screen dimensions [1607032 + 1918202] [tor-browser] + * Bug 42054: ESR128: investigate - thorin's list [tor-browser] + * Bug 42716: Disable unwanted about:* pages [tor-browser] + * Bug 43170: Disable user-agent spoofing in HTTP header [tor-browser] + * Bug 43173: Backport security fixes from Firefox 131 [tor-browser] + * Bug 43178: Audit fingerprinting overrides (MozBug 1834274) [tor-browser] + * Windows + macOS + Linux + * Updated Firefox to 128.3.0esr + * Bug 43098: YEC 2024 Takeover for Desktop Stable [tor-browser] + * Bug 43149: Update donate URL in YEC 2024 desktop [tor-browser] + * Bug 43164: Prevent search-bar from being auto-hidden when not used for awhile [tor-browser] + * Bug 43169: compat: align userAgent in navigator + HTTP Header [tor-browser] + * Android + * Updated GeckoView to 128.3.0esr + * Bug 42660: Review the patch on Android's ProxySelector [tor-browser] + * Bug 43102: Android notifications tell to make Firefox your default browser + * Bug 43151: MOZ_DATA_REPORTING, MOZ_TELEMETRY_REPORTING, MOZ_CRASHREPORTER, and MOZ_BACKGROUNDTASKS enabled on Android [tor-browser] + * Build System + * All Platforms + * Updated Go to 1.23.2 + * Bug 43156: Update translation CI to account for the extended 13.5 release [tor-browser] + * Bug 43157: Move tb-dev to base-browser [tor-browser] + * Bug 43181: Run translation CI if there is a change in a string.xml file [tor-browser] + * Windows + macOS + Linux + * Bug 41247: Adapt tools/update-responses/update_responses to support multiple versions in the same xml files [tor-browser-build] + * Bug 41256: tools/signing/upload-update_responses-to-staticiforme should regenerate update-responses when it already exists [tor-browser-build] + * Bug 41259: Skip versions which don't set incremental_from when generating incrementals [tor-browser-build] + +Tor Browser 13.5a11 - October 01 2024 + * All Platforms + * Bug 41252: Disable updating update_responses in 13.5-legacy branch [tor-browser-build] + * Windows + macOS + Linux + * Updated Firefox to 115.16.0esr + Tor Browser 13.5.6 - September 30 2024 * All Platforms * Updated NoScript to 11.4.40 @@ -47,6 +91,12 @@ Tor Browser 13.5a10 - September 25 2024 * Windows + macOS + Linux * Updated Go to 1.21.12 +Tor Browser 13.5.5 - September 25 2024 + * Windows + macOS + * Bug 43125: Update message for legacy OS (windows ≤8.1, macOS ≤10.14) users [tor-browser] + * Linux + * Bug 334: When set as default browser on Linux in standard mode, links don't open correctly [mullvad-browser] + Tor Browser 14.0a6 - September 19 2024 * All Platforms * Bug 42831: Remove the shopping components [tor-browser] ===================================== projects/browser/allowed_addons.json ===================================== @@ -17,7 +17,7 @@ "picture_url": "https://addons.mozilla.org/user-media/userpics/34/9734/13299734/13299734.pn…" } ], - "average_daily_users": 1204514, + "average_daily_users": 1207497, "categories": { "firefox": [ "web-development", @@ -28,7 +28,7 @@ "contributions_url": "https://opencollective.com/darkreader?utm_content=product-page-contribute&u…", "created": "2017-09-19T07:03:00Z", "current_version": { - "id": 5807097, + "id": 5814964, "compatibility": { "firefox": { "min": "78.0", @@ -39,7 +39,7 @@ "max": "*" } }, - "edit_url": "https://addons.mozilla.org/en-US/developers/addon/darkreader/versions/58070…", + "edit_url": "https://addons.mozilla.org/en-US/developers/addon/darkreader/versions/58149…", "is_strict_compatibility_enabled": false, "license": { "id": 22, @@ -50,22 +50,22 @@ "url": "https://www.opensource.org/license/mit" }, "release_notes": { - "en-US": "- Detect website's dark theme by default.\n- Use Filter mode for particular websites by default (Google Docs, Microsoft Office).\n- Fixed breaking on default selection color.\n- Users' fixes for websites." + "en-US": "- Users' fixes for websites." }, - "reviewed": "2024-09-16T12:10:25Z", - "version": "4.9.92", + "reviewed": "2024-10-03T10:23:13Z", + "version": "4.9.94", "files": [ { - "id": 4351387, - "created": "2024-09-11T16:04:34Z", - "hash": "sha256:be55b3ea5bab95743d43823d9290fa820035b89c4d07943b568111d837a98226", + "id": 4359254, + "created": "2024-09-25T10:46:44Z", + "hash": "sha256:251c4e7d0a30c0cab006803600e59ab92dcc0c606429740d42677846d4c9ccd6", "is_restart_required": false, "is_webextension": true, "is_mozilla_signed_extension": false, "platform": "all", - "size": 768509, + "size": 775460, "status": "public", - "url": "https://addons.mozilla.org/firefox/downloads/file/4351387/darkreader-4.9.92…", + "url": "https://addons.mozilla.org/firefox/downloads/file/4359254/darkreader-4.9.94…", "permissions": [ "alarms", "contextMenus", @@ -143,7 +143,7 @@ }, "is_disabled": false, "is_experimental": false, - "last_updated": "2024-09-16T12:10:25Z", + "last_updated": "2024-10-03T10:23:13Z", "name": { "ar": "Dark Reader", "bn": "Dark Reader", @@ -218,10 +218,10 @@ "category": "recommended" }, "ratings": { - "average": 4.5262, - "bayesian_average": 4.525128945531112, - "count": 5874, - "text_count": 1848 + "average": 4.5261, + "bayesian_average": 4.525030500981792, + "count": 5891, + "text_count": 1850 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/darkreader/reviews/", "requires_payment": false, @@ -318,7 +318,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/darkreader/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/darkreader/versions/", - "weekly_downloads": 27270 + "weekly_downloads": 27615 }, "notes": null }, @@ -334,7 +334,7 @@ "picture_url": "https://addons.mozilla.org/user-media/userpics/56/7656/6937656/6937656.png?…" } ], - "average_daily_users": 257341, + "average_daily_users": 257450, "categories": { "firefox": [ "privacy-security" @@ -547,9 +547,9 @@ "category": "recommended" }, "ratings": { - "average": 4.7944, - "bayesian_average": 4.7897830310986445, - "count": 1459, + "average": 4.7941, + "bayesian_average": 4.7894866719280875, + "count": 1462, "text_count": 263 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/decentraleyes/reviews/", @@ -635,7 +635,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/decentraleyes/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/decentraleyes/versions/", - "weekly_downloads": 2715 + "weekly_downloads": 2882 }, "notes": null }, @@ -651,7 +651,7 @@ "picture_url": "https://addons.mozilla.org/user-media/userpics/73/4073/5474073/5474073.png?…" } ], - "average_daily_users": 1271165, + "average_daily_users": 1287220, "categories": { "firefox": [ "privacy-security" @@ -1170,9 +1170,9 @@ "category": "recommended" }, "ratings": { - "average": 4.803, - "bayesian_average": 4.800317190701833, - "count": 2518, + "average": 4.8036, + "bayesian_average": 4.800921192769993, + "count": 2525, "text_count": 474 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/privacy-badger17/reviews/", @@ -1197,7 +1197,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/privacy-badger17/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/privacy-badger17/versions/", - "weekly_downloads": 23241 + "weekly_downloads": 15616 }, "notes": null }, @@ -1213,7 +1213,7 @@ "picture_url": null } ], - "average_daily_users": 8420658, + "average_daily_users": 8491310, "categories": { "firefox": [ "privacy-security" @@ -1222,7 +1222,7 @@ "contributions_url": "", "created": "2015-04-25T07:26:22Z", "current_version": { - "id": 5784388, + "id": 5815646, "compatibility": { "firefox": { "min": "78.0", @@ -1233,7 +1233,7 @@ "max": "*" } }, - "edit_url": "https://addons.mozilla.org/en-US/developers/addon/ublock-origin/versions/57…", + "edit_url": "https://addons.mozilla.org/en-US/developers/addon/ublock-origin/versions/58…", "is_strict_compatibility_enabled": false, "license": { "id": 6, @@ -1244,22 +1244,22 @@ "url": "https://www.gnu.org/licenses/gpl-3.0.html" }, "release_notes": { - "en-US": "See complete release notes for <a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/80b2790a8885a0b371688e…" rel=\"nofollow\">1.59.0</a>.\n\n<b>Fixes / changes</b>\n\n<ul><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/6f83c9bda4f606ac9bbe35…" rel=\"nofollow\">Improve <code>href-sanitizer</code> scriptlet</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/d0d6b2f1f271a0d381506e…" rel=\"nofollow\">Improve <code>trusted-replace-node-text</code> scriptlet</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/18c0e51ef9410419195c6e…" rel=\"nofollow\">Improve <code>set-constant</code> scriptlet</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/e38598350ca70d0096b727…" rel=\"nofollow\">Improve <code>prevent-fetch</code> scriptlet</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/b2f1192d91916d9f53c322…" rel=\"nofollow\">Improve <code>href-sanitizer</code> scriptlet</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/4eaf7905cc1ecc0d0b268c…" rel=\"nofollow\">Fix CSP/PP header injection in non-document resources</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/0b52bf6abea7f8af3a2faa…" rel=\"nofollow\">Add <code>trusted-suppress-native-method</code> scriptlet</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/4fbb70518c5f7736e2ed4b…" rel=\"nofollow\">Add support for <code>$currentISODate$</code> in <code>trusted-set-cookie</code> scriptlet</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/538a174f02f8d558ca0f5b…" rel=\"nofollow\">Add <code>essential</code> and <code>nonessential</code> to set-cookie</a> (by @ryanbr)</li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/d6b47c7cfc6d2abc6c1a8b…" rel=\"nofollow\">Fix distance calculation in picker</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/a02b298b0f42bb71b36867…" rel=\"nofollow\">Fix bad serialization of Date objects</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/330dc362ee41d31a57d0e0…" rel=\"nofollow\">Fix race condition when loading redirect/scriptlet resources</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/00e93fa50af7f5c5895646…" rel=\"nofollow\">Improve logging in <code>prevent-addEventListener</code> scriptlet</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/78f7bf362410d635808ede…" rel=\"nofollow\">Add <code>:matches-prop()</code> pseudo CSS operator</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/baa90372ba1da6634be302…" rel=\"nofollow\">Improve <code>set-cookie</code> scriptlet</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/d99eea5acba1727b919417…" rel=\"nofollow\">Improve <code>trusted-replace-node-text</code> scriptlet</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/8be2ab0eb327f71c51905e…" rel=\"nofollow\">Improve <code>trusted-replace-(fetch|xhr)-response</code> scriptlets</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/89370fd730d3d9455aac72…" rel=\"nofollow\">Improve <code>prevent-addEventListener</code> scriptlet</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/236700044cc2a32d0781b5…" rel=\"nofollow\">Add <code>isodate</code> as available placeholder for auto-comment</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/10972836780f44474b7796…" rel=\"nofollow\">Improve <code>trusted-replace-outbound-text</code> scriptlet</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/3bd285b223548309af7fd4…" rel=\"nofollow\">Classify generic cosmetic filters with comma as highly generic</a></li><li>...</li></ul>\n<a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/474b57891d21c28971ba3f…" rel=\"nofollow\">Commits history since last version</a>" + "en-US": "See complete release notes for <a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/ab4290f6c06f76ff7c569a…" rel=\"nofollow\">1.60.0</a>.\n\n<b>Fixes / changes</b>\n\n<ul><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/a7f3d7b99890a83167bde9…" rel=\"nofollow\">Add advanced setting <code>dnsResolveEnabled</code></a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/8d08e0d4a106c79f7ca9cc…" rel=\"nofollow\">Fix contextual menu quirks</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/9ff16b644a9420e26819a1…" rel=\"nofollow\">Fix exception thrown in <code>spoof-css</code> in Firefox</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/f4141c94efe41718d0cc97…" rel=\"nofollow\">Throttle down repeated scriptlet logging information</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/475e038499cf0116d04800…" rel=\"nofollow\">Improve scriptlet helper <code>proxy-apply</code></a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/8c307b6a63a1680515a2c8…" rel=\"nofollow\">Add an entry in <em>Report</em> page for badware/phishing category</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/77a312ce251921112463d6…" rel=\"nofollow\">New static network filter option <code>urlskip=</code></a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/75204fd60bc4be458a4e02…" rel=\"nofollow\">Rewrite cname uncloaking code to account for new <code>ipaddress=</code> option</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/7cb5c22b591f7a32cbc804…" rel=\"nofollow\">Avoid using dns.resolve() for proxied DNS resolution</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/499ee470ba5cb2309081d1…" rel=\"nofollow\">Add support for <code>lan</code>/<code>loopback</code> values to <code>ipaddress=</code> option</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/f438854cffe5ab8fe86206…" rel=\"nofollow\">New static network filter option <code>ipaddress=</code></a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/28784916f9ef6b4ca355f5…" rel=\"nofollow\">Add ability to quote static network option values</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/b12f8055b40250d820734b…" rel=\"nofollow\">Improve <code>prevent-fetch</code> scriptlet</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/f58726e9a418c212fd112b…" rel=\"nofollow\">Apply CSP/PP injections to <code>object</code> resources</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/d4fab838114437dcbdbbec…" rel=\"nofollow\">Improve <code>xml-prune</code> scriptlet</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/887632e43e36820146a6ef…" rel=\"nofollow\">Add support for <code>application/dash+xml</code> in <code>replace=</code> option</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/e4fd44e3689a55a7795bd7…" rel=\"nofollow\">Add ability to directly evaluate static network filtering engine</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/e25a680e38189e7a955692…" rel=\"nofollow\">Fix <code>prevent-window-open</code> for when logger is open</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/d5c4e8f439a7266138ef05…" rel=\"nofollow\">Improve <code>prevent-window-open</code> scriptlet</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/fa42b9a1828cf3f8827c4c…" rel=\"nofollow\">Improve <code>validate-constant</code> scriptlet helper</a></li><li><a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/789f93f260226635dbd578…" rel=\"nofollow\">Improve <code>trusted-replace-outbound-text</code> scriptlet</a></li><li>...</li></ul>\n<a href=\"https://prod.outgoing.prod.webservices.mozgcp.net/v1/a447a095e980be8aee28ca…" rel=\"nofollow\">Commits history since last version</a>" }, - "reviewed": "2024-07-31T14:46:52Z", - "version": "1.59.0", + "reviewed": "2024-10-02T10:32:38Z", + "version": "1.60.0", "files": [ { - "id": 4328681, - "created": "2024-07-30T16:57:19Z", - "hash": "sha256:1db9c676a07d141f8d36dbbc24f9e3d64a6cc2340dbfc6c848bc4395f96cfb14", + "id": 4359936, + "created": "2024-09-26T14:47:20Z", + "hash": "sha256:e2cda9b2a1b0a7f6e5ef0da9f87f28df52f8560587ba2e51a3003121cfb81600", "is_restart_required": false, "is_webextension": true, "is_mozilla_signed_extension": false, "platform": "all", - "size": 3951183, + "size": 3964532, "status": "public", - "url": "https://addons.mozilla.org/firefox/downloads/file/4328681/ublock_origin-1.5…", + "url": "https://addons.mozilla.org/firefox/downloads/file/4359936/ublock_origin-1.6…", "permissions": [ "alarms", "dns", @@ -1378,7 +1378,7 @@ }, "is_disabled": false, "is_experimental": false, - "last_updated": "2024-09-29T16:50:40Z", + "last_updated": "2024-10-07T16:05:33Z", "name": { "ar": "uBlock Origin", "bg": "uBlock Origin", @@ -1523,10 +1523,10 @@ "category": "recommended" }, "ratings": { - "average": 4.791, - "bayesian_average": 4.790635808907738, - "count": 18504, - "text_count": 4830 + "average": 4.7911, + "bayesian_average": 4.790736675455798, + "count": 18576, + "text_count": 4852 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/reviews/", "requires_payment": false, @@ -1589,7 +1589,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/versions/", - "weekly_downloads": 199435 + "weekly_downloads": 203502 }, "notes": null }, @@ -1605,7 +1605,7 @@ "picture_url": null } ], - "average_daily_users": 186259, + "average_daily_users": 186764, "categories": { "firefox": [ "photos-music-videos", @@ -1701,10 +1701,10 @@ "category": "recommended" }, "ratings": { - "average": 4.4528, - "bayesian_average": 4.447998328835177, - "count": 1283, - "text_count": 498 + "average": 4.4529, + "bayesian_average": 4.448102217920827, + "count": 1285, + "text_count": 499 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/video-background-play-fix/re…", "requires_payment": false, @@ -1726,7 +1726,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/video-background-play-fix/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/video-background-play-fix/ve…", - "weekly_downloads": 343 + "weekly_downloads": 353 }, "notes": null }, @@ -1742,7 +1742,7 @@ "picture_url": null } ], - "average_daily_users": 63018, + "average_daily_users": 62883, "categories": { "firefox": [ "privacy-security", @@ -1852,10 +1852,10 @@ ], "promoted": null, "ratings": { - "average": 4.3857, - "bayesian_average": 4.370975076736403, - "count": 407, - "text_count": 115 + "average": 4.3824, + "bayesian_average": 4.367630765274127, + "count": 408, + "text_count": 116 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/privacy-possum/reviews/", "requires_payment": false, @@ -1877,7 +1877,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/privacy-possum/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/privacy-possum/versions/", - "weekly_downloads": 280 + "weekly_downloads": 252 }, "notes": null }, @@ -1893,7 +1893,7 @@ "picture_url": "https://addons.mozilla.org/user-media/userpics/64/9064/12929064/12929064.pn…" } ], - "average_daily_users": 363451, + "average_daily_users": 363798, "categories": { "firefox": [ "search-tools", @@ -2110,10 +2110,10 @@ "category": "recommended" }, "ratings": { - "average": 4.6174, - "bayesian_average": 4.613245740860053, - "count": 1550, - "text_count": 310 + "average": 4.6156, + "bayesian_average": 4.611450519760037, + "count": 1553, + "text_count": 311 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/search_by_image/reviews/", "requires_payment": false, @@ -2136,7 +2136,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/search_by_image/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/search_by_image/versions/", - "weekly_downloads": 5585 + "weekly_downloads": 4249 }, "notes": null }, @@ -2159,7 +2159,7 @@ "picture_url": null } ], - "average_daily_users": 122336, + "average_daily_users": 122492, "categories": { "firefox": [ "search-tools", @@ -2440,9 +2440,9 @@ "category": "recommended" }, "ratings": { - "average": 4.3815, - "bayesian_average": 4.377175971962635, - "count": 1397, + "average": 4.38, + "bayesian_average": 4.375681327971426, + "count": 1400, "text_count": 392 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/google-search-fixer/reviews/", @@ -2463,7 +2463,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/google-search-fixer/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/google-search-fixer/versions/", - "weekly_downloads": 25 + "weekly_downloads": 18 }, "notes": null }, @@ -2479,7 +2479,7 @@ "picture_url": "https://addons.mozilla.org/user-media/userpics/43/0143/143/143.png?modified…" } ], - "average_daily_users": 290589, + "average_daily_users": 290667, "categories": { "firefox": [ "privacy-security", @@ -2593,7 +2593,7 @@ }, "is_disabled": false, "is_experimental": false, - "last_updated": "2024-09-26T09:59:52Z", + "last_updated": "2024-10-03T20:10:23Z", "name": { "de": "NoScript", "el": "NoScript", @@ -2665,10 +2665,10 @@ "category": "recommended" }, "ratings": { - "average": 4.4095, - "bayesian_average": 4.406829615955648, - "count": 2281, - "text_count": 868 + "average": 4.4106, + "bayesian_average": 4.407931581210998, + "count": 2287, + "text_count": 870 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/noscript/reviews/", "requires_payment": false, @@ -2712,7 +2712,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/noscript/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/noscript/versions/", - "weekly_downloads": 7253 + "weekly_downloads": 8114 }, "notes": null }, @@ -2728,7 +2728,7 @@ "picture_url": null } ], - "average_daily_users": 164045, + "average_daily_users": 164800, "categories": { "firefox": [ "photos-music-videos", @@ -2838,10 +2838,10 @@ "category": "recommended" }, "ratings": { - "average": 3.8371, - "bayesian_average": 3.8331062194266265, - "count": 1283, - "text_count": 464 + "average": 3.8349, + "bayesian_average": 3.830907392554808, + "count": 1284, + "text_count": 465 }, "ratings_url": "https://addons.mozilla.org/en-US/firefox/addon/youtube-high-definition/revi…", "requires_payment": false, @@ -2860,7 +2860,7 @@ "type": "extension", "url": "https://addons.mozilla.org/en-US/firefox/addon/youtube-high-definition/", "versions_url": "https://addons.mozilla.org/en-US/firefox/addon/youtube-high-definition/vers…", - "weekly_downloads": 1559 + "weekly_downloads": 1706 }, "notes": null } ===================================== projects/browser/config ===================================== @@ -107,9 +107,9 @@ input_files: - URL: https://addons.mozilla.org/firefox/downloads/file/4357325/noscript-11.4.40.… name: noscript sha256sum: 242ead426159d871480a13062cbee08abc97da746cdc5c643aee2692e9adbbb2 - - URL: https://addons.mozilla.org/firefox/downloads/file/4328681/ublock_origin-1.5… + - URL: https://addons.mozilla.org/firefox/downloads/file/4359936/ublock_origin-1.6… name: ublock-origin - sha256sum: 1db9c676a07d141f8d36dbbc24f9e3d64a6cc2340dbfc6c848bc4395f96cfb14 + sha256sum: e2cda9b2a1b0a7f6e5ef0da9f87f28df52f8560587ba2e51a3003121cfb81600 enable: '[% c("var/mullvad-browser") %]' - URL: https://cdn.mullvad.net/browser-extension/0.9.0/mullvad-browser-extension-0… name: mullvad-extension ===================================== projects/firefox/config ===================================== @@ -19,7 +19,7 @@ var: browser_series: '13.5' browser_rebase: 1 browser_branch: '[% c("var/browser_series") %]-[% c("var/browser_rebase") %]' - browser_build: 2 + browser_build: 3 branding_directory_prefix: 'tb' copyright_year: '[% exec("git show -s --format=%ci").remove("-.*") %]' nightly_updates_publish_dir: '[% c("var/nightly_updates_publish_dir_prefix") %]nightly-[% c("var/osname") %]' ===================================== projects/manual/config ===================================== @@ -1,7 +1,7 @@ # vim: filetype=yaml sw=2 # To update, see doc/how-to-update-the-manual.txt # Remember to update also the package's hash, with the version! -version: 199081 +version: 210938 filename: 'manual-[% c("version") %]-[% c("var/build_id") %].tar.[% c("compress_tar") %]' container: use_container: 1 @@ -23,6 +23,6 @@ input_files: - project: container-image - URL: 'https://build-sources.tbb.torproject.org/manual_[% c("version") %].zip' name: manual - sha256sum: 12507ba43e5e4a4c4eb8e276f11c9d693d1e0fc4715753c87cd7166649c0da6b + sha256sum: eb83259f0525a14dae1a1c3944e1e5ac3a2f8111a42834ab0f401628c8a38791 - filename: packagemanual.py name: package_script ===================================== projects/translation/config ===================================== @@ -12,19 +12,19 @@ compress_tar: 'gz' steps: base-browser: base-browser: '[% INCLUDE build %]' - git_hash: a142f78af87f994913faa15fb4b0f34f0ce1a22b + git_hash: ceb66dd0937da14962cb535699242b2526e11f02 targets: nightly: git_hash: 'base-browser' tor-browser: tor-browser: '[% INCLUDE build %]' - git_hash: 04f824bce1b6fb4b989bb9303949af17eab11406 + git_hash: dbf1454fdbd3256d65985cc1c46391ce0ec159e7 targets: nightly: git_hash: 'tor-browser' mullvad-browser: mullvad-browser: '[% INCLUDE build %]' - git_hash: 78212a3da2439e436ac5f73d8e3eb908145c3ece + git_hash: 2f7d98b46ce480cdb4d7e9ddab912650c8673d6c targets: nightly: git_hash: 'mullvad-browser' @@ -32,7 +32,7 @@ steps: fenix: '[% INCLUDE build %]' # We need to bump the commit before releasing but just pointing to a branch # might cause too much rebuidling of the Firefox part. - git_hash: 559ac499551ba78889c61b5dc0669ba10a256674 + git_hash: 669ea989fa07933df7ab03ec0077e166e0dcc961 compress_tar: 'zst' targets: nightly: ===================================== rbm.conf ===================================== @@ -73,20 +73,20 @@ buildconf: git_signtag_opt: '-s' var: - torbrowser_version: '13.5.6' + torbrowser_version: '13.5.7' torbrowser_build: 'build1' # This should be the date of when the build is started. For the build # to be reproducible, browser_release_date should always be in the past. - browser_release_date: '2024/09/30 23:05:10' + browser_release_date: '2024/10/08 18:28:00' browser_release_date_timestamp: '[% USE date; date.format(c("var/browser_release_date"), "%s") %]' updater_enabled: 1 build_mar: 1 torbrowser_incremental_from: + - 13.5.6 - '[% IF c("var/tor-browser") %]13.5.5[% END %]' - '[% IF c("var/tor-browser") %]13.5.4[% END %]' - - 13.5.3 + - '[% IF c("var/mullvad-browser") %]13.5.3[% END %]' - '[% IF c("var/mullvad-browser") %]13.5.2[% END %]' - - '[% IF c("var/mullvad-browser") %]13.5.1[% END %]' mar_channel_id: '[% c("var/projectname") %]-torproject-[% c("var/channel") %]' # By default, we sort the list of installed packages. This allows sharing View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/mullvad-browser] Pushed new tag mullvad-browser-115.16.0esr-13.5-1-build3
by ma1 (@ma1) 08 Oct '24

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

08 Oct '24
ma1 pushed to branch mullvad-browser-115.16.0esr-13.5-1 at The Tor Project / Applications / Mullvad Browser Commits: 0697953d by Emilio Cobos Álvarez at 2024-10-08T20:49:30+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: ===================================== 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/mullvad-browser/-/commit/069… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/069… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser] Pushed new tag tor-browser-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: ===================================== 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.
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 ===================================== @@ -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.
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: ===================================== 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.
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 - − 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.
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.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.
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.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.
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.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.
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 - + 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.
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.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.
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • ...
  • 745
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.