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

Keyboard Shortcuts

Thread View

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

tbb-commits

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

June 2024

  • 1 participants
  • 105 discussions
[Git][tpo/applications/firefox-android][firefox-android-115.2.1-13.5-1] fixup! Add Tor integration and UI
by Dan Ballard (@dan) 13 Jun '24

13 Jun '24
Dan Ballard pushed to branch firefox-android-115.2.1-13.5-1 at The Tor Project / Applications / firefox-android Commits: 6727ad88 by clairehurst at 2024-06-14T00:07:06+00:00 fixup! Add Tor integration and UI - - - - - 2 changed files: - fenix/app/src/main/java/org/mozilla/fenix/tor/TorLogsComposeFragment.kt - fenix/app/src/main/java/org/mozilla/fenix/tor/TorLogsViewModel.kt Changes: ===================================== fenix/app/src/main/java/org/mozilla/fenix/tor/TorLogsComposeFragment.kt ===================================== @@ -23,13 +23,19 @@ import androidx.compose.material.Icon import androidx.compose.material.Scaffold import androidx.compose.material.Text import androidx.compose.runtime.Composable +import androidx.compose.runtime.DisposableEffect +import androidx.compose.runtime.LaunchedEffect import androidx.compose.runtime.Stable +import androidx.compose.runtime.mutableStateOf +import androidx.compose.runtime.remember import androidx.compose.ui.Modifier import androidx.compose.ui.platform.ComposeView +import androidx.compose.ui.platform.LocalLifecycleOwner import androidx.compose.ui.res.painterResource import androidx.compose.ui.unit.dp import androidx.fragment.app.Fragment import androidx.fragment.app.viewModels +import androidx.lifecycle.Observer import mozilla.components.ui.colors.PhotonColors import org.mozilla.fenix.R @@ -53,17 +59,37 @@ class TorLogsComposeFragment : Fragment() { @Composable private fun TorLogs(paddingValues: PaddingValues) { + val torLogsState = remember { mutableStateOf<List<TorLog>>(emptyList()) } + val lifecycleOwner = LocalLifecycleOwner.current + val scrollState = rememberScrollState() + + DisposableEffect(viewModel.torLogs(), lifecycleOwner) { + val observer = Observer<List<TorLog>> { logs -> + torLogsState.value = logs + } + viewModel.torLogs().observe(lifecycleOwner, observer) + onDispose { + viewModel.torLogs().removeObserver(observer) + } + } + + val torLogs = torLogsState.value + + LaunchedEffect(torLogs) { + scrollState.animateScrollTo(scrollState.maxValue) + } + SelectionContainer { Column( // Column instead of LazyColumn so that you can select all the logs, and not just one "screen" at a time // The logs won't be too big so loading them all instead of just whats visible shouldn't be a big deal modifier = Modifier .fillMaxSize() - .verticalScroll(state = rememberScrollState(), reverseScrolling = true) + .verticalScroll(scrollState) .padding(paddingValues) .background(PhotonColors.Ink50), // Standard background color ) { - for (log in viewModel.torLogs) { + for (log in torLogs) { LogRow(log = log) } } ===================================== fenix/app/src/main/java/org/mozilla/fenix/tor/TorLogsViewModel.kt ===================================== @@ -12,6 +12,8 @@ import android.os.Build import android.widget.Toast import androidx.compose.runtime.Stable import androidx.lifecycle.AndroidViewModel +import androidx.lifecycle.LiveData +import androidx.lifecycle.MutableLiveData import org.mozilla.fenix.R import org.mozilla.fenix.ext.components import java.sql.Timestamp @@ -21,12 +23,18 @@ class TorLogsViewModel(application: Application) : AndroidViewModel(application) private val clipboardManager = application.getSystemService(Context.CLIPBOARD_SERVICE) as ClipboardManager - val torLogs: MutableList<TorLog> = mutableListOf( - TorLog( - "---------------" + application.getString(R.string.tor_initializing_log) + "---------------", - ), + private val _torLogs: MutableLiveData<List<TorLog>> = MutableLiveData( + mutableListOf(TorLog("---------------" + application.getString(R.string.tor_initializing_log) + "---------------")), ) + fun torLogs(): LiveData<List<TorLog>> { + return _torLogs + } + + private fun addLog(log: TorLog) { + _torLogs.value = _torLogs.value?.plus(log) ?: return + } + init { setupClipboardListener() torController.registerTorLogListener(this) @@ -34,14 +42,16 @@ class TorLogsViewModel(application: Application) : AndroidViewModel(application) .filter { !(it.second!!.startsWith("Circuit") && it.first == "ON") } // Keep synchronized with format in onTorStatusUpdate .flatMap { listOf(TorLog("[${it.first}] ${it.second}")) } - torLogs.addAll(currentEntries) + for (log in currentEntries) { + addLog(log) + } } override fun onLog(type: String?, message: String?) { if (message == null || type == null) return if (type == "ON" && type.startsWith("Circuit")) return - torLogs.add(TorLog("[$type] $message")) + addLog(TorLog("[$type] $message")) } override fun onCleared() { @@ -74,7 +84,8 @@ class TorLogsViewModel(application: Application) : AndroidViewModel(application) private fun getAllTorLogs(): String { var ret = "" - for (log in torLogs) { + for (log in torLogs().value + ?: return getApplication<Application>().getString(R.string.default_error_msg)) { ret += log.text + '\n' } return ret View it on GitLab: https://gitlab.torproject.org/tpo/applications/firefox-android/-/commit/672… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/firefox-android/-/commit/672… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/firefox-android][firefox-android-115.2.1-13.5-1] fixup! Add Tor integration and UI
by Dan Ballard (@dan) 13 Jun '24

13 Jun '24
Dan Ballard pushed to branch firefox-android-115.2.1-13.5-1 at The Tor Project / Applications / firefox-android Commits: 190065c7 by clairehurst at 2024-06-13T17:51:18-06:00 fixup! Add Tor integration and UI - - - - - 1 changed file: - − fenix/app/src/main/res/drawable/connectoncropped.png Changes: ===================================== fenix/app/src/main/res/drawable/connectoncropped.png deleted ===================================== Binary files a/fenix/app/src/main/res/drawable/connectoncropped.png and /dev/null differ View it on GitLab: https://gitlab.torproject.org/tpo/applications/firefox-android/-/commit/190… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/firefox-android/-/commit/190… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/firefox-android][firefox-android-115.2.1-13.5-1] fixup! Implement Android-native Connection Assist UI
by Dan Ballard (@dan) 13 Jun '24

13 Jun '24
Dan Ballard pushed to branch firefox-android-115.2.1-13.5-1 at The Tor Project / Applications / firefox-android Commits: ce547718 by Dan Ballard at 2024-06-13T09:09:12-07:00 fixup! Implement Android-native Connection Assist UI Bug 42648: Don&#39;t cancel tor bootstrap when opening settings from bootstrap - - - - - 1 changed file: - fenix/app/src/main/java/org/mozilla/fenix/tor/TorConnectionAssistFragment.kt Changes: ===================================== fenix/app/src/main/java/org/mozilla/fenix/tor/TorConnectionAssistFragment.kt ===================================== @@ -124,7 +124,6 @@ class TorConnectionAssistFragment : Fragment(), UserInteractionHandler { private fun setSettingsButton(screen: ConnectAssistUiState) { binding.settingsButton.visibility = if (screen.settingsButtonVisible) View.VISIBLE else View.GONE binding.settingsButton.setOnClickListener { - viewModel.cancelTorBootstrap() openSettings() } } View it on GitLab: https://gitlab.torproject.org/tpo/applications/firefox-android/-/commit/ce5… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/firefox-android/-/commit/ce5… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-115.12.0esr-13.5-1] fixup! Bug 40933: Add tor-launcher functionality
by Pier Angelo Vendrame (@pierov) 12 Jun '24

12 Jun '24
Pier Angelo Vendrame pushed to branch tor-browser-115.12.0esr-13.5-1 at The Tor Project / Applications / Tor Browser Commits: 1d8abcb1 by Pier Angelo Vendrame at 2024-06-12T16:01:14+02:00 fixup! Bug 40933: Add tor-launcher functionality Bug 42636: A bad bridge line might get TBA stuck. A while ago I reworked the relationship between TorSettings and TorProvider. While doing so I was too strict, and a failure to push settings during initialization will stop the initialization itself, which will result in TBA stuck at the splash screen. The problem appears also on desktop (the user will get a prompt that asks to restart Tor, even though it is not perfect, see #21053). However, on desktop the user can go to the settings and deleting the bridges from there (which is not an optimal experience anyway). - - - - - 1 changed file: - toolkit/components/tor-launcher/TorProvider.sys.mjs Changes: ===================================== toolkit/components/tor-launcher/TorProvider.sys.mjs ===================================== @@ -232,11 +232,9 @@ export class TorProvider { await this.writeSettings(lazy.TorSettings.getSettings()); } catch (e) { logger.warn( - "Failed to initialize TorSettings or to write our settings, so uninitializing.", + "Failed to initialize TorSettings or to write our initial settings. Continuing the initialization anyway.", e ); - this.uninit(); - throw e; } } View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/1d8abcb… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/1d8abcb… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][maint-13.5] Bug 41167: Stop generating an MB "portable" windows install
by boklm (@boklm) 12 Jun '24

12 Jun '24
boklm pushed to branch maint-13.5 at The Tor Project / Applications / tor-browser-build Commits: bb86323e by Nicolas Vigier at 2024-06-12T12:43:50+02:00 Bug 41167: Stop generating an MB &quot;portable&quot; windows install And remove the `-install` from the other one. - - - - - 1 changed file: - projects/browser/build Changes: ===================================== projects/browser/build ===================================== @@ -424,14 +424,15 @@ cd $distdir [% ELSIF c("var/windows") %] find "$PKG_DIR" -exec [% c("touch") %] {} \; pushd "$PKG_DIR" - makensis browser-portable.nsi - # Working around NSIS braindamage - python3 $rootdir/pe_checksum_fix.py browser-portable.exe - mv browser-portable.exe $OUTDIR/[% c("var/project-name") %]-[% c("var/osname") %]-portable-[% c("var/torbrowser_version") %].exe [% IF c('var/mullvad-browser') -%] makensis browser-install.nsi python3 $rootdir/pe_checksum_fix.py browser-install.exe - mv browser-install.exe $OUTDIR/[% c("var/project-name") %]-[% c("var/osname") %]-install-[% c("var/torbrowser_version") %].exe + mv browser-install.exe $OUTDIR/[% c("var/project-name") %]-[% c("var/osname") %]-[% c("var/torbrowser_version") %].exe + [% ELSE -%] + makensis browser-portable.nsi + # Working around NSIS braindamage + python3 $rootdir/pe_checksum_fix.py browser-portable.exe + mv browser-portable.exe $OUTDIR/[% c("var/project-name") %]-[% c("var/osname") %]-portable-[% c("var/torbrowser_version") %].exe [% END -%] popd [% END %] View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/b… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/b… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][main] Bug 41167: Stop generating an MB "portable" windows install
by boklm (@boklm) 12 Jun '24

12 Jun '24
boklm pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: bb86323e by Nicolas Vigier at 2024-06-12T12:43:50+02:00 Bug 41167: Stop generating an MB &quot;portable&quot; windows install And remove the `-install` from the other one. - - - - - 1 changed file: - projects/browser/build Changes: ===================================== projects/browser/build ===================================== @@ -424,14 +424,15 @@ cd $distdir [% ELSIF c("var/windows") %] find "$PKG_DIR" -exec [% c("touch") %] {} \; pushd "$PKG_DIR" - makensis browser-portable.nsi - # Working around NSIS braindamage - python3 $rootdir/pe_checksum_fix.py browser-portable.exe - mv browser-portable.exe $OUTDIR/[% c("var/project-name") %]-[% c("var/osname") %]-portable-[% c("var/torbrowser_version") %].exe [% IF c('var/mullvad-browser') -%] makensis browser-install.nsi python3 $rootdir/pe_checksum_fix.py browser-install.exe - mv browser-install.exe $OUTDIR/[% c("var/project-name") %]-[% c("var/osname") %]-install-[% c("var/torbrowser_version") %].exe + mv browser-install.exe $OUTDIR/[% c("var/project-name") %]-[% c("var/osname") %]-[% c("var/torbrowser_version") %].exe + [% ELSE -%] + makensis browser-portable.nsi + # Working around NSIS braindamage + python3 $rootdir/pe_checksum_fix.py browser-portable.exe + mv browser-portable.exe $OUTDIR/[% c("var/project-name") %]-[% c("var/osname") %]-portable-[% c("var/torbrowser_version") %].exe [% END -%] popd [% END %] View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/b… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/b… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/firefox-android][firefox-android-115.2.1-13.5-1] fixup! Add Tor integration and UI
by Dan Ballard (@dan) 11 Jun '24

11 Jun '24
Dan Ballard pushed to branch firefox-android-115.2.1-13.5-1 at The Tor Project / Applications / firefox-android Commits: d483554e by Dan Ballard at 2024-06-11T12:38:20-07:00 fixup! Add Tor integration and UI Bug 42632: Don&#39;t display builtin bridges in provide bridge popup; Also fix saving user provided bridges by splitting on \n instead of \r\n and prune empty lines - - - - - 1 changed file: - fenix/app/src/main/java/org/mozilla/fenix/tor/TorControllerGV.kt Changes: ===================================== fenix/app/src/main/java/org/mozilla/fenix/tor/TorControllerGV.kt ===================================== @@ -157,12 +157,20 @@ class TorControllerGV( // with no bridge strings override var userProvidedBridges: String? get() { - return getTorSettings()?.bridgeBridgeStrings?.joinToString("\r\n") + return getTorSettings()?.let { + if (it.bridgesSource == BridgeSource.UserProvided) { + return getTorSettings()?.bridgeBridgeStrings?.joinToString("\n") + } + return "" + } } set(value) { getTorSettings()?.let { + Log.i(TAG, "setUserProvidedBridges: '$value'"); + // Hack: we don't have validation so lets do something quick and dirty (each line has a length) + val userProvidedLines: Array<String> = value?.split("\n")?.filter { it.length > 4 }?.toTypedArray() ?: arrayOf<String>() it.bridgesSource = BridgeSource.UserProvided - it.bridgeBridgeStrings = value?.split("\r\n")?.toTypedArray() ?: arrayOf<String>() + it.bridgeBridgeStrings = userProvidedLines getTorIntegration().setSettings(it, true, true) } } View it on GitLab: https://gitlab.torproject.org/tpo/applications/firefox-android/-/commit/d48… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/firefox-android/-/commit/d48… 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.0.16
by richard (@richard) 11 Jun '24

11 Jun '24
richard pushed to branch main at The Tor Project / Applications / mullvad-browser-update-responses Commits: 73500cd8 by Richard Pospesel at 2024-06-11T19:15:17+00:00 release: new version, 13.0.16 - - - - - 29 changed files: - update_1/release/.htaccess - − update_1/release/13.0.12-13.0.15-linux-x86_64-ALL.xml - − update_1/release/13.0.12-13.0.15-macos-ALL.xml - − update_1/release/13.0.12-13.0.15-windows-x86_64-ALL.xml - − update_1/release/13.0.13-13.0.15-linux-x86_64-ALL.xml - − update_1/release/13.0.13-13.0.15-macos-ALL.xml - − update_1/release/13.0.13-13.0.15-windows-x86_64-ALL.xml - + update_1/release/13.0.13-13.0.16-linux-x86_64-ALL.xml - + update_1/release/13.0.13-13.0.16-macos-ALL.xml - + update_1/release/13.0.13-13.0.16-windows-x86_64-ALL.xml - − update_1/release/13.0.14-13.0.15-linux-x86_64-ALL.xml - − update_1/release/13.0.14-13.0.15-macos-ALL.xml - − update_1/release/13.0.14-13.0.15-windows-x86_64-ALL.xml - + update_1/release/13.0.14-13.0.16-linux-x86_64-ALL.xml - + update_1/release/13.0.14-13.0.16-macos-ALL.xml - + update_1/release/13.0.14-13.0.16-windows-x86_64-ALL.xml - + update_1/release/13.0.15-13.0.16-linux-x86_64-ALL.xml - + update_1/release/13.0.15-13.0.16-macos-ALL.xml - + update_1/release/13.0.15-13.0.16-windows-x86_64-ALL.xml - − update_1/release/13.0.15-linux-x86_64-ALL.xml - − update_1/release/13.0.15-macos-ALL.xml - − update_1/release/13.0.15-windows-x86_64-ALL.xml - + update_1/release/13.0.16-linux-x86_64-ALL.xml - + update_1/release/13.0.16-macos-ALL.xml - + update_1/release/13.0.16-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.0.15/ no-update.xml [last] -RewriteRule ^Linux_x86_64-gcc3/13.0.12/ALL 13.0.12-13.0.15-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/13.0.13/ALL 13.0.13-13.0.15-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/13.0.14/ALL 13.0.14-13.0.15-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 13.0.15-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/ 13.0.15-linux-x86_64-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/13.0.12/ALL 13.0.12-13.0.15-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/13.0.13/ALL 13.0.13-13.0.15-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/13.0.14/ALL 13.0.14-13.0.15-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 13.0.15-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/ 13.0.15-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/13.0.12/ALL 13.0.12-13.0.15-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/13.0.13/ALL 13.0.13-13.0.15-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/13.0.14/ALL 13.0.14-13.0.15-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 13.0.15-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/ 13.0.15-macos-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/13.0.12/ALL 13.0.12-13.0.15-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/13.0.13/ALL 13.0.13-13.0.15-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/13.0.14/ALL 13.0.14-13.0.15-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 13.0.15-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/ 13.0.15-windows-x86_64-ALL.xml [last] +RewriteRule ^[^/]+/13.0.16/ no-update.xml [last] +RewriteRule ^Linux_x86_64-gcc3/13.0.13/ALL 13.0.13-13.0.16-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/13.0.14/ALL 13.0.14-13.0.16-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/13.0.15/ALL 13.0.15-13.0.16-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 13.0.16-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/ 13.0.16-linux-x86_64-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/13.0.13/ALL 13.0.13-13.0.16-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/13.0.14/ALL 13.0.14-13.0.16-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/13.0.15/ALL 13.0.15-13.0.16-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 13.0.16-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/ 13.0.16-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/13.0.13/ALL 13.0.13-13.0.16-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/13.0.14/ALL 13.0.14-13.0.16-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/13.0.15/ALL 13.0.15-13.0.16-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 13.0.16-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/ 13.0.16-macos-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/13.0.13/ALL 13.0.13-13.0.16-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/13.0.14/ALL 13.0.14-13.0.16-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/13.0.15/ALL 13.0.15-13.0.16-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 13.0.16-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/ 13.0.16-windows-x86_64-ALL.xml [last] ===================================== update_1/release/13.0.12-13.0.15-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0.15" appVersion="13.0.15" platformVersion="115.11.0" buildID="20240510150000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-linux-x86_64-13.0.1…" hashFunction="SHA512" hashValue="323694bc40a76a24b4d69b9df390ac48606f90d227d80e0a97aab6288a847ae7bab65be67e906f9112dc2dea0e666572d619af8d579bf812b286e8877ec2332d" size="107673007" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-linux-x86_64--13.0.…" hashFunction="SHA512" hashValue="21cbf614ca7aa7ff762edcb649dc78f8e3f5b029a256aec803db62b43cfa2a8d16c7fd726e98403d2ef1b0886c0bdcb161bae75c24a657cf3d23eb6c7a1bee1f" size="11567243" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.12-13.0.15-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0.15" appVersion="13.0.15" platformVersion="115.11.0" buildID="20240510150000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-macos-13.0.15_ALL.m…" hashFunction="SHA512" hashValue="57edeaafb75299f5aa44d0a20bbd4d7c79e0099e26dea85e643ea300bc2550f199e9c5d171a005798c9fef3f0a6972cfebd9253dbeb7f296500e0ff5a28b52e8" size="115725843" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-macos--13.0.12-13.0…" hashFunction="SHA512" hashValue="3c0f41110076beaa49a05522bb4ea77fb7a2a2fa1004f4d37c3fface43c40e44a7ee537a212724b6cfae65d1ab7f3c6ca7b0749f7050153402d678410c0467f3" size="16022791" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.12-13.0.15-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0.15" appVersion="13.0.15" platformVersion="115.11.0" buildID="20240510150000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-windows-x86_64-13.0…" hashFunction="SHA512" hashValue="6ad0c70f119de1df459387eaf98784be153dbe5533291c3e6c579593ca072c59c7a17f565d8b834f2a1ea5e02bb21305fff46b1ad73912dd472ecf12c20fe70d" size="89632164" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-windows-x86_64--13.…" hashFunction="SHA512" hashValue="d706d64c3385e541efe25113005ef38f5f8448643902bc4f752368b7d8f0db32867c715fadbaf5592dfb4ffcc6bb54560d85537a309d06f60ea1fb13fc2c9d4a" size="12114390" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.13-13.0.15-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0.15" appVersion="13.0.15" platformVersion="115.11.0" buildID="20240510150000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-linux-x86_64-13.0.1…" hashFunction="SHA512" hashValue="323694bc40a76a24b4d69b9df390ac48606f90d227d80e0a97aab6288a847ae7bab65be67e906f9112dc2dea0e666572d619af8d579bf812b286e8877ec2332d" size="107673007" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-linux-x86_64--13.0.…" hashFunction="SHA512" hashValue="87039e194e0600d8b66de42ca34b6090287647265c17ba8d0cb7ca7f3f84451b71d2bdac46508660419fc1428824650bb004317cbd93113c354422dfb3132160" size="11566627" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.13-13.0.15-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0.15" appVersion="13.0.15" platformVersion="115.11.0" buildID="20240510150000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-macos-13.0.15_ALL.m…" hashFunction="SHA512" hashValue="57edeaafb75299f5aa44d0a20bbd4d7c79e0099e26dea85e643ea300bc2550f199e9c5d171a005798c9fef3f0a6972cfebd9253dbeb7f296500e0ff5a28b52e8" size="115725843" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-macos--13.0.13-13.0…" hashFunction="SHA512" hashValue="8e8ec045f0ba41efd6cf598a66a68817aa1a5e9004afe66cd3b34ecb0ca50db90735fcd9922327eb1883c022ff6e33cd46d8a5cd0fab614e2f25d73cebec161d" size="16016015" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.13-13.0.15-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0.15" appVersion="13.0.15" platformVersion="115.11.0" buildID="20240510150000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-windows-x86_64-13.0…" hashFunction="SHA512" hashValue="6ad0c70f119de1df459387eaf98784be153dbe5533291c3e6c579593ca072c59c7a17f565d8b834f2a1ea5e02bb21305fff46b1ad73912dd472ecf12c20fe70d" size="89632164" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-windows-x86_64--13.…" hashFunction="SHA512" hashValue="96528211e5e70e8a6b05c6f66a990b29d99c39e17ff64000c78de9e7a431721dc067c62b690bddd1ac74051d6d1c53393d8cd700df641147463b61eaa91056f4" size="12116094" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.13-13.0.16-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.0.16" appVersion="13.0.16" platformVersion="115.12.0" buildID="20240510190000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-linux-x86_64-13.0.1…" hashFunction="SHA512" hashValue="109fccba65a468faa7717eb5bc7c5299d3e918195eedb5f7280f491ef3ca88d01d6ccb25b048dc45772a3ab94ccd2a6098213f5cd8a4ce308f9abea3869f1063" size="107722615" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-linux-x86_64--13.0.…" hashFunction="SHA512" hashValue="d5dbe6bb80bf64c54db6cc7c9b6f6e31b0fab1962c0c81da91055495b1f83e1d07014801544f7f6d156e3acca4a1b4680e19c20c02b34191e8350f28cf86466f" size="11847299" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.13-13.0.16-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.0.16" appVersion="13.0.16" platformVersion="115.12.0" buildID="20240510190000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-macos-13.0.16_ALL.m…" hashFunction="SHA512" hashValue="059322416b4ecba88138fa86b17dc0d23af40fb3a23d9dfd802b9dfe215b0762c66b6ffff949d9a9fd87b66418a3dd52ea1c9f48f483e9ba8b35987bc1bfa112" size="115777659" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-macos--13.0.13-13.0…" hashFunction="SHA512" hashValue="a11df3c2e7a8c1d7bb4c593c401a26b352fa300b3db6fdd3f9c6d9eda60a765fbd0cb9c1399d3c1abd01f6b5851a6cc13c942d615dd967e8f5e9cd2a9cf78143" size="16462659" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.13-13.0.16-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.0.16" appVersion="13.0.16" platformVersion="115.12.0" buildID="20240510190000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-windows-x86_64-13.0…" hashFunction="SHA512" hashValue="b00ec452fece9d86ee944fb0f5bb7b1614ae028df28934d3246468391e296763a76d019a9137afebc4dbf2b448f08ea8944d5370201066a9021adee7ae318b40" size="89692372" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-windows-x86_64--13.…" hashFunction="SHA512" hashValue="bccc5de989446a6c067b018f453e77d92b1e01608f01b7f802a5f89b81dcb60d20f438b04568eb99755e1f4614921f8b00297beb2c81a653f0bcdd8bf8f33c03" size="12378634" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.14-13.0.15-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0.15" appVersion="13.0.15" platformVersion="115.11.0" buildID="20240510150000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-linux-x86_64-13.0.1…" hashFunction="SHA512" hashValue="323694bc40a76a24b4d69b9df390ac48606f90d227d80e0a97aab6288a847ae7bab65be67e906f9112dc2dea0e666572d619af8d579bf812b286e8877ec2332d" size="107673007" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-linux-x86_64--13.0.…" hashFunction="SHA512" hashValue="9407841bdc920a152f872a869c63a719a38a4557523b1f4717fa2f884d1d4bb80d171e8e5ca8edd20e37792902b81c7bb3b16011ef9c1ffa2e98955de313b30b" size="7766785" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.14-13.0.15-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0.15" appVersion="13.0.15" platformVersion="115.11.0" buildID="20240510150000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-macos-13.0.15_ALL.m…" hashFunction="SHA512" hashValue="57edeaafb75299f5aa44d0a20bbd4d7c79e0099e26dea85e643ea300bc2550f199e9c5d171a005798c9fef3f0a6972cfebd9253dbeb7f296500e0ff5a28b52e8" size="115725843" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-macos--13.0.14-13.0…" hashFunction="SHA512" hashValue="809e12f26b584be7de0f170003442dc1ce44695d875e7c06d29d9eb3d810992c7610a03fdd9abcff48bd65a643ff75397692c4529616d083c7aa62743e84d3a4" size="11648462" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.14-13.0.15-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0.15" appVersion="13.0.15" platformVersion="115.11.0" buildID="20240510150000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-windows-x86_64-13.0…" hashFunction="SHA512" hashValue="6ad0c70f119de1df459387eaf98784be153dbe5533291c3e6c579593ca072c59c7a17f565d8b834f2a1ea5e02bb21305fff46b1ad73912dd472ecf12c20fe70d" size="89632164" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-windows-x86_64--13.…" hashFunction="SHA512" hashValue="2308dde306b3b03100beace98b6aa2f2aa1bbe5f3032307e8678ebada669881a718491c3af469400e4ac302f32b272efbb6f5f2a54694e69bd98ab3537783894" size="8252168" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.14-13.0.16-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.0.16" appVersion="13.0.16" platformVersion="115.12.0" buildID="20240510190000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-linux-x86_64-13.0.1…" hashFunction="SHA512" hashValue="109fccba65a468faa7717eb5bc7c5299d3e918195eedb5f7280f491ef3ca88d01d6ccb25b048dc45772a3ab94ccd2a6098213f5cd8a4ce308f9abea3869f1063" size="107722615" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-linux-x86_64--13.0.…" hashFunction="SHA512" hashValue="234f0403f2039a58665e45d32ec10460bcb0a51db268e66154bb497a41201dc585324b3f3740a6f26208dcb1046903db0b53af338a695e8180273439156d67f5" size="10097383" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.14-13.0.16-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.0.16" appVersion="13.0.16" platformVersion="115.12.0" buildID="20240510190000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-macos-13.0.16_ALL.m…" hashFunction="SHA512" hashValue="059322416b4ecba88138fa86b17dc0d23af40fb3a23d9dfd802b9dfe215b0762c66b6ffff949d9a9fd87b66418a3dd52ea1c9f48f483e9ba8b35987bc1bfa112" size="115777659" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-macos--13.0.14-13.0…" hashFunction="SHA512" hashValue="f1f404a62f37fc2d0509406a8e84f64d3238f47f18dcbf570f0814ab7611ee3f54601677e02605580820f8f7ed17383c22640d6b670b0d5606f850f45febb4ad" size="14167295" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.14-13.0.16-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.0.16" appVersion="13.0.16" platformVersion="115.12.0" buildID="20240510190000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-windows-x86_64-13.0…" hashFunction="SHA512" hashValue="b00ec452fece9d86ee944fb0f5bb7b1614ae028df28934d3246468391e296763a76d019a9137afebc4dbf2b448f08ea8944d5370201066a9021adee7ae318b40" size="89692372" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-windows-x86_64--13.…" hashFunction="SHA512" hashValue="32aab0837b244e4544668b2e9832d72cfdf68952a53c87604cf63669535f7f60cbcc2fb859212559e576947756197b6517d1f8673a0373bccba86f3aed5b3bae" size="10715278" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.15-13.0.16-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.0.16" appVersion="13.0.16" platformVersion="115.12.0" buildID="20240510190000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-linux-x86_64-13.0.1…" hashFunction="SHA512" hashValue="109fccba65a468faa7717eb5bc7c5299d3e918195eedb5f7280f491ef3ca88d01d6ccb25b048dc45772a3ab94ccd2a6098213f5cd8a4ce308f9abea3869f1063" size="107722615" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-linux-x86_64--13.0.…" hashFunction="SHA512" hashValue="3b5b1997c42e24588461862ecb36249d92d421f2a741575ebfef25940f2882fedb31df0d3d78df71f46454ef8076ce18a46cc4b8282ef2fa6be39380888b835f" size="6388851" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.15-13.0.16-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.0.16" appVersion="13.0.16" platformVersion="115.12.0" buildID="20240510190000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-macos-13.0.16_ALL.m…" hashFunction="SHA512" hashValue="059322416b4ecba88138fa86b17dc0d23af40fb3a23d9dfd802b9dfe215b0762c66b6ffff949d9a9fd87b66418a3dd52ea1c9f48f483e9ba8b35987bc1bfa112" size="115777659" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-macos--13.0.15-13.0…" hashFunction="SHA512" hashValue="610ed78a973da33efd54b466b82e4efdef3973aeab58355ddd59cd87bda2886a7e0a0f7ef2fa729289093d4b9aa4b6def24b7be4b7a08470a8a1b1a7d2c45648" size="10337707" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.15-13.0.16-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.0.16" appVersion="13.0.16" platformVersion="115.12.0" buildID="20240510190000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-windows-x86_64-13.0…" hashFunction="SHA512" hashValue="b00ec452fece9d86ee944fb0f5bb7b1614ae028df28934d3246468391e296763a76d019a9137afebc4dbf2b448f08ea8944d5370201066a9021adee7ae318b40" size="89692372" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-windows-x86_64--13.…" hashFunction="SHA512" hashValue="6a4ee3348ea4490cbffe36797e37da5025fd8deb9bdf7ffe30c0303d76e764a1f277e8361c2115bb32aac286dfa8b7a7f4a018cff62fefc7240e2936801c52f9" size="6429842" type="partial"></patch></update></updates> ===================================== update_1/release/13.0.15-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0.15" appVersion="13.0.15" platformVersion="115.11.0" buildID="20240510150000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-linux-x86_64-13.0.1…" hashFunction="SHA512" hashValue="323694bc40a76a24b4d69b9df390ac48606f90d227d80e0a97aab6288a847ae7bab65be67e906f9112dc2dea0e666572d619af8d579bf812b286e8877ec2332d" size="107673007" type="complete"></patch></update></updates> ===================================== update_1/release/13.0.15-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0.15" appVersion="13.0.15" platformVersion="115.11.0" buildID="20240510150000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-macos-13.0.15_ALL.m…" hashFunction="SHA512" hashValue="57edeaafb75299f5aa44d0a20bbd4d7c79e0099e26dea85e643ea300bc2550f199e9c5d171a005798c9fef3f0a6972cfebd9253dbeb7f296500e0ff5a28b52e8" size="115725843" type="complete"></patch></update></updates> ===================================== update_1/release/13.0.15-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="13.0.15" appVersion="13.0.15" platformVersion="115.11.0" buildID="20240510150000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.15" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-windows-x86_64-13.0…" hashFunction="SHA512" hashValue="6ad0c70f119de1df459387eaf98784be153dbe5533291c3e6c579593ca072c59c7a17f565d8b834f2a1ea5e02bb21305fff46b1ad73912dd472ecf12c20fe70d" size="89632164" type="complete"></patch></update></updates> ===================================== update_1/release/13.0.16-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.0.16" appVersion="13.0.16" platformVersion="115.12.0" buildID="20240510190000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-linux-x86_64-13.0.1…" hashFunction="SHA512" hashValue="109fccba65a468faa7717eb5bc7c5299d3e918195eedb5f7280f491ef3ca88d01d6ccb25b048dc45772a3ab94ccd2a6098213f5cd8a4ce308f9abea3869f1063" size="107722615" type="complete"></patch></update></updates> ===================================== update_1/release/13.0.16-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.0.16" appVersion="13.0.16" platformVersion="115.12.0" buildID="20240510190000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" minSupportedOSVersion="16.0.0"><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-macos-13.0.16_ALL.m…" hashFunction="SHA512" hashValue="059322416b4ecba88138fa86b17dc0d23af40fb3a23d9dfd802b9dfe215b0762c66b6ffff949d9a9fd87b66418a3dd52ea1c9f48f483e9ba8b35987bc1bfa112" size="115777659" type="complete"></patch></update></updates> ===================================== update_1/release/13.0.16-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="13.0.16" appVersion="13.0.16" platformVersion="115.12.0" buildID="20240510190000" detailsURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/13.0.16" minSupportedOSVersion="6.1" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-windows-x86_64-13.0…" hashFunction="SHA512" hashValue="b00ec452fece9d86ee944fb0f5bb7b1614ae028df28934d3246468391e296763a76d019a9137afebc4dbf2b448f08ea8944d5370201066a9021adee7ae318b40" size="89692372" type="complete"></patch></update></updates> ===================================== update_1/release/download-linux-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-linux-x86_64-13.0.1…","git_tag":"mb-13.0.15-build1","sig":"https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-linux-x86_64-13.0.1…","version":"13.0.15"} \ No newline at end of file +{"binary":"https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-linux-x86_64-13.0.1…","git_tag":"mb-13.0.16-build1","sig":"https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-linux-x86_64-13.0.1…","version":"13.0.16"} \ No newline at end of file ===================================== update_1/release/download-macos.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-macos-13.0.15.dmg","git_tag":"mb-13.0.15-build1","sig":"https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-macos-13.0.15.dmg.a…","version":"13.0.15"} \ No newline at end of file +{"binary":"https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-macos-13.0.16.dmg","git_tag":"mb-13.0.16-build1","sig":"https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-macos-13.0.16.dmg.a…","version":"13.0.16"} \ No newline at end of file ===================================== update_1/release/download-windows-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-windows-x86_64-port…","git_tag":"mb-13.0.15-build1","sig":"https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-windows-x86_64-port…","version":"13.0.15"} \ No newline at end of file +{"binary":"https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-windows-x86_64-port…","git_tag":"mb-13.0.16-build1","sig":"https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-windows-x86_64-port…","version":"13.0.16"} \ 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.0.15/mullvad-browser-linux-x86_64-13.0.1…","sig":"https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-linux-x86_64-13.0.1…"}},"macos":{"ALL":{"binary":"https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-macos-13.0.15.dmg","sig":"https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-macos-13.0.15.dmg.a…"}},"win64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-windows-x86_64-port…","sig":"https://cdn.mullvad.net/browser/13.0.15/mullvad-browser-windows-x86_64-port…"}}},"tag":"mb-13.0.15-build1","version":"13.0.15"} \ No newline at end of file +{"downloads":{"linux-x86_64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-linux-x86_64-13.0.1…","sig":"https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-linux-x86_64-13.0.1…"}},"macos":{"ALL":{"binary":"https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-macos-13.0.16.dmg","sig":"https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-macos-13.0.16.dmg.a…"}},"win64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-windows-x86_64-port…","sig":"https://cdn.mullvad.net/browser/13.0.16/mullvad-browser-windows-x86_64-port…"}}},"tag":"mb-13.0.16-build1","version":"13.0.16"} \ 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.0.16
by richard (@richard) 11 Jun '24

11 Jun '24
richard pushed to branch main at The Tor Project / Applications / Tor Browser update responses Commits: 0da5aaef by Richard Pospesel at 2024-06-11T18:48:06+00:00 release: new version, 13.0.16 - - - - - 30 changed files: - update_3/release/.htaccess - − update_3/release/13.0.12-13.0.15-linux-i686-ALL.xml - − update_3/release/13.0.12-13.0.15-linux-x86_64-ALL.xml - − update_3/release/13.0.12-13.0.15-macos-ALL.xml - − update_3/release/13.0.12-13.0.15-windows-i686-ALL.xml - − update_3/release/13.0.12-13.0.15-windows-x86_64-ALL.xml - − update_3/release/13.0.13-13.0.15-linux-i686-ALL.xml - − update_3/release/13.0.13-13.0.15-linux-x86_64-ALL.xml - − update_3/release/13.0.13-13.0.15-macos-ALL.xml - − update_3/release/13.0.13-13.0.15-windows-i686-ALL.xml - − update_3/release/13.0.13-13.0.15-windows-x86_64-ALL.xml - + update_3/release/13.0.13-13.0.16-linux-i686-ALL.xml - + update_3/release/13.0.13-13.0.16-linux-x86_64-ALL.xml - + update_3/release/13.0.13-13.0.16-macos-ALL.xml - + update_3/release/13.0.13-13.0.16-windows-i686-ALL.xml - + update_3/release/13.0.13-13.0.16-windows-x86_64-ALL.xml - − update_3/release/13.0.14-13.0.15-linux-i686-ALL.xml - − update_3/release/13.0.14-13.0.15-linux-x86_64-ALL.xml - − update_3/release/13.0.14-13.0.15-macos-ALL.xml - − update_3/release/13.0.14-13.0.15-windows-i686-ALL.xml - − update_3/release/13.0.14-13.0.15-windows-x86_64-ALL.xml - + update_3/release/13.0.14-13.0.16-linux-i686-ALL.xml - + update_3/release/13.0.14-13.0.16-linux-x86_64-ALL.xml - + update_3/release/13.0.14-13.0.16-macos-ALL.xml - + update_3/release/13.0.14-13.0.16-windows-i686-ALL.xml - + update_3/release/13.0.14-13.0.16-windows-x86_64-ALL.xml - + update_3/release/13.0.15-13.0.16-linux-i686-ALL.xml - + update_3/release/13.0.15-13.0.16-linux-x86_64-ALL.xml - + update_3/release/13.0.15-13.0.16-macos-ALL.xml - + update_3/release/13.0.15-13.0.16-windows-i686-ALL.xml The diff was not included because it is too large. View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-update-responses… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser] Pushed new tag base-browser-115.12.0esr-13.0-1-build1
by richard (@richard) 11 Jun '24

11 Jun '24
richard pushed new tag base-browser-115.12.0esr-13.0-1-build1 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
  • ← Newer
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • ...
  • 11
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.