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
Threads by month
  • ----- 2025 -----
  • November
  • October
  • September
  • August
  • 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

  • 1 participants
  • 19538 discussions
[Git][tpo/applications/mullvad-browser][mullvad-browser-128.1.0esr-14.0-1] fixup! Bug 40925: Implemented the Security Level component
by morgan (@morgan) 07 Aug '24

07 Aug '24
morgan pushed to branch mullvad-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Mullvad Browser Commits: 656fcdfc by Henry Wilkes at 2024-08-07T22:53:49+00:00 fixup! Bug 40925: Implemented the Security Level component Bug 42704: Drop the &quot;badged&quot; attribute from the security level button. - - - - - 2 changed files: - browser/components/securitylevel/content/securityLevel.js - browser/components/securitylevel/content/securityLevelButton.inc.xhtml Changes: ===================================== browser/components/securitylevel/content/securityLevel.js ===================================== @@ -69,7 +69,6 @@ var SecurityLevelButton = { * Open the panel popup for the button. */ openPopup() { - let anchorNode; const overflowPanel = document.getElementById("widget-overflow"); if (overflowPanel.contains(this._button)) { // We are in the overflow panel. @@ -84,10 +83,8 @@ var SecurityLevelButton = { // panel rather than our dialog-like panel. overflowPanel.hidePopup(); this._anchorButton = document.getElementById("nav-bar-overflow-button"); - anchorNode = this._anchorButton.icon; } else { this._anchorButton = this._button; - anchorNode = this._button.badgeStack; } const panel = SecurityLevelPanel.panel; @@ -103,7 +100,13 @@ var SecurityLevelButton = { }); } - panel.openPopup(anchorNode, "bottomright topright", 0, 0, false); + panel.openPopup( + this._anchorButton.icon, + "bottomright topright", + 0, + 0, + false + ); }, init() { ===================================== browser/components/securitylevel/content/securityLevelButton.inc.xhtml ===================================== @@ -1,5 +1,4 @@ <toolbarbutton id="security-level-button" class="toolbarbutton-1 chromeclass-toolbar-additional" - badged="true" removable="true" cui-areatype="toolbar"/> View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/656… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/656… 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.1.0esr-14.0-1] fixup! Bug 40925: Implemented the Security Level component
by morgan (@morgan) 07 Aug '24

07 Aug '24
morgan pushed to branch base-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: a67e4520 by Henry Wilkes at 2024-08-07T22:50:45+00:00 fixup! Bug 40925: Implemented the Security Level component Bug 42704: Drop the &quot;badged&quot; attribute from the security level button. - - - - - 2 changed files: - browser/components/securitylevel/content/securityLevel.js - browser/components/securitylevel/content/securityLevelButton.inc.xhtml Changes: ===================================== browser/components/securitylevel/content/securityLevel.js ===================================== @@ -69,7 +69,6 @@ var SecurityLevelButton = { * Open the panel popup for the button. */ openPopup() { - let anchorNode; const overflowPanel = document.getElementById("widget-overflow"); if (overflowPanel.contains(this._button)) { // We are in the overflow panel. @@ -84,10 +83,8 @@ var SecurityLevelButton = { // panel rather than our dialog-like panel. overflowPanel.hidePopup(); this._anchorButton = document.getElementById("nav-bar-overflow-button"); - anchorNode = this._anchorButton.icon; } else { this._anchorButton = this._button; - anchorNode = this._button.badgeStack; } const panel = SecurityLevelPanel.panel; @@ -103,7 +100,13 @@ var SecurityLevelButton = { }); } - panel.openPopup(anchorNode, "bottomright topright", 0, 0, false); + panel.openPopup( + this._anchorButton.icon, + "bottomright topright", + 0, + 0, + false + ); }, init() { ===================================== browser/components/securitylevel/content/securityLevelButton.inc.xhtml ===================================== @@ -1,5 +1,4 @@ <toolbarbutton id="security-level-button" class="toolbarbutton-1 chromeclass-toolbar-additional" - badged="true" removable="true" cui-areatype="toolbar"/> View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/a67e452… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/a67e452… 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.1.0esr-14.0-1] fixup! Bug 40925: Implemented the Security Level component
by morgan (@morgan) 07 Aug '24

07 Aug '24
morgan pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: fdad7c54 by Henry Wilkes at 2024-08-07T22:46:23+00:00 fixup! Bug 40925: Implemented the Security Level component Bug 42704: Drop the &quot;badged&quot; attribute from the security level button. - - - - - 2 changed files: - browser/components/securitylevel/content/securityLevel.js - browser/components/securitylevel/content/securityLevelButton.inc.xhtml Changes: ===================================== browser/components/securitylevel/content/securityLevel.js ===================================== @@ -69,7 +69,6 @@ var SecurityLevelButton = { * Open the panel popup for the button. */ openPopup() { - let anchorNode; const overflowPanel = document.getElementById("widget-overflow"); if (overflowPanel.contains(this._button)) { // We are in the overflow panel. @@ -84,10 +83,8 @@ var SecurityLevelButton = { // panel rather than our dialog-like panel. overflowPanel.hidePopup(); this._anchorButton = document.getElementById("nav-bar-overflow-button"); - anchorNode = this._anchorButton.icon; } else { this._anchorButton = this._button; - anchorNode = this._button.badgeStack; } const panel = SecurityLevelPanel.panel; @@ -103,7 +100,13 @@ var SecurityLevelButton = { }); } - panel.openPopup(anchorNode, "bottomright topright", 0, 0, false); + panel.openPopup( + this._anchorButton.icon, + "bottomright topright", + 0, + 0, + false + ); }, init() { ===================================== browser/components/securitylevel/content/securityLevelButton.inc.xhtml ===================================== @@ -1,5 +1,4 @@ <toolbarbutton id="security-level-button" class="toolbarbutton-1 chromeclass-toolbar-additional" - badged="true" removable="true" cui-areatype="toolbar"/> View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/fdad7c5… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/fdad7c5… 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 41202: Remove restricted entitlements
by morgan (@morgan) 07 Aug '24

07 Aug '24
morgan pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: 4d4e1380 by Nicolas Vigier at 2024-08-06T15:43:19+02:00 Bug 41202: Remove restricted entitlements Remove the following restricted entitlements: * com.apple.application-identifier * com.apple.developer.web-browser.public-key-credential https://searchfox.org/mozilla-central/source/tools/signing/macos/mach_comma… - - - - - 1 changed file: - tools/signing/macos-entitlements/firefox.browser.xml Changes: ===================================== tools/signing/macos-entitlements/firefox.browser.xml ===================================== @@ -23,12 +23,5 @@ <!-- For SmartCardServices(7) --> <key>com.apple.security.smartcard</key><true/> - - <!-- Required for com.apple.developer.web-browser.public-key-credential --> - <key>com.apple.application-identifier</key> - <string>43AQ936H96.org.mozilla.firefox</string> - - <!-- For platform passkey (webauthn) support --> - <key>com.apple.developer.web-browser.public-key-credential</key><true/> </dict> </plist> View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/4… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/4… 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.1.0esr-14.0-1] fixup! Bug 41600: Add a tor circuit display panel.
by morgan (@morgan) 07 Aug '24

07 Aug '24
morgan pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: 95ec0dcc by Henry Wilkes at 2024-08-07T21:39:39+00:00 fixup! Bug 41600: Add a tor circuit display panel. Bug 42488: Remove redundant role=&quot;code&quot; from ip address &lt;code&gt; element. After ESR 128, the &lt;code&gt; element has an implicit &quot;code&quot; accessible role. - - - - - 1 changed file: - browser/components/torcircuit/content/torCircuitPanel.js Changes: ===================================== browser/components/torcircuit/content/torCircuitPanel.js ===================================== @@ -617,19 +617,10 @@ var gTorCircuitPanel = { } else { addressesEl.append(", "); } + // Use semantic <code> block for the ip addresses, so the content + // (especially punctuation) can be better interpreted by screen readers, + // if they support this. const ipEl = document.createElement("code"); - // TODO: Current HTML-aam 1.0 specs map the <code> element to the "code" - // role. - // However, mozilla-central commented out this mapping in - // accessible/base/HTMLMarkupMap.h because the HTML-aam specs at the - // time did not do this. - // See hg.mozilla.org/mozilla-central/rev/51eebe7d6199#l2.12 - // - // This was updated in mozilla bug 1834931, for ESR 128 - // - // For now we explicitly add the role="code", but once this is fixed - // from mozilla-central we should remove this. - ipEl.setAttribute("role", "code"); ipEl.classList.add("tor-circuit-ip-address"); ipEl.textContent = ip; addressesEl.append(ipEl); View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/95ec0dc… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/95ec0dc… 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.1.0esr-14.0-1] fixup! Customize moz-toggle for tor-browser.
by morgan (@morgan) 07 Aug '24

07 Aug '24
morgan pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: ab241f69 by Henry Wilkes at 2024-08-07T21:22:16+00:00 fixup! Customize moz-toggle for tor-browser. Bug 42612: Reimplement the moz-toggle customization for 128 ESR. - - - - - 1 changed file: - toolkit/content/widgets/moz-toggle/moz-toggle.mjs Changes: ===================================== toolkit/content/widgets/moz-toggle/moz-toggle.mjs ===================================== @@ -34,6 +34,10 @@ export default class MozToggle extends MozLitElement { description: { type: String }, ariaLabel: { type: String, attribute: "aria-label" }, accessKey: { type: String, attribute: "accesskey" }, + // Extension for tor-browser. Used for tor-browser#41333. + title: { type: String, attribute: "title" }, + // Extension for tor-browser. Used for tor-browser#40837. + labelAlignAfter: { type: Boolean, attribute: "label-align-after" }, }; static get queries() { @@ -111,7 +115,11 @@ export default class MozToggle extends MozLitElement { } render() { - // TODO: Reimplement labelAlignAfter! + // For tor-browser, we want to be able to place the label after the toggle + // as well. + // Used for the enable-bridges switch tor-browser#40837. + const labelAlignAfter = this.labelAlignAfter; + return html` <link rel="stylesheet" @@ -126,11 +134,12 @@ export default class MozToggle extends MozLitElement { for="moz-toggle-button" accesskey=${ifDefined(this.accessKey)} > + ${labelAlignAfter ? this.buttonTemplate() : ""} <span> ${this.label} ${!this.description ? this.supportLinkTemplate() : ""} </span> - ${this.buttonTemplate()} + ${labelAlignAfter ? "" : this.buttonTemplate()} </label> ` : this.buttonTemplate()} View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/ab241f6… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/ab241f6… 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.1.0esr-14.0-1] fixup! Adding issue and merge request templates
by morgan (@morgan) 07 Aug '24

07 Aug '24
morgan pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: 5921a342 by Morgan at 2024-08-07T20:22:59+00:00 fixup! Adding issue and merge request templates add QA issue templates for tor browser desktop and android - - - - - 2 changed files: - + .gitlab/issue_templates/QA - Android.md - + .gitlab/issue_templates/QA - Desktop.md Changes: ===================================== .gitlab/issue_templates/QA - Android.md ===================================== @@ -0,0 +1,71 @@ +Manual QA test check-list for major android releases. Please copy/paste form into your own comment, fill out relevant info and run through the checklist! +<details> + <summary>Tor Browser Android QA Checklist</summary> +```markdown +# System Information + +- Version: Tor Browser XXX +- OS: Android YYY +- Device + CPU Architecture: ZZZ + +# Features + +## Base functionality +- [ ] Tor Browser launches successfully +- [ ] Connects to the Tor network +- [ ] Localisation (Browser chrome) + - [ ] Check especially the recently added strings +- [ ] Toolbars and menus work +- [ ] Fingerprinting resistance: https://arkenfox.github.io/TZP/tzp.html +- [ ] Security level (Standard, Safer, Safest) + - **TODO**: test pages verifying correct behaviour + +## Proxy safety +- [ ] Tor exit test: https://check.torproject.org +- [ ] Circuit isolation + - Following websites should all report different IP addresses + - https://ifconfig.io + - https://myip.wtf + - https://wtfismyip.com +- [ ] DNS leaks: https://dnsleaktest.com + +## Connectivity + Anti-Censorship +- [ ] Bridges: + - Bootstrap + - Browse: https://check.torproject.org + - [ ] Default bridges: + - [ ] obfs4 + - [ ] meek + - [ ] snowflake + - [ ] User provided bridges: + - [ ] obfs4 from https://bridges.torproject.org + - [ ] webtunnel from https://bridges.torproject.org + - [ ] conjure from [gitlab](https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transpo… + +## Web Browsing +- [ ] HTTPS-Only: http://http.badssl.com +- [ ] .onion: + - [ ] torproject.org onion: http://2gzyxa5ihm7nsggfxnu52rck2vv4rvmdlkiu3zzui5du4xyclen53wid.onion/ + - [ ] Onion service errors + - [ ] invalid onion: http://invalid.onion + - [ ] onion offline: http://wfdn32ds656ycma5gvrh7duvdvxbg2ygzr3no3ijsya25qm6nnko4iqd.onion/ + - [ ] onion baddssl: https://gitlab.torproject.org/tpo/applications/team/-/wikis/Development-Inf… + - **TODO** all the identity block states + - **TODO** client auth +- [ ] **TODO**: .securedrop.tor.onion +- [ ] **TODO**: onion-service alt-svc +- [ ] HTML5 Video: https://tekeye.uk/html/html5-video-test-page + - [ ] MPEG4 + - [ ] WebM + - [ ] Ogg +- [ ] WebSocket Test: https://websocketking.com/ + +## External Components +- [ ] NoScript + - [ ] Latest Version: https://addons.mozilla.org/en-US/firefox/addon/noscript/ + - [ ] Not removable from about:addons + - [ ] Tests: https://test-data.tbb.torproject.org/test-data/noscript/ + - **TODO**: fix test pages +``` + +</details> ===================================== .gitlab/issue_templates/QA - Desktop.md ===================================== @@ -0,0 +1,160 @@ +Manual QA test check-list for major desktop releases. Please copy/paste form into your own comment, fill out relevant info and run through the checklist! + +<details> + <summary>Tor Browser Desktop QA Checklist</summary> + +```markdown +# System Information + +- Version: Tor Browser XXX +- OS: Windows|macOS|Linux YYY +- CPU Architecture: +- Profile: New|Old + +# Features + +## Base functionality +- [ ] Tor Browser launches successfully +- [ ] Connects to the Tor network + - [ ] Homepage loads: + - [ ] about:tor + - [ ] about:blank + - [ ] custom +- [ ] Tor Browser loads URLs passed by command-line after bootstrapped +- [ ] Localisation (Browser chrome) + - [ ] Language notification/message bar + - [ ] Spoof English + - [ ] Check especially the recently added strings +- [ ] UI Customisations: + - [ ] New Identity + - [ ] Toolbar icon + - [ ] Hamburger menu + - [ ] File menu + - [ ] New circuit for this site + - [ ] Circuit display + - [ ] Hamburger menu + - [ ] File menu + - [ ] No Firefox extras (Sync, Pocket, Report broken site, Tracking protection, etc) + - [ ] No unified extensions button (puzzle piece) + - [ ] NoScript button hidden + - [ ] Context Menu Populated +- [ ] Fingerprinting resistance: https://arkenfox.github.io/TZP/tzp.html +- [ ] Security level (Standard, Safer, Safest) + - Displays in: + - toolbar icon + - toolbar panel + - about:preferences#privacy + - [ ] On switch, each UI element is updated + - [ ] On custom config (toggle `svg.disabled`) + - [ ] each UI element displays warning + - [ ] `Restore defaults` reverts custom prefs + - **TODO**: test pages verifying correct behaviour +- [ ] New identity +- [ ] Betterboxing + - [ ] Reuse last window size + - [ ] Content alignment + - [ ] No letterboxing: + - [ ]empty tabs or privileged pages (eg: about:blank, about:about) + - [ ] full-screen video + - [ ] pdf viewer + - [ ] reader-mode +- [ ] Downloads Warning + - [ ] Downloads toolbar panel + - [ ] about:downloads + - [ ] Library window (<kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>o</kbd>) +- [ ] Drag and Drop protections: + - [ ] Dragging a link from a tab to another tab in the same window works + - [ ] Dragging a link from a tab to another tab in a separate window works + - [ ] Dragging a link into the library creates a bookmark + - [ ] Dragging a link from Tor Browser to Firefox doesn't work + - [ ] Dragging a link from Firefox to Tor Browser works + - [ ] Dragging a link from Tor Browser to another app (e.g., text editor) doesn't work + - [ ] Repeat with page favicon + +## Proxy safety +- [ ] Tor exit test: https://check.torproject.org +- [ ] Circuit isolation + - Following websites should all report different IP addresses + - https://ifconfig.io + - https://myip.wtf + - https://wtfismyip.com +- [ ] DNS leaks: https://dnsleaktest.com +- [ ] Circuit Display + - [ ] Website => circuit + - [ ] Remote PDF => circuit + - [ ] Remote image => circuit + - [ ] .onion Website => circuit with onion-service relays + - [ ] .tor.onion Website => circuit with onion-service relays, link to true onion address + - http://ft.securedrop.tor.onion + - [ ] Website in reader mode => circuit (same as w/o reader mode) + - [ ] Local image => no circuit + - [ ] Local SVG with remote content => catch-all circuit, but not shown + - [ ] Local PDF => no circuit + - [ ] Local HTML `file://` with local resources => no circuit + - [ ] Local HTML `file://` with remote resources => catch-all circuit, but not shown + +## Connectivity + Anti-Censorship +- [ ] Tor daemon config by environment variables + - https://gitlab.torproject.org/tpo/applications/team/-/wikis/Environment-var… +- [ ] Internet Test ( about:preferences#connection ) + - [ ] Fails when offline + - [ ] Succeeds when online +- [ ] Bridges: + - Bootstrap + - Browse: https://check.torproject.org + - Bridge node in circuit-display + - Bridge cards + - Disable + - Remove + - [ ] Default bridges: + - [ ] Removable as a group, not editable + - [ ] obfs4 + - [ ] meek + - [ ] snowflake + - [ ] User provided bridges: + - [ ] Removable and editable individually + - [ ] obfs4 from https://bridges.torproject.org + - [ ] webtunnel from https://bridges.torproject.org + - [ ] conjure from [gitlab](https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transpo… + - [ ] Request bridges... + - [ ] Removable as a group, but not editable + - [ ] Succeeds when bootstrapped + - [ ] Succeeds when not bootstrapped + - **TODO**: Lox +- [ ] Connect Assist + - Useful pref: `torbrowser.debug.censorship_level` + - [ ] Auto-bootstrap updates Tor connection settings on success + - [ ] Auto-bootstrap restore previous Tor connection settings on failure + +## Web Browsing +- [ ] HTTPS-Only: http://http.badssl.com +- [ ] Crypto-currency warning on http website + - **TODO**: we should provide an example page +- [ ] .onion: + - [ ] torproject.org onion: http://2gzyxa5ihm7nsggfxnu52rck2vv4rvmdlkiu3zzui5du4xyclen53wid.onion/ + - [ ] Onion-Location pill + - [ ] Client authentication + - You can create an ephemeral client-auth onion-service using [onion share](https://onionshare.org) + - [ ] Onion service errors + - [ ] invalid onion: http://invalid.onion + - [ ] onion offline: http://wfdn32ds656ycma5gvrh7duvdvxbg2ygzr3no3ijsya25qm6nnko4iqd.onion/ + - [ ] onion baddssl: https://gitlab.torproject.org/tpo/applications/team/-/wikis/Development-Inf… + - **TODO** all the identity block states + - **TODO** client auth +- [ ] **TODO**: .securedrop.tor.onion +- [ ] **TODO**: onion-service alt-svc +- [ ] HTML5 Video: https://tekeye.uk/html/html5-video-test-page + - [ ] MPEG4 + - [ ] WebM + - [ ] Ogg +- [ ] WebSocket Test: https://websocketking.com/ + +## External Components +- [ ] NoScript + - [ ] Latest Version: https://addons.mozilla.org/en-US/firefox/addon/noscript/ + - [ ] Not removable from about:addons + - [ ] Tests: https://test-data.tbb.torproject.org/test-data/noscript/ + - **TODO**: fix test pages +``` + +</details> View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/5921a34… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/5921a34… 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.1.0esr-14.0-1] 2 commits: fixup! Bug 31286: Implementation of bridge, proxy, and firewall settings in...
by Pier Angelo Vendrame (@pierov) 07 Aug '24

07 Aug '24
Pier Angelo Vendrame pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: f6fd10b0 by Henry Wilkes at 2024-08-07T13:54:06+01:00 fixup! Bug 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#connection Bug 42662: Revert changes to main.inc.xhtml and main.js that remove the firefox connection settings. - - - - - 9a85d775 by Henry Wilkes at 2024-08-07T13:59:40+01:00 fixup! Bug 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#connection Bug 42662: Use data-hidden-from-search to hide the firefox network settings. - - - - - 2 changed files: - browser/components/preferences/main.inc.xhtml - browser/components/preferences/main.js Changes: ===================================== browser/components/preferences/main.inc.xhtml ===================================== @@ -797,4 +797,54 @@ /> </hbox> </groupbox> + +<hbox id="networkProxyCategory" + class="subcategory" + hidden="true" + data-hidden-from-search="true" + data-category="paneGeneral"> + <html:h1 data-l10n-id="network-settings-title"/> +</hbox> + +<!-- Network Settings--> +<groupbox id="connectionGroup" data-category="paneGeneral" data-hidden-from-search="true" hidden="true"> + <label class="search-header" hidden="true"><html:h2 data-l10n-id="network-settings-title"/></label> + + <hbox align="center" + data-subcategory="netsettings"> + <description flex="1" control="connectionSettings"> + <html:span id="connectionSettingsDescription"/> + <html:a is="moz-support-link" + data-l10n-id="network-proxy-connection-learn-more" + support-page="prefs-connection-settings" + /> + </description> + <separator orient="vertical"/> + <button id="connectionSettings" + is="highlightable-button" + class="accessory-button" + data-l10n-id="network-proxy-connection-settings" + search-l10n-ids=" + connection-window2.title, + connection-proxy-option-no.label, + connection-proxy-option-auto.label, + connection-proxy-option-system.label, + connection-proxy-option-wpad.label, + connection-proxy-option-manual.label, + connection-proxy-http, + connection-proxy-https, + connection-proxy-http-port, + connection-proxy-socks, + connection-proxy-socks4, + connection-proxy-socks5, + connection-proxy-noproxy, + connection-proxy-noproxy-desc, + connection-proxy-https-sharing.label, + connection-proxy-autotype.label, + connection-proxy-reload.label, + connection-proxy-autologin-checkbox.label, + connection-proxy-socks-remote-dns.label, + " /> + </hbox> +</groupbox> </html:template> ===================================== browser/components/preferences/main.js ===================================== @@ -313,6 +313,8 @@ var gMainPane = { }); this.updatePerformanceSettingsBox({ duringChangeEvent: false }); this.displayUseSystemLocale(); + this.updateProxySettingsUI(); + initializeProxyUI(gMainPane); if (Services.prefs.getBoolPref("intl.multilingual.enabled")) { gMainPane.initPrimaryBrowserLanguageUI(); @@ -515,6 +517,11 @@ var gMainPane = { "change", gMainPane.updateHardwareAcceleration.bind(gMainPane) ); + setEventListener( + "connectionSettings", + "command", + gMainPane.showConnections + ); setEventListener( "browserContainersCheckbox", "command", View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/bbeec7… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/bbeec7… 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] Update URL for 14.0a1 macos mar files
by boklm (@boklm) 07 Aug '24

07 Aug '24
boklm pushed to branch main at The Tor Project / Applications / Tor Browser update responses Commits: 866d5d59 by Nicolas Vigier at 2024-08-07T14:41:37+02:00 Update URL for 14.0a1 macos mar files Change the URLs because the old files are being cached on cdn.torproject.org. - - - - - 4 changed files: - update_3/alpha/13.5a7-14.0a1-macos-ALL.xml - update_3/alpha/13.5a8-14.0a1-macos-ALL.xml - update_3/alpha/13.5a9-14.0a1-macos-ALL.xml - update_3/alpha/14.0a1-macos-ALL.xml Changes: ===================================== update_3/alpha/13.5a7-14.0a1-macos-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_…" hashFunction="SHA512" hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377" size="156864833" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos--13.5a7…" hashFunction="SHA512" hashValue="02ac9e16cf8590b95bc7b4296a7c8a21e5af99863bb03a7b6c24b7a90a73c9b227e9486336780b0d49461e72ac541bbf7cdcceb8c8a8330a4de5ea0cc33b1b42" size="116504145" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1-macos/tor-browser-macos-1…" hashFunction="SHA512" hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377" size="156864833" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1-macos/tor-browser-macos--…" hashFunction="SHA512" hashValue="02ac9e16cf8590b95bc7b4296a7c8a21e5af99863bb03a7b6c24b7a90a73c9b227e9486336780b0d49461e72ac541bbf7cdcceb8c8a8330a4de5ea0cc33b1b42" size="116504145" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a8-14.0a1-macos-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_…" hashFunction="SHA512" hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377" size="156864833" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos--13.5a8…" hashFunction="SHA512" hashValue="eb9ea3a26bc52c2efc441a06e9e4a750f147254f9e3130a4015785288c6ade055f3c0739d3563587ac002fe5184cb0566a91b960161fea94e3939db706bcf5ba" size="113998742" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1-macos/tor-browser-macos-1…" hashFunction="SHA512" hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377" size="156864833" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1-macos/tor-browser-macos--…" hashFunction="SHA512" hashValue="eb9ea3a26bc52c2efc441a06e9e4a750f147254f9e3130a4015785288c6ade055f3c0739d3563587ac002fe5184cb0566a91b960161fea94e3939db706bcf5ba" size="113998742" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a9-14.0a1-macos-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_…" hashFunction="SHA512" hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377" size="156864833" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos--13.5a9…" hashFunction="SHA512" hashValue="2f05fdd0a532de4848baf55f9624ac4040258462246a2024380ea4b8c70e83c23f9521832ac39328dff1cbcc31cd16c0711e14ecc857dbecdb62f4c6fd8fa5c3" size="113700777" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1-macos/tor-browser-macos-1…" hashFunction="SHA512" hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377" size="156864833" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1-macos/tor-browser-macos--…" hashFunction="SHA512" hashValue="2f05fdd0a532de4848baf55f9624ac4040258462246a2024380ea4b8c70e83c23f9521832ac39328dff1cbcc31cd16c0711e14ecc857dbecdb62f4c6fd8fa5c3" size="113700777" type="partial"></patch></update></updates> ===================================== update_3/alpha/14.0a1-macos-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_…" hashFunction="SHA512" hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377" size="156864833" type="complete"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1-macos/tor-browser-macos-1…" hashFunction="SHA512" hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377" size="156864833" type="complete"></patch></update></updates> 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][tor-browser-128.1.0esr-14.0-1] fixup! Add CI for Tor Browser
by Pier Angelo Vendrame (@pierov) 07 Aug '24

07 Aug '24
Pier Angelo Vendrame pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: bbeec728 by Henry Wilkes at 2024-08-07T12:06:58+01:00 fixup! Add CI for Tor Browser Bug 42759: Remove localization file names that were removed in 13.5. - - - - - 1 changed file: - .gitlab/ci/update-translations.yml Changes: ===================================== .gitlab/ci/update-translations.yml ===================================== @@ -18,22 +18,14 @@ combine-en-US-translations: PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" TRANSLATION_FILES: ' tor-browser:tor-browser.ftl - tor-browser:aboutDialog.dtd tor-browser:aboutTBUpdate.dtd - tor-browser:aboutTor.dtd tor-browser:torbutton.dtd - tor-browser:browserOnboarding.properties - tor-browser:cryptoSafetyPrompt.properties - tor-browser:onboarding.properties tor-browser:onionLocation.properties - tor-browser:rulesets.properties tor-browser:settings.properties tor-browser:torbutton.properties tor-browser:torConnect.properties tor-browser:torlauncher.properties base-browser:base-browser.ftl - base-browser:newIdentity.properties - base-browser:securityLevel.properties ' cache: paths: View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/bbeec72… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/bbeec72… 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.0a1
by boklm (@boklm) 07 Aug '24

07 Aug '24
boklm pushed to branch main at The Tor Project / Applications / mullvad-browser-update-responses Commits: 3fb01f01 by Nicolas Vigier at 2024-08-07T14:05:03+02:00 alpha: new version, 14.0a1 - - - - - 4 changed files: - update_1/alpha/13.5a7-14.0a1-macos-ALL.xml - update_1/alpha/13.5a8-14.0a1-macos-ALL.xml - update_1/alpha/13.5a9-14.0a1-macos-ALL.xml - update_1/alpha/14.0a1-macos-ALL.xml Changes: ===================================== update_1/alpha/13.5a7-14.0a1-macos-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos-14.0a1_ALL.mar" hashFunction="SHA512" hashValue="898ac7db9d918e655fbdf39b8f3df8864f558240dc9c70744a0e48a75df4d382b0e007caa30882ec9aa009a411009fd849204b5f990eaeaa7dec47d7b97699f7" size="128840182" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos--13.5a7-14.0a1…" hashFunction="SHA512" hashValue="99281166bef9ad6f9baed14e92e264b8851c4e518a91dca1faf6855420927a4f279cb0028d4a63eddcb3b990bb9729bd586f22850f52fe446bb9f72a205c190d" size="91223005" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos-14.0a1_ALL.mar" hashFunction="SHA512" hashValue="b30f00826010fe1913e885b4abb05ecf8bc45c5dc46c5e9fc143df5d715d3803c4d27de11166df6f94f5d4a780058a85d53306caf90a3928ceef868a4d000f99" size="128837886" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos--13.5a7-14.0a1…" hashFunction="SHA512" hashValue="175b2c0171322cd1d8737a3ca5316750b5a6b5b18c97e5322c296611d1ba5dc0e563236893d1159c655297b084e76ef25ffb9735dd870775637babfcafde4b90" size="103691123" type="partial"></patch></update></updates> ===================================== update_1/alpha/13.5a8-14.0a1-macos-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos-14.0a1_ALL.mar" hashFunction="SHA512" hashValue="898ac7db9d918e655fbdf39b8f3df8864f558240dc9c70744a0e48a75df4d382b0e007caa30882ec9aa009a411009fd849204b5f990eaeaa7dec47d7b97699f7" size="128840182" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos--13.5a8-14.0a1…" hashFunction="SHA512" hashValue="ec8142025f31086993af14379f8d3dcf3a5768fda89b5ec86b90bc65de0f059b6efae3199a46b0d3c1d4866160294b5c18d76d77680022f0a046188c1f395603" size="89601570" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos-14.0a1_ALL.mar" hashFunction="SHA512" hashValue="b30f00826010fe1913e885b4abb05ecf8bc45c5dc46c5e9fc143df5d715d3803c4d27de11166df6f94f5d4a780058a85d53306caf90a3928ceef868a4d000f99" size="128837886" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos--13.5a8-14.0a1…" hashFunction="SHA512" hashValue="5e03c944bea45d701d45d99e13466e67a5fdc81d1960d1df4ac4041f18d567ee2768fefa5e63530a764b09b8da66b4620304aea0a410ebc43b753ce9420bd373" size="102228020" type="partial"></patch></update></updates> ===================================== update_1/alpha/13.5a9-14.0a1-macos-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos-14.0a1_ALL.mar" hashFunction="SHA512" hashValue="898ac7db9d918e655fbdf39b8f3df8864f558240dc9c70744a0e48a75df4d382b0e007caa30882ec9aa009a411009fd849204b5f990eaeaa7dec47d7b97699f7" size="128840182" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos--13.5a9-14.0a1…" hashFunction="SHA512" hashValue="9d5ee6d9515c62d14ff7155e014a3b7a371469a55f9032a783f7ea0a9fcb15cee10c4c968da411990fc51943c7a9cc0d16598844c08b4315570c62565add92bb" size="87239905" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos-14.0a1_ALL.mar" hashFunction="SHA512" hashValue="b30f00826010fe1913e885b4abb05ecf8bc45c5dc46c5e9fc143df5d715d3803c4d27de11166df6f94f5d4a780058a85d53306caf90a3928ceef868a4d000f99" size="128837886" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos--13.5a9-14.0a1…" hashFunction="SHA512" hashValue="d698eafdeafefcabd5f9f9367e12d3e7749c03f41cdb21e8121279ab2ca985ceb307478c308c242074e8bf2cbaef275b03cbbf7750a5e5f17bcc3be686ac6126" size="100242935" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a1-macos-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos-14.0a1_ALL.mar" hashFunction="SHA512" hashValue="898ac7db9d918e655fbdf39b8f3df8864f558240dc9c70744a0e48a75df4d382b0e007caa30882ec9aa009a411009fd849204b5f990eaeaa7dec47d7b97699f7" size="128840182" type="complete"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a1/mullvad-browser-macos-14.0a1_ALL.mar" hashFunction="SHA512" hashValue="b30f00826010fe1913e885b4abb05ecf8bc45c5dc46c5e9fc143df5d715d3803c4d27de11166df6f94f5d4a780058a85d53306caf90a3928ceef868a4d000f99" size="128837886" type="complete"></patch></update></updates> 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.0a1
by boklm (@boklm) 07 Aug '24

07 Aug '24
boklm pushed to branch main at The Tor Project / Applications / Tor Browser update responses Commits: ceea07e4 by Nicolas Vigier at 2024-08-07T12:58:25+02:00 alpha: new version, 14.0a1 - - - - - 20 changed files: - update_3/alpha/13.5a7-14.0a1-linux-i686-ALL.xml - update_3/alpha/13.5a7-14.0a1-linux-x86_64-ALL.xml - update_3/alpha/13.5a7-14.0a1-macos-ALL.xml - update_3/alpha/13.5a7-14.0a1-windows-i686-ALL.xml - update_3/alpha/13.5a7-14.0a1-windows-x86_64-ALL.xml - update_3/alpha/13.5a8-14.0a1-linux-i686-ALL.xml - update_3/alpha/13.5a8-14.0a1-linux-x86_64-ALL.xml - update_3/alpha/13.5a8-14.0a1-macos-ALL.xml - update_3/alpha/13.5a8-14.0a1-windows-i686-ALL.xml - update_3/alpha/13.5a8-14.0a1-windows-x86_64-ALL.xml - update_3/alpha/13.5a9-14.0a1-linux-i686-ALL.xml - update_3/alpha/13.5a9-14.0a1-linux-x86_64-ALL.xml - update_3/alpha/13.5a9-14.0a1-macos-ALL.xml - update_3/alpha/13.5a9-14.0a1-windows-i686-ALL.xml - update_3/alpha/13.5a9-14.0a1-windows-x86_64-ALL.xml - update_3/alpha/14.0a1-linux-i686-ALL.xml - update_3/alpha/14.0a1-linux-x86_64-ALL.xml - update_3/alpha/14.0a1-macos-ALL.xml - update_3/alpha/14.0a1-windows-i686-ALL.xml - update_3/alpha/14.0a1-windows-x86_64-ALL.xml Changes: ===================================== update_3/alpha/13.5a7-14.0a1-linux-i686-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686-14…" hashFunction="SHA512" hashValue="6434a6160f6ca064ef9908e7f98583ae11c7f76272e61b444abcbc459e6f17b5cf0a7a4fb68c3d36b1baa14a65aa2d90f46c6fc2a85858f10ab69cbb3210885e" size="129202072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686--1…" hashFunction="SHA512" hashValue="ed2af5d95b8f1484782d2f035ed4c0f8414d43d578f3e674dbc89d4b0ee7c8d81d0598f9c191f629e472949c94ece65cfd71e4e0c864a3d2560d79fc3c0b7587" size="68922045" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686-14…" hashFunction="SHA512" hashValue="6434a6160f6ca064ef9908e7f98583ae11c7f76272e61b444abcbc459e6f17b5cf0a7a4fb68c3d36b1baa14a65aa2d90f46c6fc2a85858f10ab69cbb3210885e" size="129202072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686--1…" hashFunction="SHA512" hashValue="ed2af5d95b8f1484782d2f035ed4c0f8414d43d578f3e674dbc89d4b0ee7c8d81d0598f9c191f629e472949c94ece65cfd71e4e0c864a3d2560d79fc3c0b7587" size="68922045" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a7-14.0a1-linux-x86_64-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="d49d0365169de60e304b0eb81c134c2e33ec36c8a3ac69b476dd3e09483a8fb7b7e912c475f5224253c0bba981ff3e9262317d084b9a1d2d177bf89fa491ce67" size="128304072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="68b678e5b7616ffe77d4fbf614c0ba8ad9c8c81126cd725d2e773da405e5c223614a349d98d8c09a66a589789498d682e920e27c8e7a4dbfc5fe750afa477399" size="65389017" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="d49d0365169de60e304b0eb81c134c2e33ec36c8a3ac69b476dd3e09483a8fb7b7e912c475f5224253c0bba981ff3e9262317d084b9a1d2d177bf89fa491ce67" size="128304072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="68b678e5b7616ffe77d4fbf614c0ba8ad9c8c81126cd725d2e773da405e5c223614a349d98d8c09a66a589789498d682e920e27c8e7a4dbfc5fe750afa477399" size="65389017" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a7-14.0a1-macos-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_…" hashFunction="SHA512" hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377" size="156864833" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos--13.5a7…" hashFunction="SHA512" hashValue="02ac9e16cf8590b95bc7b4296a7c8a21e5af99863bb03a7b6c24b7a90a73c9b227e9486336780b0d49461e72ac541bbf7cdcceb8c8a8330a4de5ea0cc33b1b42" size="116504145" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_…" hashFunction="SHA512" hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377" size="156864833" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos--13.5a7…" hashFunction="SHA512" hashValue="02ac9e16cf8590b95bc7b4296a7c8a21e5af99863bb03a7b6c24b7a90a73c9b227e9486336780b0d49461e72ac541bbf7cdcceb8c8a8330a4de5ea0cc33b1b42" size="116504145" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a7-14.0a1-windows-i686-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="6d4ecea9050aeeec1fed4072cbfb40d558c9e62c59cbf8a0b64a2f7817319cf32dd17fe69615ac820624a61532abcda34a6d9ca540eae2b68d2418a9086b8f2f" size="116987456" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="cff9b64b2e3ee55f750e2a13698ddfc33acfbbcd5ee7b77bfbdca5f8287b3a2017e91a371d216206953c03f339475fb19d485d581cf8e12b018dfa9836ea517d" size="74932755" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="6d4ecea9050aeeec1fed4072cbfb40d558c9e62c59cbf8a0b64a2f7817319cf32dd17fe69615ac820624a61532abcda34a6d9ca540eae2b68d2418a9086b8f2f" size="116987456" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="cff9b64b2e3ee55f750e2a13698ddfc33acfbbcd5ee7b77bfbdca5f8287b3a2017e91a371d216206953c03f339475fb19d485d581cf8e12b018dfa9836ea517d" size="74932755" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a7-14.0a1-windows-x86_64-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="ef9d560faa09bb8f6a06ed7e617de17e802d11efc18016704e0b4dc2f6f54cf8286a497a25f046f3b80b904630682125c1e7d8f2ed2e261e0aecae7265818bfd" size="117393248" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="e1d4bae74e59df0650bbbff8c05ec8346e3febbc6947637ba279f6bc7a097ecc65380294472e1cd20234cf7678b4a89031ba21e5c28b6f0dab97bed9c4936939" size="73293023" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="ef9d560faa09bb8f6a06ed7e617de17e802d11efc18016704e0b4dc2f6f54cf8286a497a25f046f3b80b904630682125c1e7d8f2ed2e261e0aecae7265818bfd" size="117393248" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="e1d4bae74e59df0650bbbff8c05ec8346e3febbc6947637ba279f6bc7a097ecc65380294472e1cd20234cf7678b4a89031ba21e5c28b6f0dab97bed9c4936939" size="73293023" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a8-14.0a1-linux-i686-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686-14…" hashFunction="SHA512" hashValue="6434a6160f6ca064ef9908e7f98583ae11c7f76272e61b444abcbc459e6f17b5cf0a7a4fb68c3d36b1baa14a65aa2d90f46c6fc2a85858f10ab69cbb3210885e" size="129202072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686--1…" hashFunction="SHA512" hashValue="4f00777a7ba8d8556b611c2dabb413abfbcbfead9e1d176c38faff0bfbe881a92949c3dcfabdfe19822d6c68abbe2b040ebabe65745fca73ad420dce58f98312" size="66330953" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686-14…" hashFunction="SHA512" hashValue="6434a6160f6ca064ef9908e7f98583ae11c7f76272e61b444abcbc459e6f17b5cf0a7a4fb68c3d36b1baa14a65aa2d90f46c6fc2a85858f10ab69cbb3210885e" size="129202072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686--1…" hashFunction="SHA512" hashValue="4f00777a7ba8d8556b611c2dabb413abfbcbfead9e1d176c38faff0bfbe881a92949c3dcfabdfe19822d6c68abbe2b040ebabe65745fca73ad420dce58f98312" size="66330953" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a8-14.0a1-linux-x86_64-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="d49d0365169de60e304b0eb81c134c2e33ec36c8a3ac69b476dd3e09483a8fb7b7e912c475f5224253c0bba981ff3e9262317d084b9a1d2d177bf89fa491ce67" size="128304072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="d05234acf32ef51746654513de3c1c10b38bf2a58ee35fb7e9786acaf52afd06e46b28c4b9640ae906ded5de2b21d74e0b6ee1be0484208f05c5dbaad3ebc8e9" size="62769841" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="d49d0365169de60e304b0eb81c134c2e33ec36c8a3ac69b476dd3e09483a8fb7b7e912c475f5224253c0bba981ff3e9262317d084b9a1d2d177bf89fa491ce67" size="128304072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="d05234acf32ef51746654513de3c1c10b38bf2a58ee35fb7e9786acaf52afd06e46b28c4b9640ae906ded5de2b21d74e0b6ee1be0484208f05c5dbaad3ebc8e9" size="62769841" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a8-14.0a1-macos-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_…" hashFunction="SHA512" hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377" size="156864833" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos--13.5a8…" hashFunction="SHA512" hashValue="eb9ea3a26bc52c2efc441a06e9e4a750f147254f9e3130a4015785288c6ade055f3c0739d3563587ac002fe5184cb0566a91b960161fea94e3939db706bcf5ba" size="113998742" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_…" hashFunction="SHA512" hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377" size="156864833" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos--13.5a8…" hashFunction="SHA512" hashValue="eb9ea3a26bc52c2efc441a06e9e4a750f147254f9e3130a4015785288c6ade055f3c0739d3563587ac002fe5184cb0566a91b960161fea94e3939db706bcf5ba" size="113998742" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a8-14.0a1-windows-i686-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="6d4ecea9050aeeec1fed4072cbfb40d558c9e62c59cbf8a0b64a2f7817319cf32dd17fe69615ac820624a61532abcda34a6d9ca540eae2b68d2418a9086b8f2f" size="116987456" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="9f47ce5c2219c6d8f8f0d9361f64fb7a5a49266c7d47e5fac549b110040b14b1cc49c307686708001474b959298cad7100b8285ecd0c45528ebc81ffb4ef1d52" size="72328515" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="6d4ecea9050aeeec1fed4072cbfb40d558c9e62c59cbf8a0b64a2f7817319cf32dd17fe69615ac820624a61532abcda34a6d9ca540eae2b68d2418a9086b8f2f" size="116987456" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="9f47ce5c2219c6d8f8f0d9361f64fb7a5a49266c7d47e5fac549b110040b14b1cc49c307686708001474b959298cad7100b8285ecd0c45528ebc81ffb4ef1d52" size="72328515" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a8-14.0a1-windows-x86_64-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="ef9d560faa09bb8f6a06ed7e617de17e802d11efc18016704e0b4dc2f6f54cf8286a497a25f046f3b80b904630682125c1e7d8f2ed2e261e0aecae7265818bfd" size="117393248" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="6d01af0cd534623349d9774cab65b1a91f08bdf16a13924f8980d43266d61dce1270096e3dfe10685d93b463f07391c1ec92347bae7b768a48a89b6df8fb4867" size="70700083" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="ef9d560faa09bb8f6a06ed7e617de17e802d11efc18016704e0b4dc2f6f54cf8286a497a25f046f3b80b904630682125c1e7d8f2ed2e261e0aecae7265818bfd" size="117393248" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="6d01af0cd534623349d9774cab65b1a91f08bdf16a13924f8980d43266d61dce1270096e3dfe10685d93b463f07391c1ec92347bae7b768a48a89b6df8fb4867" size="70700083" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a9-14.0a1-linux-i686-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686-14…" hashFunction="SHA512" hashValue="6434a6160f6ca064ef9908e7f98583ae11c7f76272e61b444abcbc459e6f17b5cf0a7a4fb68c3d36b1baa14a65aa2d90f46c6fc2a85858f10ab69cbb3210885e" size="129202072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686--1…" hashFunction="SHA512" hashValue="aa2ef9bf853c2be27410036947e291b7c19604147a3fc53174eaaf987f18151a92470e5b45d1cad53a1d662f834c5b7b908bc6f5390adc7fc27c2d7bd42a66c3" size="65598050" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686-14…" hashFunction="SHA512" hashValue="6434a6160f6ca064ef9908e7f98583ae11c7f76272e61b444abcbc459e6f17b5cf0a7a4fb68c3d36b1baa14a65aa2d90f46c6fc2a85858f10ab69cbb3210885e" size="129202072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686--1…" hashFunction="SHA512" hashValue="aa2ef9bf853c2be27410036947e291b7c19604147a3fc53174eaaf987f18151a92470e5b45d1cad53a1d662f834c5b7b908bc6f5390adc7fc27c2d7bd42a66c3" size="65598050" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a9-14.0a1-linux-x86_64-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="d49d0365169de60e304b0eb81c134c2e33ec36c8a3ac69b476dd3e09483a8fb7b7e912c475f5224253c0bba981ff3e9262317d084b9a1d2d177bf89fa491ce67" size="128304072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="f4314ce018dfe1428ac3037918a792625e6d350f38783ecc4498c77865309ecb0383ffcdb9a3aeda0ab0b5407ba704461543ed66aa4d7ed7efc83eb39a6cbe9e" size="62068026" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="d49d0365169de60e304b0eb81c134c2e33ec36c8a3ac69b476dd3e09483a8fb7b7e912c475f5224253c0bba981ff3e9262317d084b9a1d2d177bf89fa491ce67" size="128304072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="f4314ce018dfe1428ac3037918a792625e6d350f38783ecc4498c77865309ecb0383ffcdb9a3aeda0ab0b5407ba704461543ed66aa4d7ed7efc83eb39a6cbe9e" size="62068026" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a9-14.0a1-macos-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_…" hashFunction="SHA512" hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377" size="156864833" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos--13.5a9…" hashFunction="SHA512" hashValue="2f05fdd0a532de4848baf55f9624ac4040258462246a2024380ea4b8c70e83c23f9521832ac39328dff1cbcc31cd16c0711e14ecc857dbecdb62f4c6fd8fa5c3" size="113700777" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_…" hashFunction="SHA512" hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377" size="156864833" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos--13.5a9…" hashFunction="SHA512" hashValue="2f05fdd0a532de4848baf55f9624ac4040258462246a2024380ea4b8c70e83c23f9521832ac39328dff1cbcc31cd16c0711e14ecc857dbecdb62f4c6fd8fa5c3" size="113700777" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a9-14.0a1-windows-i686-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="6d4ecea9050aeeec1fed4072cbfb40d558c9e62c59cbf8a0b64a2f7817319cf32dd17fe69615ac820624a61532abcda34a6d9ca540eae2b68d2418a9086b8f2f" size="116987456" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="3336270de292d114260290e16c66c471971fbcb3981186f956a40a70d6abdcc581f1da936edd5b5ac30cfa1e3d6a75a743f4c75fbf8e797ff0a22ebbbf26f012" size="71863098" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="6d4ecea9050aeeec1fed4072cbfb40d558c9e62c59cbf8a0b64a2f7817319cf32dd17fe69615ac820624a61532abcda34a6d9ca540eae2b68d2418a9086b8f2f" size="116987456" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="3336270de292d114260290e16c66c471971fbcb3981186f956a40a70d6abdcc581f1da936edd5b5ac30cfa1e3d6a75a743f4c75fbf8e797ff0a22ebbbf26f012" size="71863098" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a9-14.0a1-windows-x86_64-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="ef9d560faa09bb8f6a06ed7e617de17e802d11efc18016704e0b4dc2f6f54cf8286a497a25f046f3b80b904630682125c1e7d8f2ed2e261e0aecae7265818bfd" size="117393248" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="957576766c9100e6f73dbcd6ad3a3a26977b5fb4184c4e09b1e90e2168cb8e2f12acaae884c94e512a94d023dc149cdd8b8d4b52d284d5e0c846a4311dfad5ca" size="70230662" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="ef9d560faa09bb8f6a06ed7e617de17e802d11efc18016704e0b4dc2f6f54cf8286a497a25f046f3b80b904630682125c1e7d8f2ed2e261e0aecae7265818bfd" size="117393248" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="957576766c9100e6f73dbcd6ad3a3a26977b5fb4184c4e09b1e90e2168cb8e2f12acaae884c94e512a94d023dc149cdd8b8d4b52d284d5e0c846a4311dfad5ca" size="70230662" type="partial"></patch></update></updates> ===================================== update_3/alpha/14.0a1-linux-i686-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686-14…" hashFunction="SHA512" hashValue="6434a6160f6ca064ef9908e7f98583ae11c7f76272e61b444abcbc459e6f17b5cf0a7a4fb68c3d36b1baa14a65aa2d90f46c6fc2a85858f10ab69cbb3210885e" size="129202072" type="complete"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686-14…" hashFunction="SHA512" hashValue="6434a6160f6ca064ef9908e7f98583ae11c7f76272e61b444abcbc459e6f17b5cf0a7a4fb68c3d36b1baa14a65aa2d90f46c6fc2a85858f10ab69cbb3210885e" size="129202072" type="complete"></patch></update></updates> ===================================== update_3/alpha/14.0a1-linux-x86_64-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="d49d0365169de60e304b0eb81c134c2e33ec36c8a3ac69b476dd3e09483a8fb7b7e912c475f5224253c0bba981ff3e9262317d084b9a1d2d177bf89fa491ce67" size="128304072" type="complete"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="d49d0365169de60e304b0eb81c134c2e33ec36c8a3ac69b476dd3e09483a8fb7b7e912c475f5224253c0bba981ff3e9262317d084b9a1d2d177bf89fa491ce67" size="128304072" type="complete"></patch></update></updates> ===================================== update_3/alpha/14.0a1-macos-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_…" hashFunction="SHA512" hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377" size="156864833" type="complete"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_…" hashFunction="SHA512" hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377" size="156864833" type="complete"></patch></update></updates> ===================================== update_3/alpha/14.0a1-windows-i686-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="6d4ecea9050aeeec1fed4072cbfb40d558c9e62c59cbf8a0b64a2f7817319cf32dd17fe69615ac820624a61532abcda34a6d9ca540eae2b68d2418a9086b8f2f" size="116987456" type="complete"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="6d4ecea9050aeeec1fed4072cbfb40d558c9e62c59cbf8a0b64a2f7817319cf32dd17fe69615ac820624a61532abcda34a6d9ca540eae2b68d2418a9086b8f2f" size="116987456" type="complete"></patch></update></updates> ===================================== update_3/alpha/14.0a1-windows-x86_64-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="ef9d560faa09bb8f6a06ed7e617de17e802d11efc18016704e0b4dc2f6f54cf8286a497a25f046f3b80b904630682125c1e7d8f2ed2e261e0aecae7265818bfd" size="117393248" type="complete"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="ef9d560faa09bb8f6a06ed7e617de17e802d11efc18016704e0b4dc2f6f54cf8286a497a25f046f3b80b904630682125c1e7d8f2ed2e261e0aecae7265818bfd" size="117393248" type="complete"></patch></update></updates> View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-update-responses][main] alpha: new version, 14.0a1
by boklm (@boklm) 07 Aug '24

07 Aug '24
boklm pushed to branch main at The Tor Project / Applications / Tor Browser update responses Commits: cd7b0a08 by Nicolas Vigier at 2024-08-07T12:51:30+02:00 alpha: new version, 14.0a1 - - - - - 21 changed files: - update_3/alpha/.htaccess - update_3/alpha/13.5a7-14.0a1-linux-i686-ALL.xml - update_3/alpha/13.5a7-14.0a1-linux-x86_64-ALL.xml - update_3/alpha/13.5a7-14.0a1-macos-ALL.xml - update_3/alpha/13.5a7-14.0a1-windows-i686-ALL.xml - update_3/alpha/13.5a7-14.0a1-windows-x86_64-ALL.xml - update_3/alpha/13.5a8-14.0a1-linux-i686-ALL.xml - update_3/alpha/13.5a8-14.0a1-linux-x86_64-ALL.xml - update_3/alpha/13.5a8-14.0a1-macos-ALL.xml - update_3/alpha/13.5a8-14.0a1-windows-i686-ALL.xml - update_3/alpha/13.5a8-14.0a1-windows-x86_64-ALL.xml - update_3/alpha/13.5a9-14.0a1-linux-i686-ALL.xml - update_3/alpha/13.5a9-14.0a1-linux-x86_64-ALL.xml - update_3/alpha/13.5a9-14.0a1-macos-ALL.xml - update_3/alpha/13.5a9-14.0a1-windows-i686-ALL.xml - update_3/alpha/13.5a9-14.0a1-windows-x86_64-ALL.xml - update_3/alpha/14.0a1-linux-i686-ALL.xml - update_3/alpha/14.0a1-linux-x86_64-ALL.xml - update_3/alpha/14.0a1-macos-ALL.xml - update_3/alpha/14.0a1-windows-i686-ALL.xml - update_3/alpha/14.0a1-windows-x86_64-ALL.xml Changes: ===================================== update_3/alpha/.htaccess ===================================== @@ -13,8 +13,16 @@ RewriteRule ^Linux_x86_64-gcc3/13.5a8/ALL 13.5a8-14.0a1-linux-x86_64-ALL.xml [la RewriteRule ^Linux_x86_64-gcc3/13.5a9/ALL 13.5a9-14.0a1-linux-x86_64-ALL.xml [last] RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 14.0a1-linux-x86_64-ALL.xml [last] RewriteRule ^Linux_x86_64-gcc3/ 14.0a1-linux-x86_64-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/ no-update.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/ no-update.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/13.5a7/ALL 13.5a7-14.0a1-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/13.5a8/ALL 13.5a8-14.0a1-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/13.5a9/ALL 13.5a9-14.0a1-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 14.0a1-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/ 14.0a1-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/13.5a7/ALL 13.5a7-14.0a1-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/13.5a8/ALL 13.5a8-14.0a1-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/13.5a9/ALL 13.5a9-14.0a1-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 14.0a1-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/ 14.0a1-macos-ALL.xml [last] RewriteRule ^WINNT_x86-gcc3/13.5a7/ALL 13.5a7-14.0a1-windows-i686-ALL.xml [last] RewriteRule ^WINNT_x86-gcc3/13.5a8/ALL 13.5a8-14.0a1-windows-i686-ALL.xml [last] RewriteRule ^WINNT_x86-gcc3/13.5a9/ALL 13.5a9-14.0a1-windows-i686-ALL.xml [last] ===================================== update_3/alpha/13.5a7-14.0a1-linux-i686-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686-14…" hashFunction="SHA512" hashValue="6434a6160f6ca064ef9908e7f98583ae11c7f76272e61b444abcbc459e6f17b5cf0a7a4fb68c3d36b1baa14a65aa2d90f46c6fc2a85858f10ab69cbb3210885e" size="129202072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686--1…" hashFunction="SHA512" hashValue="ed2af5d95b8f1484782d2f035ed4c0f8414d43d578f3e674dbc89d4b0ee7c8d81d0598f9c191f629e472949c94ece65cfd71e4e0c864a3d2560d79fc3c0b7587" size="68922045" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686-14…" hashFunction="SHA512" hashValue="6434a6160f6ca064ef9908e7f98583ae11c7f76272e61b444abcbc459e6f17b5cf0a7a4fb68c3d36b1baa14a65aa2d90f46c6fc2a85858f10ab69cbb3210885e" size="129202072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686--1…" hashFunction="SHA512" hashValue="ed2af5d95b8f1484782d2f035ed4c0f8414d43d578f3e674dbc89d4b0ee7c8d81d0598f9c191f629e472949c94ece65cfd71e4e0c864a3d2560d79fc3c0b7587" size="68922045" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a7-14.0a1-linux-x86_64-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="d49d0365169de60e304b0eb81c134c2e33ec36c8a3ac69b476dd3e09483a8fb7b7e912c475f5224253c0bba981ff3e9262317d084b9a1d2d177bf89fa491ce67" size="128304072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="68b678e5b7616ffe77d4fbf614c0ba8ad9c8c81126cd725d2e773da405e5c223614a349d98d8c09a66a589789498d682e920e27c8e7a4dbfc5fe750afa477399" size="65389017" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="d49d0365169de60e304b0eb81c134c2e33ec36c8a3ac69b476dd3e09483a8fb7b7e912c475f5224253c0bba981ff3e9262317d084b9a1d2d177bf89fa491ce67" size="128304072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="68b678e5b7616ffe77d4fbf614c0ba8ad9c8c81126cd725d2e773da405e5c223614a349d98d8c09a66a589789498d682e920e27c8e7a4dbfc5fe750afa477399" size="65389017" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a7-14.0a1-macos-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_…" hashFunction="SHA512" hashValue="fac69abd4871fc2fe00d1163b011b1f549c71efa847dcfbf86e02d64d029f86fe0476857341195fed0c96ca0b38648dd7c6e20c5491f00604e1b31ce6f763333" size="156866805" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos--13.5a7…" hashFunction="SHA512" hashValue="ecfccc65f1a720661687017f1b2e36d66f3af99707012a11341690b875f0b2dc897b914b25687e7152228b64278e127c38a0bee7530feed255da8f0dc546fa78" size="104787803" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_…" hashFunction="SHA512" hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377" size="156864833" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos--13.5a7…" hashFunction="SHA512" hashValue="02ac9e16cf8590b95bc7b4296a7c8a21e5af99863bb03a7b6c24b7a90a73c9b227e9486336780b0d49461e72ac541bbf7cdcceb8c8a8330a4de5ea0cc33b1b42" size="116504145" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a7-14.0a1-windows-i686-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="6d4ecea9050aeeec1fed4072cbfb40d558c9e62c59cbf8a0b64a2f7817319cf32dd17fe69615ac820624a61532abcda34a6d9ca540eae2b68d2418a9086b8f2f" size="116987456" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="cff9b64b2e3ee55f750e2a13698ddfc33acfbbcd5ee7b77bfbdca5f8287b3a2017e91a371d216206953c03f339475fb19d485d581cf8e12b018dfa9836ea517d" size="74932755" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="6d4ecea9050aeeec1fed4072cbfb40d558c9e62c59cbf8a0b64a2f7817319cf32dd17fe69615ac820624a61532abcda34a6d9ca540eae2b68d2418a9086b8f2f" size="116987456" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="cff9b64b2e3ee55f750e2a13698ddfc33acfbbcd5ee7b77bfbdca5f8287b3a2017e91a371d216206953c03f339475fb19d485d581cf8e12b018dfa9836ea517d" size="74932755" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a7-14.0a1-windows-x86_64-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="ef9d560faa09bb8f6a06ed7e617de17e802d11efc18016704e0b4dc2f6f54cf8286a497a25f046f3b80b904630682125c1e7d8f2ed2e261e0aecae7265818bfd" size="117393248" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="e1d4bae74e59df0650bbbff8c05ec8346e3febbc6947637ba279f6bc7a097ecc65380294472e1cd20234cf7678b4a89031ba21e5c28b6f0dab97bed9c4936939" size="73293023" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="ef9d560faa09bb8f6a06ed7e617de17e802d11efc18016704e0b4dc2f6f54cf8286a497a25f046f3b80b904630682125c1e7d8f2ed2e261e0aecae7265818bfd" size="117393248" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="e1d4bae74e59df0650bbbff8c05ec8346e3febbc6947637ba279f6bc7a097ecc65380294472e1cd20234cf7678b4a89031ba21e5c28b6f0dab97bed9c4936939" size="73293023" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a8-14.0a1-linux-i686-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686-14…" hashFunction="SHA512" hashValue="6434a6160f6ca064ef9908e7f98583ae11c7f76272e61b444abcbc459e6f17b5cf0a7a4fb68c3d36b1baa14a65aa2d90f46c6fc2a85858f10ab69cbb3210885e" size="129202072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686--1…" hashFunction="SHA512" hashValue="4f00777a7ba8d8556b611c2dabb413abfbcbfead9e1d176c38faff0bfbe881a92949c3dcfabdfe19822d6c68abbe2b040ebabe65745fca73ad420dce58f98312" size="66330953" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686-14…" hashFunction="SHA512" hashValue="6434a6160f6ca064ef9908e7f98583ae11c7f76272e61b444abcbc459e6f17b5cf0a7a4fb68c3d36b1baa14a65aa2d90f46c6fc2a85858f10ab69cbb3210885e" size="129202072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686--1…" hashFunction="SHA512" hashValue="4f00777a7ba8d8556b611c2dabb413abfbcbfead9e1d176c38faff0bfbe881a92949c3dcfabdfe19822d6c68abbe2b040ebabe65745fca73ad420dce58f98312" size="66330953" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a8-14.0a1-linux-x86_64-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="d49d0365169de60e304b0eb81c134c2e33ec36c8a3ac69b476dd3e09483a8fb7b7e912c475f5224253c0bba981ff3e9262317d084b9a1d2d177bf89fa491ce67" size="128304072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="d05234acf32ef51746654513de3c1c10b38bf2a58ee35fb7e9786acaf52afd06e46b28c4b9640ae906ded5de2b21d74e0b6ee1be0484208f05c5dbaad3ebc8e9" size="62769841" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="d49d0365169de60e304b0eb81c134c2e33ec36c8a3ac69b476dd3e09483a8fb7b7e912c475f5224253c0bba981ff3e9262317d084b9a1d2d177bf89fa491ce67" size="128304072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="d05234acf32ef51746654513de3c1c10b38bf2a58ee35fb7e9786acaf52afd06e46b28c4b9640ae906ded5de2b21d74e0b6ee1be0484208f05c5dbaad3ebc8e9" size="62769841" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a8-14.0a1-macos-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_…" hashFunction="SHA512" hashValue="fac69abd4871fc2fe00d1163b011b1f549c71efa847dcfbf86e02d64d029f86fe0476857341195fed0c96ca0b38648dd7c6e20c5491f00604e1b31ce6f763333" size="156866805" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos--13.5a8…" hashFunction="SHA512" hashValue="2dde792e9307d16c5009339839c5878495b92d310166e4c53af79c3cfed7655e0aff2677a9487f10cfc30632dc3437d45c099a267ee32710c257dc4466633a06" size="102143168" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_…" hashFunction="SHA512" hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377" size="156864833" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos--13.5a8…" hashFunction="SHA512" hashValue="eb9ea3a26bc52c2efc441a06e9e4a750f147254f9e3130a4015785288c6ade055f3c0739d3563587ac002fe5184cb0566a91b960161fea94e3939db706bcf5ba" size="113998742" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a8-14.0a1-windows-i686-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="6d4ecea9050aeeec1fed4072cbfb40d558c9e62c59cbf8a0b64a2f7817319cf32dd17fe69615ac820624a61532abcda34a6d9ca540eae2b68d2418a9086b8f2f" size="116987456" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="9f47ce5c2219c6d8f8f0d9361f64fb7a5a49266c7d47e5fac549b110040b14b1cc49c307686708001474b959298cad7100b8285ecd0c45528ebc81ffb4ef1d52" size="72328515" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="6d4ecea9050aeeec1fed4072cbfb40d558c9e62c59cbf8a0b64a2f7817319cf32dd17fe69615ac820624a61532abcda34a6d9ca540eae2b68d2418a9086b8f2f" size="116987456" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="9f47ce5c2219c6d8f8f0d9361f64fb7a5a49266c7d47e5fac549b110040b14b1cc49c307686708001474b959298cad7100b8285ecd0c45528ebc81ffb4ef1d52" size="72328515" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a8-14.0a1-windows-x86_64-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="ef9d560faa09bb8f6a06ed7e617de17e802d11efc18016704e0b4dc2f6f54cf8286a497a25f046f3b80b904630682125c1e7d8f2ed2e261e0aecae7265818bfd" size="117393248" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="6d01af0cd534623349d9774cab65b1a91f08bdf16a13924f8980d43266d61dce1270096e3dfe10685d93b463f07391c1ec92347bae7b768a48a89b6df8fb4867" size="70700083" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="ef9d560faa09bb8f6a06ed7e617de17e802d11efc18016704e0b4dc2f6f54cf8286a497a25f046f3b80b904630682125c1e7d8f2ed2e261e0aecae7265818bfd" size="117393248" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="6d01af0cd534623349d9774cab65b1a91f08bdf16a13924f8980d43266d61dce1270096e3dfe10685d93b463f07391c1ec92347bae7b768a48a89b6df8fb4867" size="70700083" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a9-14.0a1-linux-i686-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686-14…" hashFunction="SHA512" hashValue="6434a6160f6ca064ef9908e7f98583ae11c7f76272e61b444abcbc459e6f17b5cf0a7a4fb68c3d36b1baa14a65aa2d90f46c6fc2a85858f10ab69cbb3210885e" size="129202072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686--1…" hashFunction="SHA512" hashValue="aa2ef9bf853c2be27410036947e291b7c19604147a3fc53174eaaf987f18151a92470e5b45d1cad53a1d662f834c5b7b908bc6f5390adc7fc27c2d7bd42a66c3" size="65598050" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686-14…" hashFunction="SHA512" hashValue="6434a6160f6ca064ef9908e7f98583ae11c7f76272e61b444abcbc459e6f17b5cf0a7a4fb68c3d36b1baa14a65aa2d90f46c6fc2a85858f10ab69cbb3210885e" size="129202072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686--1…" hashFunction="SHA512" hashValue="aa2ef9bf853c2be27410036947e291b7c19604147a3fc53174eaaf987f18151a92470e5b45d1cad53a1d662f834c5b7b908bc6f5390adc7fc27c2d7bd42a66c3" size="65598050" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a9-14.0a1-linux-x86_64-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="d49d0365169de60e304b0eb81c134c2e33ec36c8a3ac69b476dd3e09483a8fb7b7e912c475f5224253c0bba981ff3e9262317d084b9a1d2d177bf89fa491ce67" size="128304072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="f4314ce018dfe1428ac3037918a792625e6d350f38783ecc4498c77865309ecb0383ffcdb9a3aeda0ab0b5407ba704461543ed66aa4d7ed7efc83eb39a6cbe9e" size="62068026" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="d49d0365169de60e304b0eb81c134c2e33ec36c8a3ac69b476dd3e09483a8fb7b7e912c475f5224253c0bba981ff3e9262317d084b9a1d2d177bf89fa491ce67" size="128304072" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="f4314ce018dfe1428ac3037918a792625e6d350f38783ecc4498c77865309ecb0383ffcdb9a3aeda0ab0b5407ba704461543ed66aa4d7ed7efc83eb39a6cbe9e" size="62068026" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a9-14.0a1-macos-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_…" hashFunction="SHA512" hashValue="fac69abd4871fc2fe00d1163b011b1f549c71efa847dcfbf86e02d64d029f86fe0476857341195fed0c96ca0b38648dd7c6e20c5491f00604e1b31ce6f763333" size="156866805" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos--13.5a9…" hashFunction="SHA512" hashValue="be80d0381b826b806b807231dcdb1143b080ae3675d90d18592b5058fdbef019ec7d6c2a750204c6c0724c45ffbd48e390fafa71188ceb9e952fbb551eafff06" size="101463999" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_…" hashFunction="SHA512" hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377" size="156864833" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos--13.5a9…" hashFunction="SHA512" hashValue="2f05fdd0a532de4848baf55f9624ac4040258462246a2024380ea4b8c70e83c23f9521832ac39328dff1cbcc31cd16c0711e14ecc857dbecdb62f4c6fd8fa5c3" size="113700777" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a9-14.0a1-windows-i686-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="6d4ecea9050aeeec1fed4072cbfb40d558c9e62c59cbf8a0b64a2f7817319cf32dd17fe69615ac820624a61532abcda34a6d9ca540eae2b68d2418a9086b8f2f" size="116987456" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="3336270de292d114260290e16c66c471971fbcb3981186f956a40a70d6abdcc581f1da936edd5b5ac30cfa1e3d6a75a743f4c75fbf8e797ff0a22ebbbf26f012" size="71863098" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="6d4ecea9050aeeec1fed4072cbfb40d558c9e62c59cbf8a0b64a2f7817319cf32dd17fe69615ac820624a61532abcda34a6d9ca540eae2b68d2418a9086b8f2f" size="116987456" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="3336270de292d114260290e16c66c471971fbcb3981186f956a40a70d6abdcc581f1da936edd5b5ac30cfa1e3d6a75a743f4c75fbf8e797ff0a22ebbbf26f012" size="71863098" type="partial"></patch></update></updates> ===================================== update_3/alpha/13.5a9-14.0a1-windows-x86_64-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="ef9d560faa09bb8f6a06ed7e617de17e802d11efc18016704e0b4dc2f6f54cf8286a497a25f046f3b80b904630682125c1e7d8f2ed2e261e0aecae7265818bfd" size="117393248" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="957576766c9100e6f73dbcd6ad3a3a26977b5fb4184c4e09b1e90e2168cb8e2f12acaae884c94e512a94d023dc149cdd8b8d4b52d284d5e0c846a4311dfad5ca" size="70230662" type="partial"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="ef9d560faa09bb8f6a06ed7e617de17e802d11efc18016704e0b4dc2f6f54cf8286a497a25f046f3b80b904630682125c1e7d8f2ed2e261e0aecae7265818bfd" size="117393248" type="complete"></patch><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="957576766c9100e6f73dbcd6ad3a3a26977b5fb4184c4e09b1e90e2168cb8e2f12acaae884c94e512a94d023dc149cdd8b8d4b52d284d5e0c846a4311dfad5ca" size="70230662" type="partial"></patch></update></updates> ===================================== update_3/alpha/14.0a1-linux-i686-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686-14…" hashFunction="SHA512" hashValue="6434a6160f6ca064ef9908e7f98583ae11c7f76272e61b444abcbc459e6f17b5cf0a7a4fb68c3d36b1baa14a65aa2d90f46c6fc2a85858f10ab69cbb3210885e" size="129202072" type="complete"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-i686-14…" hashFunction="SHA512" hashValue="6434a6160f6ca064ef9908e7f98583ae11c7f76272e61b444abcbc459e6f17b5cf0a7a4fb68c3d36b1baa14a65aa2d90f46c6fc2a85858f10ab69cbb3210885e" size="129202072" type="complete"></patch></update></updates> ===================================== update_3/alpha/14.0a1-linux-x86_64-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="d49d0365169de60e304b0eb81c134c2e33ec36c8a3ac69b476dd3e09483a8fb7b7e912c475f5224253c0bba981ff3e9262317d084b9a1d2d177bf89fa491ce67" size="128304072" type="complete"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-linux-x86_64-…" hashFunction="SHA512" hashValue="d49d0365169de60e304b0eb81c134c2e33ec36c8a3ac69b476dd3e09483a8fb7b7e912c475f5224253c0bba981ff3e9262317d084b9a1d2d177bf89fa491ce67" size="128304072" type="complete"></patch></update></updates> ===================================== update_3/alpha/14.0a1-macos-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_…" hashFunction="SHA512" hashValue="fac69abd4871fc2fe00d1163b011b1f549c71efa847dcfbf86e02d64d029f86fe0476857341195fed0c96ca0b38648dd7c6e20c5491f00604e1b31ce6f763333" size="156866805" type="complete"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-macos-14.0a1_…" hashFunction="SHA512" hashValue="4ac037fff842be6ee698701b81aeec161167360c16b28dd29322a0d7da7100893de4a8053097627da10c245cd43eaa45c9b253c82f9da2d38d7286142363b377" size="156864833" type="complete"></patch></update></updates> ===================================== update_3/alpha/14.0a1-windows-i686-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="6d4ecea9050aeeec1fed4072cbfb40d558c9e62c59cbf8a0b64a2f7817319cf32dd17fe69615ac820624a61532abcda34a6d9ca540eae2b68d2418a9086b8f2f" size="116987456" type="complete"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-i686-…" hashFunction="SHA512" hashValue="6d4ecea9050aeeec1fed4072cbfb40d558c9e62c59cbf8a0b64a2f7817319cf32dd17fe69615ac820624a61532abcda34a6d9ca540eae2b68d2418a9086b8f2f" size="116987456" type="complete"></patch></update></updates> ===================================== update_3/alpha/14.0a1-windows-x86_64-ALL.xml ===================================== @@ -1,2 +1,2 @@ <?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="ef9d560faa09bb8f6a06ed7e617de17e802d11efc18016704e0b4dc2f6f54cf8286a497a25f046f3b80b904630682125c1e7d8f2ed2e261e0aecae7265818bfd" size="117393248" type="complete"></patch></update></updates> +<updates><update type="minor" displayVersion="14.0a1" appVersion="14.0a1" platformVersion="128.1.0" buildID="20240724210000" detailsURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" actions="showURL" openURL="https://blog.torproject.org/new-alpha-release-tor-browser-140a1" minSupportedOSVersion="10.0"><patch URL="https://cdn.torproject.org/aus1/torbrowser/14.0a1/tor-browser-windows-x86_6…" hashFunction="SHA512" hashValue="ef9d560faa09bb8f6a06ed7e617de17e802d11efc18016704e0b4dc2f6f54cf8286a497a25f046f3b80b904630682125c1e7d8f2ed2e261e0aecae7265818bfd" size="117393248" type="complete"></patch></update></updates> 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/mullvad-browser][mullvad-browser-128.1.0esr-14.0-1] fixup! Bug 40925: Implemented the Security Level component
by Pier Angelo Vendrame (@pierov) 07 Aug '24

07 Aug '24
Pier Angelo Vendrame pushed to branch mullvad-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Mullvad Browser Commits: ebfb8f59 by Henry Wilkes at 2024-08-07T12:41:23+02:00 fixup! Bug 40925: Implemented the Security Level component Bug 42644: Remove redundant separator CSS rules. - - - - - 1 changed file: - browser/themes/shared/customizableui/panelUI-shared.css Changes: ===================================== browser/themes/shared/customizableui/panelUI-shared.css ===================================== @@ -1308,16 +1308,6 @@ panelview .toolbarbutton-1 { } } -/* TODO: Check if we can/should merge with the above rule */ -#securityLevel-panel toolbarseparator { - appearance: none; - min-height: 0; - border-top: 1px solid var(--panel-separator-color); - border-bottom: none; - margin: var(--panel-separator-margin); - padding: 0; -} - .PanelUI-tabitem-container > toolbarbutton[itemtype="tab"], #PanelUI-historyItems > toolbarbutton { list-style-image: url("chrome://global/skin/icons/defaultFavicon.svg"); View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/ebf… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/ebf… 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.1.0esr-14.0-1] fixup! Bug 40925: Implemented the Security Level component
by Pier Angelo Vendrame (@pierov) 07 Aug '24

07 Aug '24
Pier Angelo Vendrame pushed to branch base-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: 9efce6a8 by Henry Wilkes at 2024-08-07T12:40:29+02:00 fixup! Bug 40925: Implemented the Security Level component Bug 42644: Remove redundant separator CSS rules. - - - - - 1 changed file: - browser/themes/shared/customizableui/panelUI-shared.css Changes: ===================================== browser/themes/shared/customizableui/panelUI-shared.css ===================================== @@ -1308,16 +1308,6 @@ panelview .toolbarbutton-1 { } } -/* TODO: Check if we can/should merge with the above rule */ -#securityLevel-panel toolbarseparator { - appearance: none; - min-height: 0; - border-top: 1px solid var(--panel-separator-color); - border-bottom: none; - margin: var(--panel-separator-margin); - padding: 0; -} - .PanelUI-tabitem-container > toolbarbutton[itemtype="tab"], #PanelUI-historyItems > toolbarbutton { list-style-image: url("chrome://global/skin/icons/defaultFavicon.svg"); View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/9efce6a… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/9efce6a… 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.1.0esr-14.0-1] 2 commits: fixup! Bug 40701: Add security warning when downloading a file
by Pier Angelo Vendrame (@pierov) 07 Aug '24

07 Aug '24
Pier Angelo Vendrame pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: 9a159fcc by Henry Wilkes at 2024-08-07T10:29:30+00:00 fixup! Bug 40701: Add security warning when downloading a file Bug 42644: Remove redundant separator CSS rules. - - - - - 0edacb5d by Henry Wilkes at 2024-08-07T10:29:30+00:00 fixup! Bug 40925: Implemented the Security Level component Bug 42644: Remove redundant separator CSS rules. - - - - - 1 changed file: - browser/themes/shared/customizableui/panelUI-shared.css Changes: ===================================== browser/themes/shared/customizableui/panelUI-shared.css ===================================== @@ -1308,17 +1308,6 @@ panelview .toolbarbutton-1 { } } -/* TODO: Check if we can/should merge with the above rule */ -#downloadsPanelTorWarning toolbarseparator, -#securityLevel-panel toolbarseparator { - appearance: none; - min-height: 0; - border-top: 1px solid var(--panel-separator-color); - border-bottom: none; - margin: var(--panel-separator-margin); - padding: 0; -} - .PanelUI-tabitem-container > toolbarbutton[itemtype="tab"], #PanelUI-historyItems > toolbarbutton { list-style-image: url("chrome://global/skin/icons/defaultFavicon.svg"); View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/9506e1… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/9506e1… 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.1.0esr-14.0-1] fixup! Bug 7494: Create local home page for TBB.
by Pier Angelo Vendrame (@pierov) 07 Aug '24

07 Aug '24
Pier Angelo Vendrame pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: 9506e131 by Henry Wilkes at 2024-08-07T10:21:51+01:00 fixup! Bug 7494: Create local home page for TBB. Bug 42629: Add &quot;about:tor&quot; to `newTabUrls` instead of checking the scheme and path individually. - - - - - 1 changed file: - browser/base/content/browser-places.js Changes: ===================================== browser/base/content/browser-places.js ===================================== @@ -1409,14 +1409,6 @@ var BookmarkingUI = { if (!uri) { return false; } - // If uri is "about:tor" then we return true. See tor-browser#41717. - // NOTE: "about:newtab", "about:welcome", "about:home" and - // "about:privatebrowsing" can also redirect to "about:tor". - // NOTE: We do not simply add "about:tor" to newTabURLs below because this - // would also match "about:torconnect". - if (uri.scheme === "about" && uri.filePath === "tor") { - return true; - } // Prevent loading AboutNewTab.sys.mjs during startup path if it // is only the newTabURL getter we are interested in. let newTabURL = Cu.isESModuleLoaded( @@ -1435,6 +1427,10 @@ var BookmarkingUI = { newTabURL, "about:home", "chrome://browser/content/blanktab.html", + // Add the "about:tor" uri. See tor-browser#41717. + // NOTE: "about:newtab", "about:welcome", "about:home" and + // "about:privatebrowsing" can also redirect to "about:tor". + "about:tor", ]; if (PrivateBrowsingUtils.isWindowPrivate(window)) { newTabURLs.push("about:privatebrowsing"); View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/9506e13… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/9506e13… 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-128.1.0esr-14.0-1-build4
by ma1 (@ma1) 06 Aug '24

06 Aug '24
ma1 pushed new tag tor-browser-128.1.0esr-14.0-1-build4 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-128.1.0esr-14.0-1] fixup! Bug 1908344 - Improve prompts showing a=dmeehan - BP, tor-browser#43005
by ma1 (@ma1) 06 Aug '24

06 Aug '24
ma1 pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: 08387a7a by hackademix at 2024-08-06T18:03:02+02:00 fixup! Bug 1908344 - Improve prompts showing a=dmeehan - BP, tor-browser#43005 Bug 43005: followup, fix backporting conflict. - - - - - 1 changed file: - mobile/android/android-components/components/feature/prompts/src/main/java/mozilla/components/feature/prompts/PromptFeature.kt Changes: ===================================== mobile/android/android-components/components/feature/prompts/src/main/java/mozilla/components/feature/prompts/PromptFeature.kt ===================================== @@ -594,7 +594,6 @@ class PromptFeature private constructor( onSaveLoginWithStrongPassword, ) } - strongPasswordPromptViewListener?.handleSuggestStrongPasswordRequest() } else { loginPicker?.handleSelectLoginRequest(promptRequest) } View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/08387a7… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/08387a7… 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] release: new version, 13.5.2
by morgan (@morgan) 06 Aug '24

06 Aug '24
morgan pushed to branch main at The Tor Project / Applications / mullvad-browser-update-responses Commits: 16d91e46 by Morgan at 2024-08-06T18:31:39+00:00 release: new version, 13.5.2 - - - - - 29 changed files: - update_1/release/.htaccess - − update_1/release/13.0.15-13.5.1-linux-x86_64-ALL.xml - − update_1/release/13.0.15-13.5.1-macos-ALL.xml - − update_1/release/13.0.15-13.5.1-windows-x86_64-ALL.xml - − update_1/release/13.0.16-13.5.1-linux-x86_64-ALL.xml - − update_1/release/13.0.16-13.5.1-macos-ALL.xml - − update_1/release/13.0.16-13.5.1-windows-x86_64-ALL.xml - + update_1/release/13.0.16-13.5.2-linux-x86_64-ALL.xml - + update_1/release/13.0.16-13.5.2-macos-ALL.xml - + update_1/release/13.0.16-13.5.2-windows-x86_64-ALL.xml - − update_1/release/13.5-13.5.1-linux-x86_64-ALL.xml - − update_1/release/13.5-13.5.1-macos-ALL.xml - − update_1/release/13.5-13.5.1-windows-x86_64-ALL.xml - + update_1/release/13.5-13.5.2-linux-x86_64-ALL.xml - + update_1/release/13.5-13.5.2-macos-ALL.xml - + update_1/release/13.5-13.5.2-windows-x86_64-ALL.xml - + update_1/release/13.5.1-13.5.2-linux-x86_64-ALL.xml - + update_1/release/13.5.1-13.5.2-macos-ALL.xml - + update_1/release/13.5.1-13.5.2-windows-x86_64-ALL.xml - − update_1/release/13.5.1-linux-x86_64-ALL.xml - − update_1/release/13.5.1-macos-ALL.xml - − update_1/release/13.5.1-windows-x86_64-ALL.xml - + update_1/release/13.5.2-linux-x86_64-ALL.xml - + update_1/release/13.5.2-macos-ALL.xml - + update_1/release/13.5.2-windows-x86_64-ALL.xml - update_1/release/download-linux-x86_64.json - update_1/release/download-macos.json - update_1/release/download-windows-x86_64.json - update_1/release/downloads.json Changes: ===================================== update_1/release/.htaccess ===================================== @@ -1,22 +1,22 @@ RewriteEngine On -RewriteRule ^[^/]+/13.5.1/ no-update.xml [last] -RewriteRule ^Linux_x86_64-gcc3/13.0.15/ALL 13.0.15-13.5.1-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/13.0.16/ALL 13.0.16-13.5.1-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/13.5/ALL 13.5-13.5.1-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 13.5.1-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/ 13.5.1-linux-x86_64-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/13.0.15/ALL 13.0.15-13.5.1-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/13.0.16/ALL 13.0.16-13.5.1-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/13.5/ALL 13.5-13.5.1-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 13.5.1-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/ 13.5.1-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/13.0.15/ALL 13.0.15-13.5.1-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/13.0.16/ALL 13.0.16-13.5.1-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/13.5/ALL 13.5-13.5.1-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 13.5.1-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/ 13.5.1-macos-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/13.0.15/ALL 13.0.15-13.5.1-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/13.0.16/ALL 13.0.16-13.5.1-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/13.5/ALL 13.5-13.5.1-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 13.5.1-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/ 13.5.1-windows-x86_64-ALL.xml [last] +RewriteRule ^[^/]+/13.5.2/ no-update.xml [last] +RewriteRule ^Linux_x86_64-gcc3/13.0.16/ALL 13.0.16-13.5.2-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/13.5/ALL 13.5-13.5.2-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/13.5.1/ALL 13.5.1-13.5.2-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 13.5.2-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/ 13.5.2-linux-x86_64-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/13.0.16/ALL 13.0.16-13.5.2-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/13.5/ALL 13.5-13.5.2-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/13.5.1/ALL 13.5.1-13.5.2-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 13.5.2-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/ 13.5.2-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/13.0.16/ALL 13.0.16-13.5.2-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/13.5/ALL 13.5-13.5.2-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/13.5.1/ALL 13.5.1-13.5.2-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 13.5.2-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/ 13.5.2-macos-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/13.0.16/ALL 13.0.16-13.5.2-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/13.5/ALL 13.5-13.5.2-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/13.5.1/ALL 13.5.1-13.5.2-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 13.5.2-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/ 13.5.2-windows-x86_64-ALL.xml [last] ===================================== update_1/release/13.0.15-13.5.1-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.5.1" appVersion="13.5.1" platformVersion="115.13.0" buildID="20240708120000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-linux-x86_64-13.5.1_…" hashFunction="SHA512" hashValue="4178e2bee27fd5b750bc01f3ab21ce497c6c73e0964f4e5d11e79837b5af9adb66855032caac92c9f26d5b2477733c251fdb934202b5b6ff7e5223a99e56b5f2" size="108427747" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-linux-x86_64--13.0.1…" hashFunction="SHA512" hashValue="7b29e08bd21c6e0577ac57e0faf7d48f22b21c8d975b8041c732a4ac41dd0239aeefe2d7d708b602bfceffdf043bda0573c9e1fd8b0c9a3a368549ad95798a96" size="12726139" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.15-13.5.1-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.5.1" appVersion="13.5.1" platformVersion="115.13.0" buildID="20240708120000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-macos-13.5.1_ALL.mar" hashFunction="SHA512" hashValue="0ee852b82e16c64ab10229e17d767aaeb0cf846a2bfe7eee18a445137c78c519d80c433b1ef68daed4ade980e90b85af56d27134ceaae419eff46ed225bfb558" size="115815999" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-macos--13.0.15-13.5.…" hashFunction="SHA512" hashValue="41bf1dbe0242217ab8b1b821209c3db26903f0ba20f12ffc8b747201d044f1d846b812a5cb8749c27c5b0cfc2d1f510729fa626f67f49501980ebb3e52624d9e" size="74834860" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.15-13.5.1-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.5.1" appVersion="13.5.1" platformVersion="115.13.0" buildID="20240708120000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-windows-x86_64-13.5.…" hashFunction="SHA512" hashValue="8158ad21f217fc931bae100b2428d39a00d2dcc08ddb35488dd5345d96861ebb4c7780d7e4eb86e569e4c513122ba106055736611df3b251ccd52a32aaee30ab" size="90058840" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-windows-x86_64--13.0…" hashFunction="SHA512" hashValue="a0af957e4082a7fea1e9a525cec3c22027ef2d4d27b0751fd381ea6bbda4581a0f22b1676332745015045cb37f2fdc6aa98774386ce58d484843325888f4061b" size="9872708" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.16-13.5.1-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.5.1" appVersion="13.5.1" platformVersion="115.13.0" buildID="20240708120000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-linux-x86_64-13.5.1_…" hashFunction="SHA512" hashValue="4178e2bee27fd5b750bc01f3ab21ce497c6c73e0964f4e5d11e79837b5af9adb66855032caac92c9f26d5b2477733c251fdb934202b5b6ff7e5223a99e56b5f2" size="108427747" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-linux-x86_64--13.0.1…" hashFunction="SHA512" hashValue="a1a399e8e7db770f3ef5da79bd0facc3f051cba75549d0c113a26040719367ef523a04ef42562f2bf046a90cbeff4292e0df33e3433075f7c403cc28be960a2d" size="10518485" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.16-13.5.1-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.5.1" appVersion="13.5.1" platformVersion="115.13.0" buildID="20240708120000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-macos-13.5.1_ALL.mar" hashFunction="SHA512" hashValue="0ee852b82e16c64ab10229e17d767aaeb0cf846a2bfe7eee18a445137c78c519d80c433b1ef68daed4ade980e90b85af56d27134ceaae419eff46ed225bfb558" size="115815999" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-macos--13.0.16-13.5.…" hashFunction="SHA512" hashValue="1bc3d51ecd12056d99112e9349990fcffaa1f79acc5bc309afa9b5d91bdb075cbac8e0588cf4c8fd82564870f7712b81a2a1b1592227307b76bbc6730981e2ef" size="72834927" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.16-13.5.1-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.5.1" appVersion="13.5.1" platformVersion="115.13.0" buildID="20240708120000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-windows-x86_64-13.5.…" hashFunction="SHA512" hashValue="8158ad21f217fc931bae100b2428d39a00d2dcc08ddb35488dd5345d96861ebb4c7780d7e4eb86e569e4c513122ba106055736611df3b251ccd52a32aaee30ab" size="90058840" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-windows-x86_64--13.0…" hashFunction="SHA512" hashValue="2523c3361304284d547fcf04696a0957814d8db52b14a6029b655f08fc1b60773f15ad1e282502870c00e15a8b401ac3453b4c2341b798cc61165cb96d89d029" size="7526402" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.16-13.5.2-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.5.2" appVersion="13.5.2" platformVersion="115.14.0" buildID="20240805090000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-linux-x86_64-13.5.2_…" hashFunction="SHA512" hashValue="75a675c76e81e80629eeed667200ba10df47c8436239214727637e9c71cd19c41e5828e2d201c8a7331820aa7aeb7c45fa22951814a3524322314f2b4ae4bd4e" size="108509355" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-linux-x86_64--13.0.1…" hashFunction="SHA512" hashValue="d94c2572bc23877e071de7b897af554785cec3efc5fdf6798fd927f6932f724895a741285aa7f8c8fb749bde831a58f3d1c70194261dc34dd6a3eaf93e4a04e7" size="13438332" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.16-13.5.2-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.5.2" appVersion="13.5.2" platformVersion="115.14.0" buildID="20240805090000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-macos-13.5.2_ALL.mar" hashFunction="SHA512" hashValue="1ebafd12d471a13bf1b00c9cd8ac8637071dd5c203f2c30df83a53ba79236481d5c31dcba4e3db77a7fc505a3478dc9a8269565e7c22542f4ba16f02048ae57b" size="115913031" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-macos--13.0.16-13.5.…" hashFunction="SHA512" hashValue="47bf9320c61a72b59d40c2594f6b2b07ae4da51d29db6d5d3a4cb0ac5fab04eee7ce7dc001eab16fe0f0fc278438816400727f7c761dfca5bd69d5cdf560856d" size="14417954" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.16-13.5.2-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.5.2" appVersion="13.5.2" platformVersion="115.14.0" buildID="20240805090000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-windows-x86_64-13.5.…" hashFunction="SHA512" hashValue="0001a888ea84a08448818081d91fc99d545251a8a660c9738da4a5f80454101b0a7740e8e2126542e0ea12efe9c4df7021ce3019512b7700c7fcd0e478b8c2f9" size="90150580" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-windows-x86_64--13.0…" hashFunction="SHA512" hashValue="50c3cb47bb930263cb70ef8bee0e513a6acbb74706598b009d9a8bcdeac605cff6051d9187fcbea218a4589447a470ae5d468cfba08851baaafd3715eb271564" size="10562513" type="partial"></patch></update></updates> ===================================== update_1/release/13.5-13.5.1-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.5.1" appVersion="13.5.1" platformVersion="115.13.0" buildID="20240708120000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-linux-x86_64-13.5.1_…" hashFunction="SHA512" hashValue="4178e2bee27fd5b750bc01f3ab21ce497c6c73e0964f4e5d11e79837b5af9adb66855032caac92c9f26d5b2477733c251fdb934202b5b6ff7e5223a99e56b5f2" size="108427747" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-linux-x86_64--13.5-1…" hashFunction="SHA512" hashValue="7d76399f1e151d3f5568071c20d03b97df081cfbce868eb2f2e586c9d878b18779e773821c79f7d6edac91d27b04adf12cd036b70402c241232bea5a4882e060" size="6777973" type="partial"></patch></update></updates> ===================================== update_1/release/13.5-13.5.1-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.5.1" appVersion="13.5.1" platformVersion="115.13.0" buildID="20240708120000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-macos-13.5.1_ALL.mar" hashFunction="SHA512" hashValue="0ee852b82e16c64ab10229e17d767aaeb0cf846a2bfe7eee18a445137c78c519d80c433b1ef68daed4ade980e90b85af56d27134ceaae419eff46ed225bfb558" size="115815999" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-macos--13.5-13.5.1_A…" hashFunction="SHA512" hashValue="57f2d191710af4358c6e8d43b1b57e7184a6e43be8e70da8d2abb5d66ce3abdeae3cb4a4be929a8735c0be070c602b3fb6dacd2200b8abfa42ea3bd3c798a7ee" size="72476400" type="partial"></patch></update></updates> ===================================== update_1/release/13.5-13.5.1-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.5.1" appVersion="13.5.1" platformVersion="115.13.0" buildID="20240708120000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-windows-x86_64-13.5.…" hashFunction="SHA512" hashValue="8158ad21f217fc931bae100b2428d39a00d2dcc08ddb35488dd5345d96861ebb4c7780d7e4eb86e569e4c513122ba106055736611df3b251ccd52a32aaee30ab" size="90058840" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-windows-x86_64--13.5…" hashFunction="SHA512" hashValue="606ee27dd19fbf1d2b2fbfd448cc6e07724f216b738f02172ff704e5ad8c9af6870e3dedcc6a32ed9b65e58232fb8ac0b3a6d683c2ffcc732b696ae85a77c8f5" size="6546837" type="partial"></patch></update></updates> ===================================== update_1/release/13.5-13.5.2-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.5.2" appVersion="13.5.2" platformVersion="115.14.0" buildID="20240805090000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-linux-x86_64-13.5.2_…" hashFunction="SHA512" hashValue="75a675c76e81e80629eeed667200ba10df47c8436239214727637e9c71cd19c41e5828e2d201c8a7331820aa7aeb7c45fa22951814a3524322314f2b4ae4bd4e" size="108509355" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-linux-x86_64--13.5-1…" hashFunction="SHA512" hashValue="2173fb5e01bb7e94ef67bf1be2af17281a34ad362e3dc0af1cd54612cc27b2aa0d940e8d895cc412953f0dffa9309020141e3e59490119ff712f371475e81cbc" size="10121012" type="partial"></patch></update></updates> ===================================== update_1/release/13.5-13.5.2-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.5.2" appVersion="13.5.2" platformVersion="115.14.0" buildID="20240805090000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-macos-13.5.2_ALL.mar" hashFunction="SHA512" hashValue="1ebafd12d471a13bf1b00c9cd8ac8637071dd5c203f2c30df83a53ba79236481d5c31dcba4e3db77a7fc505a3478dc9a8269565e7c22542f4ba16f02048ae57b" size="115913031" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-macos--13.5-13.5.2_A…" hashFunction="SHA512" hashValue="5d6153d79f32417ab8b7dd2e0430dab7e0f886a2a4227d87c984d141c95689934cbde1343986fdc4d5660302ad56d060e3bd902560a8b8a473bc0379b449333c" size="13911335" type="partial"></patch></update></updates> ===================================== update_1/release/13.5-13.5.2-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.5.2" appVersion="13.5.2" platformVersion="115.14.0" buildID="20240805090000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-windows-x86_64-13.5.…" hashFunction="SHA512" hashValue="0001a888ea84a08448818081d91fc99d545251a8a660c9738da4a5f80454101b0a7740e8e2126542e0ea12efe9c4df7021ce3019512b7700c7fcd0e478b8c2f9" size="90150580" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-windows-x86_64--13.5…" hashFunction="SHA512" hashValue="7fc8ceb2cc40122f9734741cc6a4daf922a90b8ec237e679be865aa4bb9e76c96ad8d9cfe9f3297883ef2b77eb687b60ef60002dd18c5e61decbe0762cee2119" size="9592656" type="partial"></patch></update></updates> ===================================== update_1/release/13.5.1-13.5.2-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.5.2" appVersion="13.5.2" platformVersion="115.14.0" buildID="20240805090000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-linux-x86_64-13.5.2_…" hashFunction="SHA512" hashValue="75a675c76e81e80629eeed667200ba10df47c8436239214727637e9c71cd19c41e5828e2d201c8a7331820aa7aeb7c45fa22951814a3524322314f2b4ae4bd4e" size="108509355" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-linux-x86_64--13.5.1…" hashFunction="SHA512" hashValue="a69f5f67c55322c9619982a7dd6fee5336fbeb0370b4623be882d9a309440ab179113743cebc0c32af881afa2460f02d2be4489332e650672a5d646540a0147f" size="8211552" type="partial"></patch></update></updates> ===================================== update_1/release/13.5.1-13.5.2-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.5.2" appVersion="13.5.2" platformVersion="115.14.0" buildID="20240805090000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-macos-13.5.2_ALL.mar" hashFunction="SHA512" hashValue="1ebafd12d471a13bf1b00c9cd8ac8637071dd5c203f2c30df83a53ba79236481d5c31dcba4e3db77a7fc505a3478dc9a8269565e7c22542f4ba16f02048ae57b" size="115913031" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-macos--13.5.1-13.5.2…" hashFunction="SHA512" hashValue="00a73f020eb50ad9d0675209a5bf4d401475b9c96f039f339be7322e430869d16f4079cee07e36b05f814758695fef217d611ed39c89295366406eaa21581d2d" size="11601463" type="partial"></patch></update></updates> ===================================== update_1/release/13.5.1-13.5.2-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.5.2" appVersion="13.5.2" platformVersion="115.14.0" buildID="20240805090000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-windows-x86_64-13.5.…" hashFunction="SHA512" hashValue="0001a888ea84a08448818081d91fc99d545251a8a660c9738da4a5f80454101b0a7740e8e2126542e0ea12efe9c4df7021ce3019512b7700c7fcd0e478b8c2f9" size="90150580" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-windows-x86_64--13.5…" hashFunction="SHA512" hashValue="59b4a4af684b55a4f250d5160b9beb2c95b6028cd9d838059004aad1cd65adba76328580edeabf5a4a00340e59659bc8c43260cb464a87db8a9d326645f7c18d" size="7603292" type="partial"></patch></update></updates> ===================================== update_1/release/13.5.1-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.5.1" appVersion="13.5.1" platformVersion="115.13.0" buildID="20240708120000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-linux-x86_64-13.5.1_…" hashFunction="SHA512" hashValue="4178e2bee27fd5b750bc01f3ab21ce497c6c73e0964f4e5d11e79837b5af9adb66855032caac92c9f26d5b2477733c251fdb934202b5b6ff7e5223a99e56b5f2" size="108427747" type="complete"></patch></update></updates> ===================================== update_1/release/13.5.1-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.5.1" appVersion="13.5.1" platformVersion="115.13.0" buildID="20240708120000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-macos-13.5.1_ALL.mar" hashFunction="SHA512" hashValue="0ee852b82e16c64ab10229e17d767aaeb0cf846a2bfe7eee18a445137c78c519d80c433b1ef68daed4ade980e90b85af56d27134ceaae419eff46ed225bfb558" size="115815999" type="complete"></patch></update></updates> ===================================== update_1/release/13.5.1-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.5.1" appVersion="13.5.1" platformVersion="115.13.0" buildID="20240708120000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.1" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-windows-x86_64-13.5.…" hashFunction="SHA512" hashValue="8158ad21f217fc931bae100b2428d39a00d2dcc08ddb35488dd5345d96861ebb4c7780d7e4eb86e569e4c513122ba106055736611df3b251ccd52a32aaee30ab" size="90058840" type="complete"></patch></update></updates> ===================================== update_1/release/13.5.2-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.5.2" appVersion="13.5.2" platformVersion="115.14.0" buildID="20240805090000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-linux-x86_64-13.5.2_…" hashFunction="SHA512" hashValue="75a675c76e81e80629eeed667200ba10df47c8436239214727637e9c71cd19c41e5828e2d201c8a7331820aa7aeb7c45fa22951814a3524322314f2b4ae4bd4e" size="108509355" type="complete"></patch></update></updates> ===================================== update_1/release/13.5.2-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.5.2" appVersion="13.5.2" platformVersion="115.14.0" buildID="20240805090000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-macos-13.5.2_ALL.mar" hashFunction="SHA512" hashValue="1ebafd12d471a13bf1b00c9cd8ac8637071dd5c203f2c30df83a53ba79236481d5c31dcba4e3db77a7fc505a3478dc9a8269565e7c22542f4ba16f02048ae57b" size="115913031" type="complete"></patch></update></updates> ===================================== update_1/release/13.5.2-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.5.2" appVersion="13.5.2" platformVersion="115.14.0" buildID="20240805090000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.5.2" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-windows-x86_64-13.5.…" hashFunction="SHA512" hashValue="0001a888ea84a08448818081d91fc99d545251a8a660c9738da4a5f80454101b0a7740e8e2126542e0ea12efe9c4df7021ce3019512b7700c7fcd0e478b8c2f9" size="90150580" type="complete"></patch></update></updates> ===================================== update_1/release/download-linux-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-linux-x86_64-13.5.1.…","git_tag":"mb-13.5.1-build3","sig":"https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-linux-x86_64-13.5.1.…","version":"13.5.1"} \ No newline at end of file +{"binary":"https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-linux-x86_64-13.5.2.…","git_tag":"mb-13.5.2-build1","sig":"https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-linux-x86_64-13.5.2.…","version":"13.5.2"} \ No newline at end of file ===================================== update_1/release/download-macos.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-macos-13.5.1.dmg","git_tag":"mb-13.5.1-build3","sig":"https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-macos-13.5.1.dmg.asc","version":"13.5.1"} \ No newline at end of file +{"binary":"https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-macos-13.5.2.dmg","git_tag":"mb-13.5.2-build1","sig":"https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-macos-13.5.2.dmg.asc","version":"13.5.2"} \ No newline at end of file ===================================== update_1/release/download-windows-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-windows-x86_64-13.5.…","git_tag":"mb-13.5.1-build3","sig":"https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-windows-x86_64-13.5.…","version":"13.5.1"} \ No newline at end of file +{"binary":"https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-windows-x86_64-13.5.…","git_tag":"mb-13.5.2-build1","sig":"https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-windows-x86_64-13.5.…","version":"13.5.2"} \ No newline at end of file ===================================== update_1/release/downloads.json ===================================== @@ -1 +1 @@ -{"downloads":{"linux-x86_64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-linux-x86_64-13.5.1.…","sig":"https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-linux-x86_64-13.5.1.…"}},"macos":{"ALL":{"binary":"https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-macos-13.5.1.dmg","sig":"https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-macos-13.5.1.dmg.asc"}},"win64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-windows-x86_64-13.5.…","sig":"https://cdn.mullvad.net/browser/13.5.1/mullvad-browser-windows-x86_64-13.5.…"}}},"tag":"mb-13.5.1-build3","version":"13.5.1"} \ No newline at end of file +{"downloads":{"linux-x86_64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-linux-x86_64-13.5.2.…","sig":"https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-linux-x86_64-13.5.2.…"}},"macos":{"ALL":{"binary":"https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-macos-13.5.2.dmg","sig":"https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-macos-13.5.2.dmg.asc"}},"win64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-windows-x86_64-13.5.…","sig":"https://cdn.mullvad.net/browser/13.5.2/mullvad-browser-windows-x86_64-13.5.…"}}},"tag":"mb-13.5.2-build1","version":"13.5.2"} \ 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] release: new version, 13.5.2
by morgan (@morgan) 06 Aug '24

06 Aug '24
morgan pushed to branch main at The Tor Project / Applications / Tor Browser update responses Commits: 46a58c86 by Morgan at 2024-08-06T17:48:03+00:00 release: new version, 13.5.2 - - - - - 30 changed files: - update_3/release/.htaccess - − update_3/release/13.0.15-13.5.1-linux-i686-ALL.xml - − update_3/release/13.0.15-13.5.1-linux-x86_64-ALL.xml - − update_3/release/13.0.15-13.5.1-macos-ALL.xml - − update_3/release/13.0.15-13.5.1-windows-i686-ALL.xml - − update_3/release/13.0.15-13.5.1-windows-x86_64-ALL.xml - − update_3/release/13.0.16-13.5.1-linux-i686-ALL.xml - − update_3/release/13.0.16-13.5.1-linux-x86_64-ALL.xml - − update_3/release/13.0.16-13.5.1-macos-ALL.xml - − update_3/release/13.0.16-13.5.1-windows-i686-ALL.xml - − update_3/release/13.0.16-13.5.1-windows-x86_64-ALL.xml - + update_3/release/13.0.16-13.5.2-linux-i686-ALL.xml - + update_3/release/13.0.16-13.5.2-linux-x86_64-ALL.xml - + update_3/release/13.0.16-13.5.2-macos-ALL.xml - + update_3/release/13.0.16-13.5.2-windows-i686-ALL.xml - + update_3/release/13.0.16-13.5.2-windows-x86_64-ALL.xml - − update_3/release/13.5-13.5.1-linux-i686-ALL.xml - − update_3/release/13.5-13.5.1-linux-x86_64-ALL.xml - − update_3/release/13.5-13.5.1-macos-ALL.xml - − update_3/release/13.5-13.5.1-windows-i686-ALL.xml - − update_3/release/13.5-13.5.1-windows-x86_64-ALL.xml - + update_3/release/13.5-13.5.2-linux-i686-ALL.xml - + update_3/release/13.5-13.5.2-linux-x86_64-ALL.xml - + update_3/release/13.5-13.5.2-macos-ALL.xml - + update_3/release/13.5-13.5.2-windows-i686-ALL.xml - + update_3/release/13.5-13.5.2-windows-x86_64-ALL.xml - + update_3/release/13.5.1-13.5.2-linux-i686-ALL.xml - + update_3/release/13.5.1-13.5.2-linux-x86_64-ALL.xml - + update_3/release/13.5.1-13.5.2-macos-ALL.xml - + update_3/release/13.5.1-13.5.2-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/mullvad-browser][mullvad-browser-128.1.0esr-14.0-1] 2 commits: Bug 1899180. If a channel is not nsIPrivateBrowsingChannel and has no load...
by ma1 (@ma1) 06 Aug '24

06 Aug '24
ma1 pushed to branch mullvad-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Mullvad Browser Commits: 94473f85 by Timothy Nikkel at 2024-08-06T15:59:27+02:00 Bug 1899180. If a channel is not nsIPrivateBrowsingChannel and has no load context, use the private browsing field from it&#39;s origin attributes. r=necko-reviewers,anti-tracking-reviewers,valentin If the channel is not a nsIPrivateBrowsingChannel, and it also has no load context (eg inside svg images) then we will over write a non-zero mPrivateBrowsingId on the OriginAttributes of the channel with 0, making NS_UsePrivateBrowsing return false for the channel. Differential Revision: https://phabricator.services.mozilla.com/D212083 - - - - - e0c31372 by Jon Coppeard at 2024-08-06T15:59:28+02:00 Bug 1904011 - Ignore finalized scripts when iterating code covarage tables r=iain Differential Revision: https://phabricator.services.mozilla.com/D214799 - - - - - 6 changed files: - image/test/browser/browser.toml - + image/test/browser/browser_bug1899180.js - + image/test/browser/helper1899180.html - js/src/gc/Zone.cpp - + js/src/jit-test/tests/debug/bug-1904011.js - toolkit/components/antitracking/StoragePrincipalHelper.cpp Changes: ===================================== image/test/browser/browser.toml ===================================== @@ -15,6 +15,9 @@ skip-if = ["true"] # Bug 1207012 - Permaorange from an uncaught exception that i ["browser_bug1869938.js"] support-files = ["helper1869938.html"] +["browser_bug1899180.js"] +support-files = ["helper1899180.html"] + ["browser_docshell_type_editor.js"] ["browser_image.js"] ===================================== image/test/browser/browser_bug1899180.js ===================================== @@ -0,0 +1,49 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +/* + * This test opens a private browsing window, then opens a content page in it + * that loads an svg image that contains an image to an external protocol. + * This tests that we don't hit an assert in this situation. + */ + +add_task(async function test() { + function httpURL(filename) { + let chromeURL = getRootDirectory(gTestPath) + filename; + return chromeURL.replace( + "chrome://mochitests/content/", + "http://mochi.test:8888/" + ); + } + + let win = await BrowserTestUtils.openNewBrowserWindow({ private: true }); + + let tab = (win.gBrowser.selectedTab = BrowserTestUtils.addTab( + win.gBrowser, + "about:blank" + )); + + await BrowserTestUtils.browserLoaded(tab.linkedBrowser); + + const pageUrl = httpURL("helper1899180.html"); + + BrowserTestUtils.startLoadingURIString(tab.linkedBrowser, pageUrl); + + await BrowserTestUtils.browserLoaded(tab.linkedBrowser); + + await new Promise(resolve => { + waitForFocus(resolve, win); + }); + + // do a couple rafs here to ensure its loaded and displayed + await new Promise(r => requestAnimationFrame(r)); + await new Promise(r => requestAnimationFrame(r)); + + await BrowserTestUtils.closeWindow(win); + + win = null; + tab = null; + + ok(true, "we got here and didn't crash/assert"); +}); ===================================== image/test/browser/helper1899180.html ===================================== @@ -0,0 +1,5 @@ +<!DOCTYPE html> +<html> +<!-- just an svg that contains an image whose src points to a protocol that firefox doesn't support --> +<img src='data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 120 120"><image width="10" height="10" xlink:href="C:\doesntmatter.png"/></svg>'/> +</html> ===================================== js/src/gc/Zone.cpp ===================================== @@ -906,7 +906,13 @@ void Zone::clearScriptCounts(Realm* realm) { // Clear all hasScriptCounts_ flags of BaseScript, in order to release all // ScriptCounts entries of the given realm. for (auto i = scriptCountsMap->modIter(); !i.done(); i.next()) { - BaseScript* script = i.get().key(); + const HeapPtr<BaseScript*>& script = i.get().key(); + if (IsAboutToBeFinalized(script)) { + // Dead scripts may be present during incremental GC until script + // finalizers have been run. + continue; + } + if (script->realm() != realm) { continue; } @@ -927,7 +933,13 @@ void Zone::clearScriptLCov(Realm* realm) { } for (auto i = scriptLCovMap->modIter(); !i.done(); i.next()) { - BaseScript* script = i.get().key(); + const HeapPtr<BaseScript*>& script = i.get().key(); + if (IsAboutToBeFinalized(script)) { + // Dead scripts may be present during incremental GC until script + // finalizers have been run. + continue; + } + if (script->realm() == realm) { i.remove(); } ===================================== js/src/jit-test/tests/debug/bug-1904011.js ===================================== @@ -0,0 +1,15 @@ +// |jit-test| --fuzzing-safe; --ion-offthread-compile=off +gczeal(0); + +let g = newGlobal({newCompartment: true}); +let dbg = new Debugger(g); + +dbg.collectCoverageInfo = true; +g.eval("0"); + +// Start a GC in the debugger's zone and yield after sweeping objects. +schedulezone(g); +gczeal(22); +startgc(100); + +dbg.collectCoverageInfo = false; ===================================== toolkit/components/antitracking/StoragePrincipalHelper.cpp ===================================== @@ -447,7 +447,7 @@ bool StoragePrincipalHelper::GetOriginAttributes( nsCOMPtr<nsILoadInfo> loadInfo = aChannel->LoadInfo(); loadInfo->GetOriginAttributes(&aAttributes); - bool isPrivate = false; + bool isPrivate = aAttributes.mPrivateBrowsingId > 0; nsCOMPtr<nsIPrivateBrowsingChannel> pbChannel = do_QueryInterface(aChannel); if (pbChannel) { nsresult rv = pbChannel->GetIsChannelPrivate(&isPrivate); @@ -456,7 +456,9 @@ bool StoragePrincipalHelper::GetOriginAttributes( // Some channels may not implement nsIPrivateBrowsingChannel nsCOMPtr<nsILoadContext> loadContext; NS_QueryNotificationCallbacks(aChannel, loadContext); - isPrivate = loadContext && loadContext->UsePrivateBrowsing(); + if (loadContext) { + isPrivate = loadContext->UsePrivateBrowsing(); + } } aAttributes.SyncAttributesWithPrivateBrowsing(isPrivate); View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/dc… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/dc… 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.1.0esr-14.0-1] 2 commits: Bug 1899180. If a channel is not nsIPrivateBrowsingChannel and has no load...
by ma1 (@ma1) 06 Aug '24

06 Aug '24
ma1 pushed to branch base-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: b2d3f133 by Timothy Nikkel at 2024-08-06T15:54:56+02:00 Bug 1899180. If a channel is not nsIPrivateBrowsingChannel and has no load context, use the private browsing field from it&#39;s origin attributes. r=necko-reviewers,anti-tracking-reviewers,valentin If the channel is not a nsIPrivateBrowsingChannel, and it also has no load context (eg inside svg images) then we will over write a non-zero mPrivateBrowsingId on the OriginAttributes of the channel with 0, making NS_UsePrivateBrowsing return false for the channel. Differential Revision: https://phabricator.services.mozilla.com/D212083 - - - - - c7378d88 by Jon Coppeard at 2024-08-06T15:55:02+02:00 Bug 1904011 - Ignore finalized scripts when iterating code covarage tables r=iain Differential Revision: https://phabricator.services.mozilla.com/D214799 - - - - - 6 changed files: - image/test/browser/browser.toml - + image/test/browser/browser_bug1899180.js - + image/test/browser/helper1899180.html - js/src/gc/Zone.cpp - + js/src/jit-test/tests/debug/bug-1904011.js - toolkit/components/antitracking/StoragePrincipalHelper.cpp Changes: ===================================== image/test/browser/browser.toml ===================================== @@ -15,6 +15,9 @@ skip-if = ["true"] # Bug 1207012 - Permaorange from an uncaught exception that i ["browser_bug1869938.js"] support-files = ["helper1869938.html"] +["browser_bug1899180.js"] +support-files = ["helper1899180.html"] + ["browser_docshell_type_editor.js"] ["browser_image.js"] ===================================== image/test/browser/browser_bug1899180.js ===================================== @@ -0,0 +1,49 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +/* + * This test opens a private browsing window, then opens a content page in it + * that loads an svg image that contains an image to an external protocol. + * This tests that we don't hit an assert in this situation. + */ + +add_task(async function test() { + function httpURL(filename) { + let chromeURL = getRootDirectory(gTestPath) + filename; + return chromeURL.replace( + "chrome://mochitests/content/", + "http://mochi.test:8888/" + ); + } + + let win = await BrowserTestUtils.openNewBrowserWindow({ private: true }); + + let tab = (win.gBrowser.selectedTab = BrowserTestUtils.addTab( + win.gBrowser, + "about:blank" + )); + + await BrowserTestUtils.browserLoaded(tab.linkedBrowser); + + const pageUrl = httpURL("helper1899180.html"); + + BrowserTestUtils.startLoadingURIString(tab.linkedBrowser, pageUrl); + + await BrowserTestUtils.browserLoaded(tab.linkedBrowser); + + await new Promise(resolve => { + waitForFocus(resolve, win); + }); + + // do a couple rafs here to ensure its loaded and displayed + await new Promise(r => requestAnimationFrame(r)); + await new Promise(r => requestAnimationFrame(r)); + + await BrowserTestUtils.closeWindow(win); + + win = null; + tab = null; + + ok(true, "we got here and didn't crash/assert"); +}); ===================================== image/test/browser/helper1899180.html ===================================== @@ -0,0 +1,5 @@ +<!DOCTYPE html> +<html> +<!-- just an svg that contains an image whose src points to a protocol that firefox doesn't support --> +<img src='data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 120 120"><image width="10" height="10" xlink:href="C:\doesntmatter.png"/></svg>'/> +</html> ===================================== js/src/gc/Zone.cpp ===================================== @@ -906,7 +906,13 @@ void Zone::clearScriptCounts(Realm* realm) { // Clear all hasScriptCounts_ flags of BaseScript, in order to release all // ScriptCounts entries of the given realm. for (auto i = scriptCountsMap->modIter(); !i.done(); i.next()) { - BaseScript* script = i.get().key(); + const HeapPtr<BaseScript*>& script = i.get().key(); + if (IsAboutToBeFinalized(script)) { + // Dead scripts may be present during incremental GC until script + // finalizers have been run. + continue; + } + if (script->realm() != realm) { continue; } @@ -927,7 +933,13 @@ void Zone::clearScriptLCov(Realm* realm) { } for (auto i = scriptLCovMap->modIter(); !i.done(); i.next()) { - BaseScript* script = i.get().key(); + const HeapPtr<BaseScript*>& script = i.get().key(); + if (IsAboutToBeFinalized(script)) { + // Dead scripts may be present during incremental GC until script + // finalizers have been run. + continue; + } + if (script->realm() == realm) { i.remove(); } ===================================== js/src/jit-test/tests/debug/bug-1904011.js ===================================== @@ -0,0 +1,15 @@ +// |jit-test| --fuzzing-safe; --ion-offthread-compile=off +gczeal(0); + +let g = newGlobal({newCompartment: true}); +let dbg = new Debugger(g); + +dbg.collectCoverageInfo = true; +g.eval("0"); + +// Start a GC in the debugger's zone and yield after sweeping objects. +schedulezone(g); +gczeal(22); +startgc(100); + +dbg.collectCoverageInfo = false; ===================================== toolkit/components/antitracking/StoragePrincipalHelper.cpp ===================================== @@ -447,7 +447,7 @@ bool StoragePrincipalHelper::GetOriginAttributes( nsCOMPtr<nsILoadInfo> loadInfo = aChannel->LoadInfo(); loadInfo->GetOriginAttributes(&aAttributes); - bool isPrivate = false; + bool isPrivate = aAttributes.mPrivateBrowsingId > 0; nsCOMPtr<nsIPrivateBrowsingChannel> pbChannel = do_QueryInterface(aChannel); if (pbChannel) { nsresult rv = pbChannel->GetIsChannelPrivate(&isPrivate); @@ -456,7 +456,9 @@ bool StoragePrincipalHelper::GetOriginAttributes( // Some channels may not implement nsIPrivateBrowsingChannel nsCOMPtr<nsILoadContext> loadContext; NS_QueryNotificationCallbacks(aChannel, loadContext); - isPrivate = loadContext && loadContext->UsePrivateBrowsing(); + if (loadContext) { + isPrivate = loadContext->UsePrivateBrowsing(); + } } aAttributes.SyncAttributesWithPrivateBrowsing(isPrivate); View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/ac2dbd… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/ac2dbd… 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-128.1.0esr-14.0-1-build2
by ma1 (@ma1) 06 Aug '24

06 Aug '24
ma1 pushed new tag base-browser-128.1.0esr-14.0-1-build2 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][tor-browser-128.1.0esr-14.0-1] fixup! Bug 41089: Add tor-browser build scripts + Makefile to tor-browser
by Pier Angelo Vendrame (@pierov) 06 Aug '24

06 Aug '24
Pier Angelo Vendrame pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: 99d9d4c3 by Henry Wilkes at 2024-08-06T12:31:24+01:00 fixup! Bug 41089: Add tor-browser build scripts + Makefile to tor-browser Bug 43014: Add --purgecaches when running the dev build. - - - - - 1 changed file: - tools/torbrowser/Makefile Changes: ===================================== tools/torbrowser/Makefile ===================================== @@ -21,9 +21,9 @@ endif # Define the run command based on the platform. ifeq ("$(shell uname)", "Darwin") - RUN_CMD := cd "$(BINARIES)/Tor Browser.app/Contents/MacOS/" && ./firefox + RUN_CMD := cd "$(BINARIES)/Tor Browser.app/Contents/MacOS/" && ./firefox --purgecaches else - RUN_CMD := "$(BINARIES)/dev/Browser/start-tor-browser" -v $(ARGS) + RUN_CMD := "$(BINARIES)/dev/Browser/start-tor-browser" -v --purgecaches $(ARGS) endif config: View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/99d9d4c… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/99d9d4c… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
  • ← Newer
  • 1
  • ...
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • ...
  • 782
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.