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

Keyboard Shortcuts

Thread View

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

tbb-commits

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

September 2024

  • 1 participants
  • 250 discussions
[Git][tpo/applications/tor-browser][tor-browser-128.2.0esr-14.0-1] squash! Bug 41043: Hardcode the UI font on Linux
by morgan (@morgan) 16 Sep '24

16 Sep '24
morgan pushed to branch tor-browser-128.2.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: 0da1a95a by Pier Angelo Vendrame at 2024-09-16T17:33:11+00:00 squash! Bug 41043: Hardcode the UI font on Linux Bug 43141: Hardcode system-ui to Arimo. - - - - - 2 changed files: - gfx/thebes/gfxPlatformFontList.cpp - layout/base/nsLayoutUtils.cpp Changes: ===================================== gfx/thebes/gfxPlatformFontList.cpp ===================================== @@ -2055,6 +2055,11 @@ static void GetSystemUIFontFamilies(const nsPresContext* aPresContext, #if defined(XP_MACOSX) || defined(MOZ_WIDGET_UIKIT) *aFamilies.AppendElement() = "-apple-system"_ns; return; +#elif defined(MOZ_WIDGET_GTK) + // tor-browser#43141: Hardcode Arimo in case our custom fontconfig is + // missing. + *aFamilies.AppendElement() = "Arimo"_ns; + return; #elif !defined(MOZ_WIDGET_ANDROID) *aFamilies.AppendElement() = "sans-serif"_ns; return; ===================================== layout/base/nsLayoutUtils.cpp ===================================== @@ -9720,7 +9720,9 @@ static void GetSpoofedSystemFontForRFP(LookAndFeel::FontID aFontID, // In general, Linux uses some sans-serif, but its size can vary between // 12px and 16px. We chose 15px because it is what Firefox is doing for the // UI font-size. - aName = u"sans-serif"_ns; + // tor-browser#43141: Hardcode Arimo in case our custom fontconfig is + // missing. + aName = u"Arimo"_ns; aStyle.size = 15; #else # error "Unknown platform" View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/0da1a95… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/0da1a95… 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 41237: Add some font aliases for compatibility.
by morgan (@morgan) 16 Sep '24

16 Sep '24
morgan pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: 0db49347 by Pier Angelo Vendrame at 2024-09-16T17:31:29+00:00 Bug 41237: Add some font aliases for compatibility. Add aliases for some MS fonts (Arial, Courier New, and Times New Roman) and for some PS fonts (Courier, Helvetica, and Times). - - - - - 1 changed file: - projects/browser/Bundle-Data/linux/Data/fontconfig/fonts.conf Changes: ===================================== projects/browser/Bundle-Data/linux/Data/fontconfig/fonts.conf ===================================== @@ -105,6 +105,59 @@ PERFORMANCE OF THIS SOFTWARE. </edit> </match> +<!-- + tor-browser#41799, tor-browser-build#41237: Add some aliases for + compatibility. +--> + <match target="pattern"> + <test qual="any" name="family"> + <string>Arial</string> + </test> + <edit name="family" mode="assign" binding="same"> + <string>Arimo</string> + </edit> + </match> + <match target="pattern"> + <test qual="any" name="family"> + <string>Times New Roman</string> + </test> + <edit name="family" mode="assign" binding="same"> + <string>Tinos</string> + </edit> + </match> + <match target="pattern"> + <test qual="any" name="family"> + <string>Courier New</string> + </test> + <edit name="family" mode="assign" binding="same"> + <string>Cousine</string> + </edit> + </match> + <match target="pattern"> + <test qual="any" name="family"> + <string>Helvetica</string> + </test> + <edit name="family" mode="assign" binding="same"> + <string>Arimo</string> + </edit> + </match> + <match target="pattern"> + <test qual="any" name="family"> + <string>Times</string> + </test> + <edit name="family" mode="assign" binding="same"> + <string>Tinos</string> + </edit> + </match> + <match target="pattern"> + <test qual="any" name="family"> + <string>Courier</string> + </test> + <edit name="family" mode="assign" binding="same"> + <string>Cousine</string> + </edit> + </match> + <!-- Font cache directory list --> <cachedir prefix="xdg">fontconfig</cachedir> View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/0… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/0… 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.2.0esr-14.0-1] Bug 43072: Add aria label and description to moz-message-bar.
by morgan (@morgan) 16 Sep '24

16 Sep '24
morgan pushed to branch mullvad-browser-128.2.0esr-14.0-1 at The Tor Project / Applications / Mullvad Browser Commits: af82c3ab by Henry Wilkes at 2024-09-16T17:20:18+00:00 Bug 43072: Add aria label and description to moz-message-bar. Ensures that moz-message-bar, including notifications, are announced on Orca. This addresses upstream bugzilla bug 1895857 and should likely be replaced when it is fixed. - - - - - 2 changed files: - toolkit/content/widgets/moz-message-bar/moz-message-bar.mjs - toolkit/content/widgets/notificationbox.js Changes: ===================================== toolkit/content/widgets/moz-message-bar/moz-message-bar.mjs ===================================== @@ -62,6 +62,7 @@ export default class MozMessageBar extends MozLitElement { dismissable: { type: Boolean }, messageL10nId: { type: String }, messageL10nArgs: { type: String }, + useAlertRole: { type: Boolean }, }; constructor() { @@ -69,6 +70,7 @@ export default class MozMessageBar extends MozLitElement { window.MozXULElement?.insertFTLIfNeeded("toolkit/global/mozMessageBar.ftl"); this.type = "info"; this.dismissable = false; + this.useAlertRole = true; } onSlotchange() { @@ -76,11 +78,6 @@ export default class MozMessageBar extends MozLitElement { this.actionsEl.classList.toggle("active", actions.length); } - connectedCallback() { - super.connectedCallback(); - this.setAttribute("role", "alert"); - } - disconnectedCallback() { super.disconnectedCallback(); this.dispatchEvent(new CustomEvent("message-bar:close")); @@ -90,6 +87,17 @@ export default class MozMessageBar extends MozLitElement { return this.supportLinkSlot.assignedElements(); } + setAlertRole() { + // Wait a little for this to render before setting the role for more + // consistent alerts to screen readers. + this.useAlertRole = false; + window.requestAnimationFrame(() => { + window.requestAnimationFrame(() => { + this.useAlertRole = true; + }); + }); + } + iconTemplate() { let iconData = messageTypeToIconData[this.type]; if (iconData) { @@ -110,7 +118,9 @@ export default class MozMessageBar extends MozLitElement { headingTemplate() { if (this.heading) { - return html`<strong class="heading">${this.heading}</strong>`; + return html` + <strong id="heading" class="heading">${this.heading}</strong> + `; } return ""; } @@ -136,13 +146,18 @@ export default class MozMessageBar extends MozLitElement { rel="stylesheet" href="chrome://global/content/elements/moz-message-bar.css" /> - <div class="container"> + <div + class="container" + role=${ifDefined(this.useAlertRole ? "alert" : undefined)} + aria-labelledby=${this.heading ? "heading" : "content"} + aria-describedby=${ifDefined(this.heading ? "content" : undefined)} + > <div class="content"> <div class="text-container"> ${this.iconTemplate()} <div class="text-content"> ${this.headingTemplate()} - <div> + <div id="content"> <span class="message" data-l10n-id=${ifDefined(this.messageL10nId)} ===================================== toolkit/content/widgets/notificationbox.js ===================================== @@ -703,17 +703,6 @@ } } - setAlertRole() { - // Wait a little for this to render before setting the role for more - // consistent alerts to screen readers. - this.removeAttribute("role"); - window.requestAnimationFrame(() => { - window.requestAnimationFrame(() => { - this.setAttribute("role", "alert"); - }); - }); - } - handleEvent(e) { if (e.type == "click" && e.target.localName != "label") { return; View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/af8… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/af8… 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.2.0esr-14.0-1] Bug 43072: Add aria label and description to moz-message-bar.
by morgan (@morgan) 16 Sep '24

16 Sep '24
morgan pushed to branch base-browser-128.2.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: 681f5728 by Henry Wilkes at 2024-09-16T17:18:25+00:00 Bug 43072: Add aria label and description to moz-message-bar. Ensures that moz-message-bar, including notifications, are announced on Orca. This addresses upstream bugzilla bug 1895857 and should likely be replaced when it is fixed. - - - - - 2 changed files: - toolkit/content/widgets/moz-message-bar/moz-message-bar.mjs - toolkit/content/widgets/notificationbox.js Changes: ===================================== toolkit/content/widgets/moz-message-bar/moz-message-bar.mjs ===================================== @@ -62,6 +62,7 @@ export default class MozMessageBar extends MozLitElement { dismissable: { type: Boolean }, messageL10nId: { type: String }, messageL10nArgs: { type: String }, + useAlertRole: { type: Boolean }, }; constructor() { @@ -69,6 +70,7 @@ export default class MozMessageBar extends MozLitElement { window.MozXULElement?.insertFTLIfNeeded("toolkit/global/mozMessageBar.ftl"); this.type = "info"; this.dismissable = false; + this.useAlertRole = true; } onSlotchange() { @@ -76,11 +78,6 @@ export default class MozMessageBar extends MozLitElement { this.actionsEl.classList.toggle("active", actions.length); } - connectedCallback() { - super.connectedCallback(); - this.setAttribute("role", "alert"); - } - disconnectedCallback() { super.disconnectedCallback(); this.dispatchEvent(new CustomEvent("message-bar:close")); @@ -90,6 +87,17 @@ export default class MozMessageBar extends MozLitElement { return this.supportLinkSlot.assignedElements(); } + setAlertRole() { + // Wait a little for this to render before setting the role for more + // consistent alerts to screen readers. + this.useAlertRole = false; + window.requestAnimationFrame(() => { + window.requestAnimationFrame(() => { + this.useAlertRole = true; + }); + }); + } + iconTemplate() { let iconData = messageTypeToIconData[this.type]; if (iconData) { @@ -110,7 +118,9 @@ export default class MozMessageBar extends MozLitElement { headingTemplate() { if (this.heading) { - return html`<strong class="heading">${this.heading}</strong>`; + return html` + <strong id="heading" class="heading">${this.heading}</strong> + `; } return ""; } @@ -136,13 +146,18 @@ export default class MozMessageBar extends MozLitElement { rel="stylesheet" href="chrome://global/content/elements/moz-message-bar.css" /> - <div class="container"> + <div + class="container" + role=${ifDefined(this.useAlertRole ? "alert" : undefined)} + aria-labelledby=${this.heading ? "heading" : "content"} + aria-describedby=${ifDefined(this.heading ? "content" : undefined)} + > <div class="content"> <div class="text-container"> ${this.iconTemplate()} <div class="text-content"> ${this.headingTemplate()} - <div> + <div id="content"> <span class="message" data-l10n-id=${ifDefined(this.messageL10nId)} ===================================== toolkit/content/widgets/notificationbox.js ===================================== @@ -703,17 +703,6 @@ } } - setAlertRole() { - // Wait a little for this to render before setting the role for more - // consistent alerts to screen readers. - this.removeAttribute("role"); - window.requestAnimationFrame(() => { - window.requestAnimationFrame(() => { - this.setAttribute("role", "alert"); - }); - }); - } - handleEvent(e) { if (e.type == "click" && e.target.localName != "label") { return; View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/681f572… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/681f572… 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.2.0esr-14.0-1] Bug 43072: Add aria label and description to moz-message-bar.
by morgan (@morgan) 16 Sep '24

16 Sep '24
morgan pushed to branch tor-browser-128.2.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: d1fee199 by Henry Wilkes at 2024-09-16T17:01:00+00:00 Bug 43072: Add aria label and description to moz-message-bar. Ensures that moz-message-bar, including notifications, are announced on Orca. This addresses upstream bugzilla bug 1895857 and should likely be replaced when it is fixed. - - - - - 2 changed files: - toolkit/content/widgets/moz-message-bar/moz-message-bar.mjs - toolkit/content/widgets/notificationbox.js Changes: ===================================== toolkit/content/widgets/moz-message-bar/moz-message-bar.mjs ===================================== @@ -62,6 +62,7 @@ export default class MozMessageBar extends MozLitElement { dismissable: { type: Boolean }, messageL10nId: { type: String }, messageL10nArgs: { type: String }, + useAlertRole: { type: Boolean }, }; constructor() { @@ -69,6 +70,7 @@ export default class MozMessageBar extends MozLitElement { window.MozXULElement?.insertFTLIfNeeded("toolkit/global/mozMessageBar.ftl"); this.type = "info"; this.dismissable = false; + this.useAlertRole = true; } onSlotchange() { @@ -76,11 +78,6 @@ export default class MozMessageBar extends MozLitElement { this.actionsEl.classList.toggle("active", actions.length); } - connectedCallback() { - super.connectedCallback(); - this.setAttribute("role", "alert"); - } - disconnectedCallback() { super.disconnectedCallback(); this.dispatchEvent(new CustomEvent("message-bar:close")); @@ -90,6 +87,17 @@ export default class MozMessageBar extends MozLitElement { return this.supportLinkSlot.assignedElements(); } + setAlertRole() { + // Wait a little for this to render before setting the role for more + // consistent alerts to screen readers. + this.useAlertRole = false; + window.requestAnimationFrame(() => { + window.requestAnimationFrame(() => { + this.useAlertRole = true; + }); + }); + } + iconTemplate() { let iconData = messageTypeToIconData[this.type]; if (iconData) { @@ -110,7 +118,9 @@ export default class MozMessageBar extends MozLitElement { headingTemplate() { if (this.heading) { - return html`<strong class="heading">${this.heading}</strong>`; + return html` + <strong id="heading" class="heading">${this.heading}</strong> + `; } return ""; } @@ -136,13 +146,18 @@ export default class MozMessageBar extends MozLitElement { rel="stylesheet" href="chrome://global/content/elements/moz-message-bar.css" /> - <div class="container"> + <div + class="container" + role=${ifDefined(this.useAlertRole ? "alert" : undefined)} + aria-labelledby=${this.heading ? "heading" : "content"} + aria-describedby=${ifDefined(this.heading ? "content" : undefined)} + > <div class="content"> <div class="text-container"> ${this.iconTemplate()} <div class="text-content"> ${this.headingTemplate()} - <div> + <div id="content"> <span class="message" data-l10n-id=${ifDefined(this.messageL10nId)} ===================================== toolkit/content/widgets/notificationbox.js ===================================== @@ -703,17 +703,6 @@ } } - setAlertRole() { - // Wait a little for this to render before setting the role for more - // consistent alerts to screen readers. - this.removeAttribute("role"); - window.requestAnimationFrame(() => { - window.requestAnimationFrame(() => { - this.setAttribute("role", "alert"); - }); - }); - } - handleEvent(e) { if (e.type == "click" && e.target.localName != "label") { return; View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/d1fee19… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/d1fee19… 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.2.0esr-14.0-1] fixup! Bug 31286: Implementation of bridge, proxy, and firewall settings in...
by morgan (@morgan) 14 Sep '24

14 Sep '24
morgan pushed to branch tor-browser-128.2.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: dbe52600 by Henry Wilkes at 2024-09-14T14:53:32+00:00 fixup! Bug 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#connection Bug 42698: Use higher contrast background for bridge emojis. - - - - - 1 changed file: - browser/components/torpreferences/content/torPreferences.css Changes: ===================================== browser/components/torpreferences/content/torPreferences.css ===================================== @@ -420,7 +420,8 @@ button.spoof-button-disabled { box-sizing: content-box; width: 16px; height: 16px; - background: var(--in-content-button-background); + /* color-light-gray-10, color-dark-gray-60 */ + background: light-dark(#f9f9fb, #2b2a33); border-radius: 4px; padding: 8px; } View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/dbe5260… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/dbe5260… 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.0a5
by morgan (@morgan) 13 Sep '24

13 Sep '24
morgan pushed to branch main at The Tor Project / Applications / mullvad-browser-update-responses Commits: d31c6819 by Morgan at 2024-09-13T19:09:18+00:00 alpha: new version, 14.0a5 - - - - - 29 changed files: - update_1/alpha/.htaccess - − update_1/alpha/14.0a1-14.0a4-linux-x86_64-ALL.xml - − update_1/alpha/14.0a1-14.0a4-macos-ALL.xml - − update_1/alpha/14.0a1-14.0a4-windows-x86_64-ALL.xml - − update_1/alpha/14.0a2-14.0a4-linux-x86_64-ALL.xml - − update_1/alpha/14.0a2-14.0a4-macos-ALL.xml - − update_1/alpha/14.0a2-14.0a4-windows-x86_64-ALL.xml - + update_1/alpha/14.0a2-14.0a5-linux-x86_64-ALL.xml - + update_1/alpha/14.0a2-14.0a5-macos-ALL.xml - + update_1/alpha/14.0a2-14.0a5-windows-x86_64-ALL.xml - − update_1/alpha/14.0a3-14.0a4-linux-x86_64-ALL.xml - − update_1/alpha/14.0a3-14.0a4-macos-ALL.xml - − update_1/alpha/14.0a3-14.0a4-windows-x86_64-ALL.xml - + update_1/alpha/14.0a3-14.0a5-linux-x86_64-ALL.xml - + update_1/alpha/14.0a3-14.0a5-macos-ALL.xml - + update_1/alpha/14.0a3-14.0a5-windows-x86_64-ALL.xml - + update_1/alpha/14.0a4-14.0a5-linux-x86_64-ALL.xml - + update_1/alpha/14.0a4-14.0a5-macos-ALL.xml - + update_1/alpha/14.0a4-14.0a5-windows-x86_64-ALL.xml - − update_1/alpha/14.0a4-linux-x86_64-ALL.xml - − update_1/alpha/14.0a4-macos-ALL.xml - − update_1/alpha/14.0a4-windows-x86_64-ALL.xml - + update_1/alpha/14.0a5-linux-x86_64-ALL.xml - + update_1/alpha/14.0a5-macos-ALL.xml - + update_1/alpha/14.0a5-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.0a4/ no-update.xml [last] -RewriteRule ^Linux_x86_64-gcc3/14.0a1/ALL 14.0a1-14.0a4-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/14.0a2/ALL 14.0a2-14.0a4-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/14.0a3/ALL 14.0a3-14.0a4-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 14.0a4-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/ 14.0a4-linux-x86_64-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/14.0a1/ALL 14.0a1-14.0a4-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/14.0a2/ALL 14.0a2-14.0a4-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/14.0a3/ALL 14.0a3-14.0a4-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 14.0a4-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/ 14.0a4-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/14.0a1/ALL 14.0a1-14.0a4-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/14.0a2/ALL 14.0a2-14.0a4-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/14.0a3/ALL 14.0a3-14.0a4-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 14.0a4-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/ 14.0a4-macos-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a1/ALL 14.0a1-14.0a4-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a2/ALL 14.0a2-14.0a4-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a3/ALL 14.0a3-14.0a4-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 14.0a4-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/ 14.0a4-windows-x86_64-ALL.xml [last] +RewriteRule ^[^/]+/14.0a5/ no-update.xml [last] +RewriteRule ^Linux_x86_64-gcc3/14.0a2/ALL 14.0a2-14.0a5-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/14.0a3/ALL 14.0a3-14.0a5-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/14.0a4/ALL 14.0a4-14.0a5-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 14.0a5-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/ 14.0a5-linux-x86_64-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/14.0a2/ALL 14.0a2-14.0a5-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/14.0a3/ALL 14.0a3-14.0a5-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/14.0a4/ALL 14.0a4-14.0a5-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 14.0a5-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/ 14.0a5-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/14.0a2/ALL 14.0a2-14.0a5-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/14.0a3/ALL 14.0a3-14.0a5-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/14.0a4/ALL 14.0a4-14.0a5-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 14.0a5-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/ 14.0a5-macos-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a2/ALL 14.0a2-14.0a5-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a3/ALL 14.0a3-14.0a5-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a4/ALL 14.0a4-14.0a5-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 14.0a5-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/ 14.0a5-windows-x86_64-ALL.xml [last] ===================================== update_1/alpha/14.0a1-14.0a4-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a4" appVersion="14.0a4" platformVersion="128.2.0" buildID="20240905044514" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-linux-x86_64-14.0a4_…" hashFunction="SHA512" hashValue="679fbda22a3ce6c2aecd036af8d6a0073aa8f53f16efd059874102b54260a9f78a5492a6d979561df05d86e820e36909516c24875a7da2769e3c38a651216c67" size="113995449" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-linux-x86_64--14.0a1…" hashFunction="SHA512" hashValue="8aad2d41ac6f9f922a7b60f4070dd0a33cd7de65d66fa72fa842b6a6a1daaea9308923d97ae1686d2dc48785c0f391e15ce2932c778ca786667fcc2d4c8a5419" size="12075785" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a1-14.0a4-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a4" appVersion="14.0a4" platformVersion="128.2.0" buildID="20240905044514" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-macos-14.0a4_ALL.mar" hashFunction="SHA512" hashValue="23de2746365c0f319e4d47a103f6776f5e9096d93749d3b883d38b3bd38600993f093a45a832e4d34e171e937292a3484ecd49d028126a16a382e64c2561f417" size="129032726" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-macos--14.0a1-14.0a4…" hashFunction="SHA512" hashValue="25cdeea9bf2add208798686f1f69ec9dbb7c2211e944ce4f02dd1a296a7684f491b4592b9266681cad78021b60669d551dde15af686572091aa869993abd4844" size="17646763" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a1-14.0a4-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a4" appVersion="14.0a4" platformVersion="128.2.0" buildID="20240905044514" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="4a0f30d5d27fef56e89da2340b326638c95fd048f6fe9918f68f19653138bfe1ee92ccbdec2cbc22607b99a148686a0974eadbfd28268a7c4abdd6584d703627" size="95005624" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="7c5b3ab08a76d3687d0c3284aa58345f7ffb5d238fbf2e26a8e80ef8347393ea24ac88a57c8de3b37d0e9496bc1a4eb710faf14a8a28641bbb39d53bce584f36" size="12432382" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a2-14.0a4-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a4" appVersion="14.0a4" platformVersion="128.2.0" buildID="20240905044514" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-linux-x86_64-14.0a4_…" hashFunction="SHA512" hashValue="679fbda22a3ce6c2aecd036af8d6a0073aa8f53f16efd059874102b54260a9f78a5492a6d979561df05d86e820e36909516c24875a7da2769e3c38a651216c67" size="113995449" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-linux-x86_64--14.0a2…" hashFunction="SHA512" hashValue="4697ecba0387ddfa8634fa82f34942e5da92045b0f8ae8377c033c949ec7877b91b5c2d824b4065f6b9f9c4bc14d2060b8bdf739a2d64ae81b2f9e2a176b5712" size="8773095" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a2-14.0a4-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a4" appVersion="14.0a4" platformVersion="128.2.0" buildID="20240905044514" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-macos-14.0a4_ALL.mar" hashFunction="SHA512" hashValue="23de2746365c0f319e4d47a103f6776f5e9096d93749d3b883d38b3bd38600993f093a45a832e4d34e171e937292a3484ecd49d028126a16a382e64c2561f417" size="129032726" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-macos--14.0a2-14.0a4…" hashFunction="SHA512" hashValue="0fd07f16bb5cde8b35a3bbd9ee86411e1ebf3cbf1927c8b9d783498ac3f803e5a836ea5847e51429d86a491a789272d88da5a9cdcfb60730823915397f314fbc" size="14109206" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a2-14.0a4-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a4" appVersion="14.0a4" platformVersion="128.2.0" buildID="20240905044514" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="4a0f30d5d27fef56e89da2340b326638c95fd048f6fe9918f68f19653138bfe1ee92ccbdec2cbc22607b99a148686a0974eadbfd28268a7c4abdd6584d703627" size="95005624" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="0b3157c62c1a0a81198c102a6f60b7240e89fd9ab17a5a46c12ceb2a12dc9d94908c01138bf04b1825efafa38a5b0f68530b9ff60824cb2dc50527d201314d94" size="9086456" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a2-14.0a5-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a5" appVersion="14.0a5" platformVersion="128.2.0" buildID="20240912203944" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-linux-x86_64-14.0a5_…" hashFunction="SHA512" hashValue="5a7ddd1e0473fff7a8b2f3b8daa5c9bd8453d44156bd0c34903d6fa6c8d325a44173820957df51603bc1855866316dbd2a9c4a043fcf72d89989fe4a99e01c59" size="114068981" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-linux-x86_64--14.0a2…" hashFunction="SHA512" hashValue="90fa996ce82f994a5809fa609ece840120ddefc63036307b3506114b7abfbb2ddbca8bb2faf63cab600fddfb3cf75c783b2b52d07ea48a9e4a468344996887a3" size="8910559" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a2-14.0a5-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a5" appVersion="14.0a5" platformVersion="128.2.0" buildID="20240912203944" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-macos-14.0a5_ALL.mar" hashFunction="SHA512" hashValue="27ef47a32788b4dd6f258db575d0c9c753ef1b27102e6d7fdc14562efa72c6c3ed56911dd28a14d201c0e9969cd3d6d8d47a474eff8af3c0f0416637d85a0c27" size="129110086" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-macos--14.0a2-14.0a5…" hashFunction="SHA512" hashValue="0f1a50ac272f0ea02cfc9890ad4c45338685a5c2361b7c92b326a5377e819f9b0caf33e371917e2a8c9d8ce27355975ebbf7323134e461a486280af40a055492" size="14271326" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a2-14.0a5-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a5" appVersion="14.0a5" platformVersion="128.2.0" buildID="20240912203944" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="284e81dccee8625e10ffd5f71cb82480d717734d1811e5a923780a1ea1fb643c1f70c0958a4caf01c3b42279758507379eb5fc341cc74f6228c785ec98c93399" size="95075648" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="5ac0dc05424b475980c87b27c8b5b86649ac42f53b3325ec26769919e7e73e9e5bddd9950c2fce5fee2499f2998f506495ecce93d03efa4e3a1367f46cd96f0a" size="9269812" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a3-14.0a4-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a4" appVersion="14.0a4" platformVersion="128.2.0" buildID="20240905044514" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-linux-x86_64-14.0a4_…" hashFunction="SHA512" hashValue="679fbda22a3ce6c2aecd036af8d6a0073aa8f53f16efd059874102b54260a9f78a5492a6d979561df05d86e820e36909516c24875a7da2769e3c38a651216c67" size="113995449" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-linux-x86_64--14.0a3…" hashFunction="SHA512" hashValue="3ff66b57124d5c481ffe6c67fff129090230e4c7f109c4d2750c6ef78fa7ec6102107cf4624d229b631ce1a3415d6851815c42d4e6f0d82e648685142b7093d6" size="3659072" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a3-14.0a4-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a4" appVersion="14.0a4" platformVersion="128.2.0" buildID="20240905044514" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-macos-14.0a4_ALL.mar" hashFunction="SHA512" hashValue="23de2746365c0f319e4d47a103f6776f5e9096d93749d3b883d38b3bd38600993f093a45a832e4d34e171e937292a3484ecd49d028126a16a382e64c2561f417" size="129032726" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-macos--14.0a3-14.0a4…" hashFunction="SHA512" hashValue="cce17fd7bee4ca8c8ecef43047dbc50ad3391dedbc9d34214f6a3f9a47760cc7c206643d5e2ec38342761ed4051750ac796a91b70369cc44b723f8b49df36573" size="7195168" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a3-14.0a4-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a4" appVersion="14.0a4" platformVersion="128.2.0" buildID="20240905044514" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="4a0f30d5d27fef56e89da2340b326638c95fd048f6fe9918f68f19653138bfe1ee92ccbdec2cbc22607b99a148686a0974eadbfd28268a7c4abdd6584d703627" size="95005624" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="29dad97a454e84f3bfea9faeafd899970bc13aca6ab9207a610e3376a9089f7ecb8f9d8a7c85efaa26411d21f2d366b07eee978621715890e11337f4e4916c08" size="3970541" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a3-14.0a5-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a5" appVersion="14.0a5" platformVersion="128.2.0" buildID="20240912203944" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-linux-x86_64-14.0a5_…" hashFunction="SHA512" hashValue="5a7ddd1e0473fff7a8b2f3b8daa5c9bd8453d44156bd0c34903d6fa6c8d325a44173820957df51603bc1855866316dbd2a9c4a043fcf72d89989fe4a99e01c59" size="114068981" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-linux-x86_64--14.0a3…" hashFunction="SHA512" hashValue="f8cfb2eb5feaf6e5267a0d10eedf2ab063efabd2f09c0d95c9e5e41f04024e56316bbab376a2d68e9535dd7e3ecb1a96cd76a38e7f2b1616a48bab5e97fe2008" size="3840120" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a3-14.0a5-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a5" appVersion="14.0a5" platformVersion="128.2.0" buildID="20240912203944" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-macos-14.0a5_ALL.mar" hashFunction="SHA512" hashValue="27ef47a32788b4dd6f258db575d0c9c753ef1b27102e6d7fdc14562efa72c6c3ed56911dd28a14d201c0e9969cd3d6d8d47a474eff8af3c0f0416637d85a0c27" size="129110086" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-macos--14.0a3-14.0a5…" hashFunction="SHA512" hashValue="0a54b6ff8b93064acc3e83026eae9ca500d8b906e020615fae3f1791234dcebee28aeb66b5da8d98ae349b3f5a3b6317c8f76bb1f3f704705df8b30b96471022" size="7408400" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a3-14.0a5-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a5" appVersion="14.0a5" platformVersion="128.2.0" buildID="20240912203944" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="284e81dccee8625e10ffd5f71cb82480d717734d1811e5a923780a1ea1fb643c1f70c0958a4caf01c3b42279758507379eb5fc341cc74f6228c785ec98c93399" size="95075648" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="11ea41e5a06c816f85a2e9a91406c02f4e3cfe3746a8ce05061d8a521b54366430ab5da0295f6bd4504a0d4442b635ff741074d22c4c519e40eaa4439ec5f662" size="4147937" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a4-14.0a5-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a5" appVersion="14.0a5" platformVersion="128.2.0" buildID="20240912203944" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-linux-x86_64-14.0a5_…" hashFunction="SHA512" hashValue="5a7ddd1e0473fff7a8b2f3b8daa5c9bd8453d44156bd0c34903d6fa6c8d325a44173820957df51603bc1855866316dbd2a9c4a043fcf72d89989fe4a99e01c59" size="114068981" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-linux-x86_64--14.0a4…" hashFunction="SHA512" hashValue="7eed74127e11a010c03794b1c019d0de7b19f25f8b3476fda0222bacc8371203d9cca97275c7528f45e4bb8310b2e8e5127ec80afa96a14b8bdd33125c4e4369" size="1222216" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a4-14.0a5-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a5" appVersion="14.0a5" platformVersion="128.2.0" buildID="20240912203944" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-macos-14.0a5_ALL.mar" hashFunction="SHA512" hashValue="27ef47a32788b4dd6f258db575d0c9c753ef1b27102e6d7fdc14562efa72c6c3ed56911dd28a14d201c0e9969cd3d6d8d47a474eff8af3c0f0416637d85a0c27" size="129110086" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-macos--14.0a4-14.0a5…" hashFunction="SHA512" hashValue="5ad50be5075cad735c6f819bb196299275e58ee3590f5e3584dc631aea1e028d853ec9aad6aaaa516202049737434749f66c9380a0615c3e5100225d7cf9ab1c" size="473876" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a4-14.0a5-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a5" appVersion="14.0a5" platformVersion="128.2.0" buildID="20240912203944" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="284e81dccee8625e10ffd5f71cb82480d717734d1811e5a923780a1ea1fb643c1f70c0958a4caf01c3b42279758507379eb5fc341cc74f6228c785ec98c93399" size="95075648" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="f4b7b2cd552829fa2dd0969f0e86af63b5b758ea640c44fd01920761147d0840edee30378e72f6a2ea419d1fbfe95829181d901830e6a56df92450f52255ea36" size="432057" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a4-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a4" appVersion="14.0a4" platformVersion="128.2.0" buildID="20240905044514" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-linux-x86_64-14.0a4_…" hashFunction="SHA512" hashValue="679fbda22a3ce6c2aecd036af8d6a0073aa8f53f16efd059874102b54260a9f78a5492a6d979561df05d86e820e36909516c24875a7da2769e3c38a651216c67" size="113995449" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a4-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a4" appVersion="14.0a4" platformVersion="128.2.0" buildID="20240905044514" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-macos-14.0a4_ALL.mar" hashFunction="SHA512" hashValue="23de2746365c0f319e4d47a103f6776f5e9096d93749d3b883d38b3bd38600993f093a45a832e4d34e171e937292a3484ecd49d028126a16a382e64c2561f417" size="129032726" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a4-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a4" appVersion="14.0a4" platformVersion="128.2.0" buildID="20240905044514" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a4" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="4a0f30d5d27fef56e89da2340b326638c95fd048f6fe9918f68f19653138bfe1ee92ccbdec2cbc22607b99a148686a0974eadbfd28268a7c4abdd6584d703627" size="95005624" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a5-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a5" appVersion="14.0a5" platformVersion="128.2.0" buildID="20240912203944" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-linux-x86_64-14.0a5_…" hashFunction="SHA512" hashValue="5a7ddd1e0473fff7a8b2f3b8daa5c9bd8453d44156bd0c34903d6fa6c8d325a44173820957df51603bc1855866316dbd2a9c4a043fcf72d89989fe4a99e01c59" size="114068981" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a5-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a5" appVersion="14.0a5" platformVersion="128.2.0" buildID="20240912203944" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-macos-14.0a5_ALL.mar" hashFunction="SHA512" hashValue="27ef47a32788b4dd6f258db575d0c9c753ef1b27102e6d7fdc14562efa72c6c3ed56911dd28a14d201c0e9969cd3d6d8d47a474eff8af3c0f0416637d85a0c27" size="129110086" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a5-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a5" appVersion="14.0a5" platformVersion="128.2.0" buildID="20240912203944" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a5" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="284e81dccee8625e10ffd5f71cb82480d717734d1811e5a923780a1ea1fb643c1f70c0958a4caf01c3b42279758507379eb5fc341cc74f6228c785ec98c93399" size="95075648" type="complete"></patch></update></updates> ===================================== update_1/alpha/download-linux-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-linux-x86_64-14.0a4.…","git_tag":"mb-14.0a4-build1","sig":"https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-linux-x86_64-14.0a4.…","version":"14.0a4"} \ No newline at end of file +{"binary":"https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-linux-x86_64-14.0a5.…","git_tag":"mb-14.0a5-build1","sig":"https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-linux-x86_64-14.0a5.…","version":"14.0a5"} \ No newline at end of file ===================================== update_1/alpha/download-macos.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-macos-14.0a4.dmg","git_tag":"mb-14.0a4-build1","sig":"https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-macos-14.0a4.dmg.asc","version":"14.0a4"} \ No newline at end of file +{"binary":"https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-macos-14.0a5.dmg","git_tag":"mb-14.0a5-build1","sig":"https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-macos-14.0a5.dmg.asc","version":"14.0a5"} \ No newline at end of file ===================================== update_1/alpha/download-windows-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-windows-x86_64-14.0a…","git_tag":"mb-14.0a4-build1","sig":"https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-windows-x86_64-14.0a…","version":"14.0a4"} \ No newline at end of file +{"binary":"https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-windows-x86_64-14.0a…","git_tag":"mb-14.0a5-build1","sig":"https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-windows-x86_64-14.0a…","version":"14.0a5"} \ 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.0a4/mullvad-browser-linux-x86_64-14.0a4.…","sig":"https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-linux-x86_64-14.0a4.…"}},"macos":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-macos-14.0a4.dmg","sig":"https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-macos-14.0a4.dmg.asc"}},"win64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-windows-x86_64-14.0a…","sig":"https://cdn.mullvad.net/browser/14.0a4/mullvad-browser-windows-x86_64-14.0a…"}}},"tag":"mb-14.0a4-build1","version":"14.0a4"} \ No newline at end of file +{"downloads":{"linux-x86_64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-linux-x86_64-14.0a5.…","sig":"https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-linux-x86_64-14.0a5.…"}},"macos":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-macos-14.0a5.dmg","sig":"https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-macos-14.0a5.dmg.asc"}},"win64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-windows-x86_64-14.0a…","sig":"https://cdn.mullvad.net/browser/14.0a5/mullvad-browser-windows-x86_64-14.0a…"}}},"tag":"mb-14.0a5-build1","version":"14.0a5"} \ No newline at end of file View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser-update-respo… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser-update-respo… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-update-responses][main] alpha: new version, 14.0a5
by morgan (@morgan) 13 Sep '24

13 Sep '24
morgan pushed to branch main at The Tor Project / Applications / Tor Browser update responses Commits: b0172ff2 by Morgan at 2024-09-13T18:40:34+00:00 alpha: new version, 14.0a5 - - - - - 30 changed files: - update_3/alpha/.htaccess - − update_3/alpha/14.0a1-14.0a4-linux-i686-ALL.xml - − update_3/alpha/14.0a1-14.0a4-linux-x86_64-ALL.xml - − update_3/alpha/14.0a1-14.0a4-macos-ALL.xml - − update_3/alpha/14.0a1-14.0a4-windows-i686-ALL.xml - − update_3/alpha/14.0a1-14.0a4-windows-x86_64-ALL.xml - − update_3/alpha/14.0a2-14.0a4-linux-i686-ALL.xml - − update_3/alpha/14.0a2-14.0a4-linux-x86_64-ALL.xml - − update_3/alpha/14.0a2-14.0a4-macos-ALL.xml - − update_3/alpha/14.0a2-14.0a4-windows-i686-ALL.xml - − update_3/alpha/14.0a2-14.0a4-windows-x86_64-ALL.xml - + update_3/alpha/14.0a2-14.0a5-linux-i686-ALL.xml - + update_3/alpha/14.0a2-14.0a5-linux-x86_64-ALL.xml - + update_3/alpha/14.0a2-14.0a5-macos-ALL.xml - + update_3/alpha/14.0a2-14.0a5-windows-i686-ALL.xml - + update_3/alpha/14.0a2-14.0a5-windows-x86_64-ALL.xml - − update_3/alpha/14.0a3-14.0a4-linux-i686-ALL.xml - − update_3/alpha/14.0a3-14.0a4-linux-x86_64-ALL.xml - − update_3/alpha/14.0a3-14.0a4-macos-ALL.xml - − update_3/alpha/14.0a3-14.0a4-windows-i686-ALL.xml - − update_3/alpha/14.0a3-14.0a4-windows-x86_64-ALL.xml - + update_3/alpha/14.0a3-14.0a5-linux-i686-ALL.xml - + update_3/alpha/14.0a3-14.0a5-linux-x86_64-ALL.xml - + update_3/alpha/14.0a3-14.0a5-macos-ALL.xml - + update_3/alpha/14.0a3-14.0a5-windows-i686-ALL.xml - + update_3/alpha/14.0a3-14.0a5-windows-x86_64-ALL.xml - + update_3/alpha/14.0a4-14.0a5-linux-i686-ALL.xml - + update_3/alpha/14.0a4-14.0a5-linux-x86_64-ALL.xml - + update_3/alpha/14.0a4-14.0a5-macos-ALL.xml - + update_3/alpha/14.0a4-14.0a5-windows-i686-ALL.xml The diff was not included because it is too large. View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build] Pushed new tag mb-14.0a5-build1
by ma1 (@ma1) 13 Sep '24

13 Sep '24
ma1 pushed new tag mb-14.0a5-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-14.0a5-build1
by ma1 (@ma1) 12 Sep '24

12 Sep '24
ma1 pushed new tag tbb-14.0a5-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
  • ← Newer
  • 1
  • ...
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • ...
  • 25
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.