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 -----
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2022 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2021 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2020 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2019 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2018 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2017 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2016 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2015 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2014 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
tbb-commits@lists.torproject.org

September 2024

  • 1 participants
  • 250 discussions
[Git][tpo/applications/tor-browser][tor-browser-128.3.0esr-14.0-1] fixup! Bug 41803: Add some developer tools for working on tor-browser.
by Pier Angelo Vendrame (@pierov) 30 Sep '24

30 Sep '24
Pier Angelo Vendrame pushed to branch tor-browser-128.3.0esr-14.0-1 at The Tor Project / Applications / Tor Browser Commits: 38fb3e3e by Henry Wilkes at 2024-09-30T15:40:40+01:00 fixup! Bug 41803: Add some developer tools for working on tor-browser. Bug 43157: Move tb-dev to base browser and add support for working in mullvad-browser. Also improve error handling and lint the file. - - - - - 2 changed files: - tools/torbrowser/git-rebase-fixup-preprocessor → tools/base-browser/git-rebase-fixup-preprocessor - tools/torbrowser/tb-dev → tools/base-browser/tb-dev Changes: ===================================== tools/torbrowser/git-rebase-fixup-preprocessor → tools/base-browser/git-rebase-fixup-preprocessor ===================================== ===================================== tools/torbrowser/tb-dev → tools/base-browser/tb-dev ===================================== @@ -4,27 +4,38 @@ Useful tools for working on tor-browser repository. """ -import sys -import termios -import os +import argparse import atexit -import tempfile -import subprocess -import re import json +import os +import re +import subprocess +import sys +import tempfile +import termios import urllib.request -import argparse + import argcomplete GIT_PATH = "/usr/bin/git" -UPSTREAM_URLS = [ - "https://gitlab.torproject.org/tpo/applications/tor-browser.git", - "git@gitlab.torproject.org:tpo/applications/tor-browser.git", -] +UPSTREAM_URLS = { + "tor-browser": [ + "https://gitlab.torproject.org/tpo/applications/tor-browser.git", + "git@gitlab.torproject.org:tpo/applications/tor-browser.git", + ], + "mullvad-browser": [ + "https://gitlab.torproject.org/tpo/applications/mullvad-browser.git", + "git@gitlab.torproject.org:tpo/applications/mullvad-browser.git", + ], +} FIXUP_PREPROCESSOR_EDITOR = "git-rebase-fixup-preprocessor" USER_EDITOR_ENV_NAME = "GIT_REBASE_FIXUP_PREPROCESSOR_USER_EDITOR" +class TbDevException(Exception): + pass + + def git_run(args, check=True, env=None): """ Run a git command with output sent to stdout. @@ -34,16 +45,22 @@ def git_run(args, check=True, env=None): for key, value in env.items(): tmp_env[key] = value env = tmp_env - subprocess.run([GIT_PATH, *args], check=check, env=env) + try: + subprocess.run([GIT_PATH, *args], check=check, env=env) + except subprocess.CalledProcessError as err: + raise TbDevException(str(err)) from err def git_get(args): """ Run a git command with each non-empty line returned in a list. """ - git_process = subprocess.run( - [GIT_PATH, *args], text=True, stdout=subprocess.PIPE, check=True - ) + try: + git_process = subprocess.run( + [GIT_PATH, *args], text=True, stdout=subprocess.PIPE, check=True + ) + except subprocess.CalledProcessError as err: + raise TbDevException(str(err)) from err return [line for line in git_process.stdout.split("\n") if line] @@ -57,35 +74,68 @@ def get_local_root(): global local_root if local_root is None: try: - # Make sure we have a matching remote in this git repository. Should raise Exception if we don't. - get_upstream_name() - git_root = git_get(["rev-parse", "--show-toplevel"])[0] - except Exception: - git_root = None - if git_root is None: + # Make sure we have a matching remote in this git repository. + if get_upstream_details()["is-browser-repo"]: + local_root = git_get(["rev-parse", "--show-toplevel"])[0] + else: + local_root = "" + except TbDevException: local_root = "" - else: - local_root = git_root return local_root -upstream_name = None +def determine_upstream_details(): + """ + Determine details about the upstream. + """ + remote_urls = { + remote: git_get(["remote", "get-url", remote])[0] + for remote in git_get(["remote"]) + } + + matches = { + remote: repo + for repo, url_list in UPSTREAM_URLS.items() + for url in url_list + for remote, fetch_url in remote_urls.items() + if fetch_url == url + } + + is_browser_repo = len(matches) > 0 + details = {"is-browser-repo": is_browser_repo} + origin_remote_repo = matches.get("origin", None) + upstream_remote_repo = matches.get("upstream", None) -def get_upstream_name(): + if origin_remote_repo is not None: + if upstream_remote_repo is None: + details["remote"] = "origin" + details["repo-name"] = origin_remote_repo + # Else, both "upstream" and "origin" point to a remote repo. Not clear + # which should be used. + elif upstream_remote_repo is not None: + details["remote"] = "upstream" + details["repo-name"] = upstream_remote_repo + elif len(matches) == 1: + remote = next(iter(matches.keys())) + details["remote"] = remote + details["repo-name"] = matches[remote] + # Else, the upstream is ambiguous. + + return details + + +cached_upstream_details = None + + +def get_upstream_details(): """ - Get the name of the upstream remote. + Get details about the upstream repository. """ - global upstream_name - if upstream_name is None: - for remote in git_get(["remote"]): - fetch_url = git_get(["remote", "get-url", remote])[0] - if fetch_url in UPSTREAM_URLS: - upstream_name = remote - break - if upstream_name is None: - raise Exception("No upstream remote found.") - return upstream_name + global cached_upstream_details + if cached_upstream_details is None: + cached_upstream_details = determine_upstream_details() + return cached_upstream_details class Reference: @@ -139,7 +189,7 @@ def get_nearest_ref(ref_type, name_start, search_from): if commit == ref.commit: return ref - raise Exception(f"No {name_start} commit found in the last 1000 commits") + raise TbDevException(f"No {name_start} commit found in the last 1000 commits") def get_firefox_ref(search_from): @@ -167,7 +217,7 @@ def get_upstream_basis_commit(search_from): upstream_firefox = get_firefox_ref(upstream_branch).commit search_firefox = get_firefox_ref(search_from).commit if upstream_firefox != search_firefox: - raise Exception( + raise TbDevException( f"Upstream of {search_from} has a different FIREFOX base. " "You might want to set the upstream tracking branch to a new value." ) @@ -210,12 +260,15 @@ def get_gitlab_default(): """ Get the name of the default branch on gitlab. """ - query = """ - query { - project(fullPath: "tpo/applications/tor-browser") { - repository { rootRef } - } - } + repo_name = get_upstream_details().get("repo-name", None) + if repo_name is None: + raise TbDevException("Cannot determine the repository name") + query = f""" + query {{ + project(fullPath: "tpo/applications/{repo_name}") {{ + repository {{ rootRef }} + }} + }} """ request_data = {"query": re.sub(r"\s+", "", query)} gitlab_request = urllib.request.Request( @@ -231,7 +284,7 @@ def get_gitlab_default(): return json.load(response)["data"]["project"]["repository"]["rootRef"] -def within_tor_browser_root(): +def within_browser_root(): """ Whether we are with the tor browser root. """ @@ -279,7 +332,7 @@ def show_files_containing(args): try: regex = re.compile(args.regex) except re.error as err: - raise Exception(f"{args.regex} is not a valid python regex") from err + raise TbDevException(f"{args.regex} is not a valid python regex") from err file_list = get_changed_files(get_firefox_ref("HEAD").commit) @@ -428,7 +481,7 @@ def auto_fixup(_args): staged_files = get_changed_files("HEAD", staged=True) if staged_files: - raise Exception(f"Have already staged files: {staged_files}") + raise TbDevException(f"Have already staged files: {staged_files}") fixups = {} for filename in get_changed_files("HEAD"): @@ -475,7 +528,9 @@ def show_default(_args): Print the default branch name from gitlab. """ default_branch = get_gitlab_default() - upstream = get_upstream_name() + upstream = get_upstream_details().get("remote", None) + if upstream is None: + raise TbDevException("Cannot determine the upstream remote") print(f"{upstream}/{default_branch}") @@ -484,10 +539,20 @@ def branch_from_default(args): Fetch the default gitlab branch from upstream and create a new local branch. """ default_branch = get_gitlab_default() - upstream = get_upstream_name() + upstream = get_upstream_details().get("remote", None) + if upstream is None: + raise TbDevException("Cannot determine the upstream remote") git_run(["fetch", upstream, default_branch]) - git_run(["switch", "--create", args.branchname, "--track", f"{upstream}/{default_branch}"]) + git_run( + [ + "switch", + "--create", + args.branchname, + "--track", + f"{upstream}/{default_branch}", + ] + ) def move_to_default(args): @@ -504,17 +569,21 @@ def move_to_default(args): try: branch_name = git_get(["branch", "--show-current"])[0] except IndexError: - raise Exception("No current branch") + raise TbDevException("No current branch") current_upstream_branch = get_upstream_tracking_branch(branch_name) default_branch = get_gitlab_default() - upstream = get_upstream_name() + upstream = get_upstream_details().get("remote", None) + if upstream is None: + raise TbDevException("Cannot determine the upstream remote") git_run(["fetch", upstream, default_branch]) new_upstream_branch = f"{upstream}/{default_branch}" if current_upstream_branch == new_upstream_branch: - print(f"{branch_name} is already set to track the default branch {new_upstream_branch}.") + print( + f"{branch_name} is already set to track the default branch {new_upstream_branch}." + ) return # We want to avoid checking out the old branch because this can cause @@ -560,7 +629,7 @@ def show_diff_diff(args): """ config_res = git_get(["config", "--get", "diff.tool"]) if not config_res: - raise Exception("No diff.tool configured for git") + raise TbDevException("No diff.tool configured for git") diff_tool = config_res[0] # Filter out parts of the diff we expect to be different. @@ -590,13 +659,13 @@ def show_diff_diff(args): lines_match = lines_regex.match(line) if lines_match: # Fake data that will match. - file.write("@@ ?,? ?,? @@" + lines_match.group('rest')) + file.write("@@ ?,? ?,? @@" + lines_match.group("rest")) continue file.write(line) status = diff_process.poll() if status != 0: - raise Exception(f"git diff exited with status {status}") + raise TbDevException(f"git diff exited with status {status}") return file_name @@ -614,7 +683,7 @@ def branch_complete(prefix, parsed_args, **kwargs): """ Complete the argument with a branch name. """ - if not within_tor_browser_root(): + if not within_browser_root(): return [] try: branches = [ref.name for ref in get_refs("head", "")] @@ -738,8 +807,11 @@ for name, details in { argcomplete.autocomplete(parser) -if not within_tor_browser_root(): - raise Exception("Must be within a tor-browser directory") -parsed_args = parser.parse_args() +try: + if not within_browser_root(): + raise TbDevException("Must be within a browser directory") + parsed_args = parser.parse_args() -parsed_args.func(parsed_args) + parsed_args.func(parsed_args) +except TbDevException as err: + print(f"\x1b[1m{err}\x1b[0m", file=sys.stderr) View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/38fb3e3… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/38fb3e3… 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.0a7
by morgan (@morgan) 27 Sep '24

27 Sep '24
morgan pushed to branch main at The Tor Project / Applications / mullvad-browser-update-responses Commits: 4fda84c5 by Morgan at 2024-09-27T20:32:12+00:00 alpha: new version, 14.0a7 - - - - - 29 changed files: - update_1/alpha/.htaccess - − update_1/alpha/14.0a3-14.0a6-linux-x86_64-ALL.xml - − update_1/alpha/14.0a3-14.0a6-macos-ALL.xml - − update_1/alpha/14.0a3-14.0a6-windows-x86_64-ALL.xml - − update_1/alpha/14.0a4-14.0a6-linux-x86_64-ALL.xml - − update_1/alpha/14.0a4-14.0a6-macos-ALL.xml - − update_1/alpha/14.0a4-14.0a6-windows-x86_64-ALL.xml - + update_1/alpha/14.0a4-14.0a7-linux-x86_64-ALL.xml - + update_1/alpha/14.0a4-14.0a7-macos-ALL.xml - + update_1/alpha/14.0a4-14.0a7-windows-x86_64-ALL.xml - − update_1/alpha/14.0a5-14.0a6-linux-x86_64-ALL.xml - − update_1/alpha/14.0a5-14.0a6-macos-ALL.xml - − update_1/alpha/14.0a5-14.0a6-windows-x86_64-ALL.xml - + update_1/alpha/14.0a5-14.0a7-linux-x86_64-ALL.xml - + update_1/alpha/14.0a5-14.0a7-macos-ALL.xml - + update_1/alpha/14.0a5-14.0a7-windows-x86_64-ALL.xml - + update_1/alpha/14.0a6-14.0a7-linux-x86_64-ALL.xml - + update_1/alpha/14.0a6-14.0a7-macos-ALL.xml - + update_1/alpha/14.0a6-14.0a7-windows-x86_64-ALL.xml - − update_1/alpha/14.0a6-linux-x86_64-ALL.xml - − update_1/alpha/14.0a6-macos-ALL.xml - − update_1/alpha/14.0a6-windows-x86_64-ALL.xml - + update_1/alpha/14.0a7-linux-x86_64-ALL.xml - + update_1/alpha/14.0a7-macos-ALL.xml - + update_1/alpha/14.0a7-windows-x86_64-ALL.xml - update_1/alpha/download-linux-x86_64.json - update_1/alpha/download-macos.json - update_1/alpha/download-windows-x86_64.json - update_1/alpha/downloads.json Changes: ===================================== update_1/alpha/.htaccess ===================================== @@ -1,22 +1,22 @@ RewriteEngine On -RewriteRule ^[^/]+/14.0a6/ no-update.xml [last] -RewriteRule ^Linux_x86_64-gcc3/14.0a3/ALL 14.0a3-14.0a6-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/14.0a4/ALL 14.0a4-14.0a6-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/14.0a5/ALL 14.0a5-14.0a6-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 14.0a6-linux-x86_64-ALL.xml [last] -RewriteRule ^Linux_x86_64-gcc3/ 14.0a6-linux-x86_64-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/14.0a3/ALL 14.0a3-14.0a6-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/14.0a4/ALL 14.0a4-14.0a6-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/14.0a5/ALL 14.0a5-14.0a6-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 14.0a6-macos-ALL.xml [last] -RewriteRule ^Darwin_x86_64-gcc3/ 14.0a6-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/14.0a3/ALL 14.0a3-14.0a6-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/14.0a4/ALL 14.0a4-14.0a6-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/14.0a5/ALL 14.0a5-14.0a6-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 14.0a6-macos-ALL.xml [last] -RewriteRule ^Darwin_aarch64-gcc3/ 14.0a6-macos-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a3/ALL 14.0a3-14.0a6-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a4/ALL 14.0a4-14.0a6-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a5/ALL 14.0a5-14.0a6-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 14.0a6-windows-x86_64-ALL.xml [last] -RewriteRule ^WINNT_x86_64-gcc3-x64/ 14.0a6-windows-x86_64-ALL.xml [last] +RewriteRule ^[^/]+/14.0a7/ no-update.xml [last] +RewriteRule ^Linux_x86_64-gcc3/14.0a4/ALL 14.0a4-14.0a7-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/14.0a5/ALL 14.0a5-14.0a7-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/14.0a6/ALL 14.0a6-14.0a7-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/[^/]+/ALL 14.0a7-linux-x86_64-ALL.xml [last] +RewriteRule ^Linux_x86_64-gcc3/ 14.0a7-linux-x86_64-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/14.0a4/ALL 14.0a4-14.0a7-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/14.0a5/ALL 14.0a5-14.0a7-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/14.0a6/ALL 14.0a6-14.0a7-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/[^/]+/ALL 14.0a7-macos-ALL.xml [last] +RewriteRule ^Darwin_x86_64-gcc3/ 14.0a7-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/14.0a4/ALL 14.0a4-14.0a7-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/14.0a5/ALL 14.0a5-14.0a7-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/14.0a6/ALL 14.0a6-14.0a7-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/[^/]+/ALL 14.0a7-macos-ALL.xml [last] +RewriteRule ^Darwin_aarch64-gcc3/ 14.0a7-macos-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a4/ALL 14.0a4-14.0a7-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a5/ALL 14.0a5-14.0a7-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/14.0a6/ALL 14.0a6-14.0a7-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/[^/]+/ALL 14.0a7-windows-x86_64-ALL.xml [last] +RewriteRule ^WINNT_x86_64-gcc3-x64/ 14.0a7-windows-x86_64-ALL.xml [last] ===================================== update_1/alpha/14.0a3-14.0a6-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a6" appVersion="14.0a6" platformVersion="128.2.0" buildID="20240919190333" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-linux-x86_64-14.0a6_…" hashFunction="SHA512" hashValue="728af318754aa5720f8d35493908b722ebdd4431c9206f9a820bfa1a3836fa86a595f7e6ed78b27bce54174901fbfcdae85f2a6b1bdc7ffeb02fb58a4462f18f" size="113929961" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-linux-x86_64--14.0a3…" hashFunction="SHA512" hashValue="5a6404cd5683eaafaf806738a0d0e23b12c62de8606754f4547efd896c79251cc5e174769b4b782ddd05b962298a558c850a38be601438d5a16717892a8c2ef8" size="4767116" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a3-14.0a6-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a6" appVersion="14.0a6" platformVersion="128.2.0" buildID="20240919190333" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-macos-14.0a6_ALL.mar" hashFunction="SHA512" hashValue="92a2cf5ebd8ac30ec1cc0705fc44b0098ca2e920b67f041bd8ad3eda1a5de63a5e171ebffe25c9f9f1677496d3e068fee844e7117bc653737dcc2db645445cc3" size="128974870" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-macos--14.0a3-14.0a6…" hashFunction="SHA512" hashValue="9b63c6e974157c07752748b854a147927f52bbd529d41e577a93447768775901352aaaaa6b88d0c0ad8340fa58537623ad7f0fb325b9bd516e0ae4d61a8b3e90" size="8393928" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a3-14.0a6-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a6" appVersion="14.0a6" platformVersion="128.2.0" buildID="20240919190333" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="f661ba58880dcd3b1051217366c7b4d8d80dfb7b95c76608684c3fd0fd1aa5c5feee505d51ccbbed264e940b1c7f0b99af9279c67479bfb2ca198a3c7536262e" size="94937312" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="46a79f5897baf136bdada04a5276d45b08c2c5fd8a128f520f9f7d305ba673a387118154d4b1bb6dbb2542fae6bb09bb03a9a3bfcc14b1ce5f348aedae90bf19" size="4062221" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a4-14.0a6-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a6" appVersion="14.0a6" platformVersion="128.2.0" buildID="20240919190333" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-linux-x86_64-14.0a6_…" hashFunction="SHA512" hashValue="728af318754aa5720f8d35493908b722ebdd4431c9206f9a820bfa1a3836fa86a595f7e6ed78b27bce54174901fbfcdae85f2a6b1bdc7ffeb02fb58a4462f18f" size="113929961" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-linux-x86_64--14.0a4…" hashFunction="SHA512" hashValue="6a3bf5489f260df27b1511edc7e3ed301ca59059e6e99db5a8e505e11a638a825520aa615271d39f1aef2a614557ea1a618f15ee9acf1f2a94f9ba9275763e4a" size="3694112" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a4-14.0a6-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a6" appVersion="14.0a6" platformVersion="128.2.0" buildID="20240919190333" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-macos-14.0a6_ALL.mar" hashFunction="SHA512" hashValue="92a2cf5ebd8ac30ec1cc0705fc44b0098ca2e920b67f041bd8ad3eda1a5de63a5e171ebffe25c9f9f1677496d3e068fee844e7117bc653737dcc2db645445cc3" size="128974870" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-macos--14.0a4-14.0a6…" hashFunction="SHA512" hashValue="6c7ce7e77f8b27d8725ad6c5d33f1d3a3aa6d10251763878a3ba0ff7df09a146b24508283dba77315ceeab7390bde7a29dddbee89cded64fa319ece399a62dda" size="6880236" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a4-14.0a6-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a6" appVersion="14.0a6" platformVersion="128.2.0" buildID="20240919190333" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="f661ba58880dcd3b1051217366c7b4d8d80dfb7b95c76608684c3fd0fd1aa5c5feee505d51ccbbed264e940b1c7f0b99af9279c67479bfb2ca198a3c7536262e" size="94937312" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="199aefa66d3dd82dc51802eab654dfca462f25c2d545f223c59f2da9edd7164fe697c032c57c145594b227c495a66b3e03186bcbbdb390e8a5df8e4a311d4769" size="3513113" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a4-14.0a7-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7_…" hashFunction="SHA512" hashValue="5e24cd984455df47644007d7f8a46327edf70af4d8f7c551723d90774a7c420d744bbd2d454431ff914a02aa0235daac2091a6b1d8f97e835658dc262080c9c6" size="113987869" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64--14.0a4…" hashFunction="SHA512" hashValue="3fdd50f5537a528acd621f1150fd6c4680fcb0992614c0e1df8d838feb9060582f2ec1c2ac219552c45757d7bd7ab6bc34d2f28b438630b7715cd327127fbcf4" size="7001267" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a4-14.0a7-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7_ALL.mar" hashFunction="SHA512" hashValue="d6fccf821566ed85c7937bc689f314cc6cfbcbaa12ec0c160982682df40376ca5037b6bb042d49131eabc7f989f90286ba12cd00f44b9971618d3fa3c0dc2b6c" size="129029378" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos--14.0a4-14.0a7…" hashFunction="SHA512" hashValue="e5e387581a008386320d64a8b55943e519a3e164c8117be5e109de32785d19a8278dadd6ec1a21c421ed77f79075f821dea17548e0d0bee5750935af57fe788d" size="12008441" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a4-14.0a7-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="7c151dfcd7be3a8e5ad43a4ff3402a1bfcc7813ace5f4ee735e0d20c0e491b7ad2c1c7580c67db02ff049f71ab71ed26adb67233fcc25e8131086d3280e57923" size="95008024" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="5e5b5965a268a50b83521a6a88e627a72a72ade2c47b19763a8c312474e47a79f052c10192340c7a646e8066b0caee2f06dee95cf0dba25feabce60d2f709bbe" size="7472142" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a5-14.0a6-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a6" appVersion="14.0a6" platformVersion="128.2.0" buildID="20240919190333" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-linux-x86_64-14.0a6_…" hashFunction="SHA512" hashValue="728af318754aa5720f8d35493908b722ebdd4431c9206f9a820bfa1a3836fa86a595f7e6ed78b27bce54174901fbfcdae85f2a6b1bdc7ffeb02fb58a4462f18f" size="113929961" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-linux-x86_64--14.0a5…" hashFunction="SHA512" hashValue="79f6c4cf63fafe2b040e91faba00bf321e59be4ff73d08bc949e1fa9a6f7cedc34e389c262f3e920a5991273c771dd775884f24310ee95d37d00fb2696e8b095" size="3470667" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a5-14.0a6-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a6" appVersion="14.0a6" platformVersion="128.2.0" buildID="20240919190333" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-macos-14.0a6_ALL.mar" hashFunction="SHA512" hashValue="92a2cf5ebd8ac30ec1cc0705fc44b0098ca2e920b67f041bd8ad3eda1a5de63a5e171ebffe25c9f9f1677496d3e068fee844e7117bc653737dcc2db645445cc3" size="128974870" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-macos--14.0a5-14.0a6…" hashFunction="SHA512" hashValue="09807c2236505e60d8d30021cac6593a767f214088a043f06aa64c44120393c7626e8c4999edcf0a67dfcea2f6be3b87d04dc5bb3304316e4750bb29cde1db30" size="6626368" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a5-14.0a6-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a6" appVersion="14.0a6" platformVersion="128.2.0" buildID="20240919190333" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="f661ba58880dcd3b1051217366c7b4d8d80dfb7b95c76608684c3fd0fd1aa5c5feee505d51ccbbed264e940b1c7f0b99af9279c67479bfb2ca198a3c7536262e" size="94937312" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="7189899321271075586a6292330e49e608b1ccc005601d14ceb961b19c481a9fdb881f8bb94d7c9e131914cfa8dbcb4f2bdfd88813d890aaa189029bf1c5762b" size="3273844" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a5-14.0a7-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7_…" hashFunction="SHA512" hashValue="5e24cd984455df47644007d7f8a46327edf70af4d8f7c551723d90774a7c420d744bbd2d454431ff914a02aa0235daac2091a6b1d8f97e835658dc262080c9c6" size="113987869" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64--14.0a5…" hashFunction="SHA512" hashValue="7950fbaa6f2e2558468c22d9b058de4a45ec7b11643911f33c1043a2a1c628865c157ad140bb358359cafc3fc3c6cec51a7543cfd389ef8d19dd59bf4e3a0219" size="6865471" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a5-14.0a7-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7_ALL.mar" hashFunction="SHA512" hashValue="d6fccf821566ed85c7937bc689f314cc6cfbcbaa12ec0c160982682df40376ca5037b6bb042d49131eabc7f989f90286ba12cd00f44b9971618d3fa3c0dc2b6c" size="129029378" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos--14.0a5-14.0a7…" hashFunction="SHA512" hashValue="9cab93fc5292d65acf454414cfe56325f0bf1531a60b7b61a33cde6a2ad1a51adf630b71b3a0c4cd213c5ecf215511a211e4ba3ecd8be5e9952064e68550c46f" size="11855125" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a5-14.0a7-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="7c151dfcd7be3a8e5ad43a4ff3402a1bfcc7813ace5f4ee735e0d20c0e491b7ad2c1c7580c67db02ff049f71ab71ed26adb67233fcc25e8131086d3280e57923" size="95008024" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="47b7a57ca5b7b1eb77f39718d1ddc2dcfd1aa87449cee0c5933b5c3cfabd74bb034f0b277196bc1baba24661d19c618fefed62459cf1d48ef7b3c18e3486a9e5" size="7329762" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a6-14.0a7-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7_…" hashFunction="SHA512" hashValue="5e24cd984455df47644007d7f8a46327edf70af4d8f7c551723d90774a7c420d744bbd2d454431ff914a02aa0235daac2091a6b1d8f97e835658dc262080c9c6" size="113987869" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64--14.0a6…" hashFunction="SHA512" hashValue="74f4065215a7825ca7fadba68db150bedadcb9527333bde5eaec2508a74bab57ec48335a73f144ce9bb1a8a33105b73ac0691480390ef9984f9591b7fa79fb40" size="6838327" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a6-14.0a7-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7_ALL.mar" hashFunction="SHA512" hashValue="d6fccf821566ed85c7937bc689f314cc6cfbcbaa12ec0c160982682df40376ca5037b6bb042d49131eabc7f989f90286ba12cd00f44b9971618d3fa3c0dc2b6c" size="129029378" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos--14.0a6-14.0a7…" hashFunction="SHA512" hashValue="c3c199a7f54bd103194aaabafd7b10ce17873c6b491a8b77edb3a4d75e8853c626958d54dd2f735ddbd388c7750d202153650e35fb65db1c756141897a53aa31" size="11712465" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a6-14.0a7-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="7c151dfcd7be3a8e5ad43a4ff3402a1bfcc7813ace5f4ee735e0d20c0e491b7ad2c1c7580c67db02ff049f71ab71ed26adb67233fcc25e8131086d3280e57923" size="95008024" type="complete"></patch><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64--14.0…" hashFunction="SHA512" hashValue="16ee78b84b979dc7071812e059443beb1216b322ccd2c17e6ecfd47a9b1e40eaf24d5d3bd82dd3eb223c4f991f8d3e3bcc05696c27229f7db451377215ff2b78" size="7154414" type="partial"></patch></update></updates> ===================================== update_1/alpha/14.0a6-linux-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a6" appVersion="14.0a6" platformVersion="128.2.0" buildID="20240919190333" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-linux-x86_64-14.0a6_…" hashFunction="SHA512" hashValue="728af318754aa5720f8d35493908b722ebdd4431c9206f9a820bfa1a3836fa86a595f7e6ed78b27bce54174901fbfcdae85f2a6b1bdc7ffeb02fb58a4462f18f" size="113929961" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a6-macos-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a6" appVersion="14.0a6" platformVersion="128.2.0" buildID="20240919190333" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-macos-14.0a6_ALL.mar" hashFunction="SHA512" hashValue="92a2cf5ebd8ac30ec1cc0705fc44b0098ca2e920b67f041bd8ad3eda1a5de63a5e171ebffe25c9f9f1677496d3e068fee844e7117bc653737dcc2db645445cc3" size="128974870" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a6-windows-x86_64-ALL.xml deleted ===================================== @@ -1,2 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<updates><update type="minor" displayVersion="14.0a6" appVersion="14.0a6" platformVersion="128.2.0" buildID="20240919190333" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a6" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="f661ba58880dcd3b1051217366c7b4d8d80dfb7b95c76608684c3fd0fd1aa5c5feee505d51ccbbed264e940b1c7f0b99af9279c67479bfb2ca198a3c7536262e" size="94937312" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a7-linux-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedInstructionSet="SSE2"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7_…" hashFunction="SHA512" hashValue="5e24cd984455df47644007d7f8a46327edf70af4d8f7c551723d90774a7c420d744bbd2d454431ff914a02aa0235daac2091a6b1d8f97e835658dc262080c9c6" size="113987869" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a7-macos-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="19.0.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7_ALL.mar" hashFunction="SHA512" hashValue="d6fccf821566ed85c7937bc689f314cc6cfbcbaa12ec0c160982682df40376ca5037b6bb042d49131eabc7f989f90286ba12cd00f44b9971618d3fa3c0dc2b6c" size="129029378" type="complete"></patch></update></updates> ===================================== update_1/alpha/14.0a7-windows-x86_64-ALL.xml ===================================== @@ -0,0 +1,2 @@ +<?xml version="1.0" encoding="UTF-8"?> +<updates><update type="minor" displayVersion="14.0a7" appVersion="14.0a7" platformVersion="128.3.0" buildID="20240927001933" detailsURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" actions="showURL" openURL="https://github.com/mullvad/mullvad-browser/releases/14.0a7" minSupportedOSVersion="10.0"><patch URL="https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…" hashFunction="SHA512" hashValue="7c151dfcd7be3a8e5ad43a4ff3402a1bfcc7813ace5f4ee735e0d20c0e491b7ad2c1c7580c67db02ff049f71ab71ed26adb67233fcc25e8131086d3280e57923" size="95008024" type="complete"></patch></update></updates> ===================================== update_1/alpha/download-linux-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-linux-x86_64-14.0a6.…","git_tag":"mb-14.0a6-build1","sig":"https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-linux-x86_64-14.0a6.…","version":"14.0a6"} \ No newline at end of file +{"binary":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7.…","git_tag":"mb-14.0a7-build1","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7.…","version":"14.0a7"} \ No newline at end of file ===================================== update_1/alpha/download-macos.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-macos-14.0a6.dmg","git_tag":"mb-14.0a6-build1","sig":"https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-macos-14.0a6.dmg.asc","version":"14.0a6"} \ No newline at end of file +{"binary":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7.dmg","git_tag":"mb-14.0a7-build1","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7.dmg.asc","version":"14.0a7"} \ No newline at end of file ===================================== update_1/alpha/download-windows-x86_64.json ===================================== @@ -1 +1 @@ -{"binary":"https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-windows-x86_64-14.0a…","git_tag":"mb-14.0a6-build1","sig":"https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-windows-x86_64-14.0a…","version":"14.0a6"} \ No newline at end of file +{"binary":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…","git_tag":"mb-14.0a7-build1","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…","version":"14.0a7"} \ No newline at end of file ===================================== update_1/alpha/downloads.json ===================================== @@ -1 +1 @@ -{"downloads":{"linux-x86_64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-linux-x86_64-14.0a6.…","sig":"https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-linux-x86_64-14.0a6.…"}},"macos":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-macos-14.0a6.dmg","sig":"https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-macos-14.0a6.dmg.asc"}},"win64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-windows-x86_64-14.0a…","sig":"https://cdn.mullvad.net/browser/14.0a6/mullvad-browser-windows-x86_64-14.0a…"}}},"tag":"mb-14.0a6-build1","version":"14.0a6"} \ No newline at end of file +{"downloads":{"linux-x86_64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7.…","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-linux-x86_64-14.0a7.…"}},"macos":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7.dmg","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-macos-14.0a7.dmg.asc"}},"win64":{"ALL":{"binary":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…","sig":"https://cdn.mullvad.net/browser/14.0a7/mullvad-browser-windows-x86_64-14.0a…"}}},"tag":"mb-14.0a7-build1","version":"14.0a7"} \ No newline at end of file View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser-update-respo… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser-update-respo… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-update-responses][main] alpha: new version, 14.0a7
by morgan (@morgan) 27 Sep '24

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

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

27 Sep '24
morgan pushed new tag tbb-14.0a7-build1 at The Tor Project / Applications / tor-browser-build -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/tree/tbb… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][main] Bug 41241, 41242: Prepare Tor, Mullvad Browser 14.0a7
by morgan (@morgan) 27 Sep '24

27 Sep '24
morgan pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: afae53db by Morgan at 2024-09-27T00:23:09+00:00 Bug 41241,41242: Prepare Tor,Mullvad Browser 14.0a7 - - - - - 7 changed files: - projects/browser/Bundle-Data/Docs-MB/ChangeLog.txt - projects/browser/Bundle-Data/Docs-TBB/ChangeLog.txt - projects/browser/config - projects/firefox/config - projects/geckoview/config - projects/translation/config - rbm.conf Changes: ===================================== projects/browser/Bundle-Data/Docs-MB/ChangeLog.txt ===================================== @@ -1,3 +1,18 @@ +Mullvad Browser 14.0a7 - September 27 2024 + * All Platforms + * Updated Firefox to 128.3.0esr + * Updated NoScript to 11.4.40 + * Bug 355: Rebase Mullvad Browser Alpha onto Firefox 128.3.0esr [mullvad-browser] + * Bug 42070: Backport Bugzilla 1834307 and hide smooth-scroll UX [tor-browser] + * Bug 42362: "New window" missing from File menu [tor-browser] + * Bug 42742: Inconsistent use of "New private window" vs "New window" [tor-browser] + * Bug 42832: Download spam prevention should not affect browser extensions [tor-browser] + * Bug 43163: Disable offscreen canvas until verified it is not fingerprintable [tor-browser] + * Bug 41248: Check and update bundled font versions [tor-browser-build] + * Build System + * All Platforms + * Bug 41236: Remove binutils when not needed [tor-browser-build] + Mullvad Browser 14.0a6 - September 19 2024 * All Platforms * Bug 344: set media.navigator.enabled = true [mullvad-browser] ===================================== projects/browser/Bundle-Data/Docs-TBB/ChangeLog.txt ===================================== @@ -1,3 +1,36 @@ +Tor Browser 14.0a7 - September 27 2024 + * All Platforms + * Updated NoScript to 11.4.40 + * Bug 42832: Download spam prevention should not affect browser extensions [tor-browser] + * Bug 43163: Disable offscreen canvas until verified it is not fingerprintable [tor-browser] + * Bug 43166: Rebase Tor Browser alpha onto Firefox 128.3.0esr [tor-browser] + * Windows + macOS + Linux + * Updated Firefox to 128.3.0esr + * Bug 42070: Backport Bugzilla 1834307 and hide smooth-scroll UX [tor-browser] + * Bug 42362: "New window" missing from File menu [tor-browser] + * Bug 42742: Inconsistent use of "New private window" vs "New window" [tor-browser] + * Bug 41248: Check and update bundled font versions [tor-browser-build] + * Android + * Updated GeckoView to 128.3.0esr + * Bug 43172: remove remote settings and SERPTelemetry [tor-browser] + * Build System + * All Platforms + * Updated Go to 1.23.1 + * Bug 41236: Remove binutils when not needed [tor-browser-build] + * Windows + macOS + Linux + * Bug 41246: Add updater rewriterules to make 13.5a10 a watershed [tor-browser-build] + +Tor Browser 13.5a10 - September 25 2024 + * Windows + macOS + Linux + * Updated Firefox to 115.15.0esr + * Updated NoScript to 11.4.37 + * Updated OpenSSL to 3.0.15 + * Windows + macOS + * Bug 42747: Windows 7/8 and macOS 10.12-10.14 Legacy/Maintenance [tor-browser] + * Build System + * Windows + macOS + Linux + * Updated Go to 1.21.12 + Tor Browser 14.0a6 - September 19 2024 * All Platforms * Bug 42831: Remove the shopping components [tor-browser] ===================================== projects/browser/config ===================================== @@ -108,9 +108,9 @@ input_files: enable: '[% ! c("var/android") %]' - filename: Bundle-Data enable: '[% ! c("var/android") %]' - - URL: https://addons.mozilla.org/firefox/downloads/file/4349514/noscript-11.4.37.… + - URL: https://addons.mozilla.org/firefox/downloads/file/4357325/noscript-11.4.40.… name: noscript - sha256sum: 5e9921599c63e0b357851ea7ca1354554b3af2c676bbbfff5687cafce4396c18 + sha256sum: 242ead426159d871480a13062cbee08abc97da746cdc5c643aee2692e9adbbb2 - URL: https://addons.mozilla.org/firefox/downloads/file/4328681/ublock_origin-1.5… name: ublock-origin sha256sum: 1db9c676a07d141f8d36dbbc24f9e3d64a6cc2340dbfc6c848bc4395f96cfb14 ===================================== projects/firefox/config ===================================== @@ -14,12 +14,12 @@ container: use_container: 1 var: - firefox_platform_version: '128.2.0' + firefox_platform_version: '128.3.0' firefox_version: '[% c("var/firefox_platform_version") %]esr' browser_series: '14.0' browser_rebase: 1 browser_branch: '[% c("var/browser_series") %]-[% c("var/browser_rebase") %]' - browser_build: 6 + browser_build: 2 branding_directory_prefix: 'tb' copyright_year: '[% exec("git show -s --format=%ci").remove("-.*") %]' nightly_updates_publish_dir: '[% c("var/nightly_updates_publish_dir_prefix") %]nightly-[% c("var/osname") %]' @@ -107,7 +107,7 @@ targets: gitlab_project: https://gitlab.torproject.org/tpo/applications/mullvad-browser updater_url: 'https://cdn.mullvad.net/browser/update_responses/update_1/' nightly_updates_publish_dir_prefix: mullvadbrowser- - browser_build: 4 + browser_build: 1 linux-x86_64: var: ===================================== projects/geckoview/config ===================================== @@ -16,12 +16,12 @@ container: build_apk: 1 var: - firefox_platform_version: '128.2.0' + firefox_platform_version: '128.3.0' geckoview_version: '[% c("var/firefox_platform_version") %]esr' browser_series: '14.0' browser_rebase: 1 browser_branch: '[% c("var/browser_series") %]-[% c("var/browser_rebase") %]' - browser_build: 6 + browser_build: 2 copyright_year: '[% exec("git show -s --format=%ci").remove("-.*") %]' gitlab_project: https://gitlab.torproject.org/tpo/applications/tor-browser git_commit: '[% exec("git rev-parse HEAD") %]' ===================================== projects/translation/config ===================================== @@ -18,13 +18,13 @@ steps: git_hash: 'base-browser' tor-browser: tor-browser: '[% INCLUDE build %]' - git_hash: 92b97bec9c21cc8881bee506bd75e05bab7578a3 + git_hash: 816fcde248e0e25c8ad921d25ec97a374a59ed94 targets: nightly: git_hash: 'tor-browser' mullvad-browser: mullvad-browser: '[% INCLUDE build %]' - git_hash: bff8092bbe5ae93b2c162ade300d739b2cd9e92d + git_hash: 78212a3da2439e436ac5f73d8e3eb908145c3ece targets: nightly: git_hash: 'mullvad-browser' @@ -32,7 +32,7 @@ steps: fenix: '[% INCLUDE build %]' # We need to bump the commit before releasing but just pointing to a branch # might cause too much rebuidling of the Firefox part. - git_hash: 0f1821e7e70c8ae3d8d59b9d889d95c135913bd9 + git_hash: 12b033e4192448315794f5fe8203fe91dcc29a8c compress_tar: 'zst' targets: nightly: ===================================== rbm.conf ===================================== @@ -73,18 +73,18 @@ buildconf: git_signtag_opt: '-s' var: - torbrowser_version: '14.0a6' + torbrowser_version: '14.0a7' torbrowser_build: 'build1' # This should be the date of when the build is started. For the build # to be reproducible, browser_release_date should always be in the past. - browser_release_date: '2024/09/19 19:03:33' + browser_release_date: '2024/09/27 00:19:33' browser_release_date_timestamp: '[% USE date; date.format(c("var/browser_release_date"), "%s") %]' updater_enabled: 1 build_mar: 1 torbrowser_incremental_from: + - 14.0a6 - 14.0a5 - 14.0a4 - - 14.0a3 mar_channel_id: '[% c("var/projectname") %]-torproject-[% c("var/channel") %]' # By default, we sort the list of installed packages. This allows sharing View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/a… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/a… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/mullvad-browser] Pushed new tag mullvad-browser-128.3.0esr-14.0-1-build1
by morgan (@morgan) 27 Sep '24

27 Sep '24
morgan pushed new tag mullvad-browser-128.3.0esr-14.0-1-build1 at The Tor Project / Applications / Mullvad Browser -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/tree/mullv… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser] Pushed new tag tor-browser-128.3.0esr-14.0-1-build2
by morgan (@morgan) 27 Sep '24

27 Sep '24
morgan pushed new tag tor-browser-128.3.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/tor-brows… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/mullvad-browser][mullvad-browser-128.3.0esr-14.0-1] 24 commits: MB 38: Mullvad Browser configuration
by morgan (@morgan) 27 Sep '24

27 Sep '24
morgan pushed to branch mullvad-browser-128.3.0esr-14.0-1 at The Tor Project / Applications / Mullvad Browser Commits: 8fc39062 by Pier Angelo Vendrame at 2024-09-26T23:15:10+02:00 MB 38: Mullvad Browser configuration - - - - - a2cba9dd by Morgan at 2024-09-26T23:15:14+02:00 fixup! MB 38: Mullvad Browser configuration - - - - - c5afee5d by Richard Pospesel at 2024-09-26T23:15:15+02:00 fixup! MB 38: Mullvad Browser configuration Bug 222: Hide &#39;List all tabs&#39; when the tabs don&#39;t overflow - - - - - 2a24e82a by Pier Angelo Vendrame at 2024-09-26T23:15:15+02:00 fixup! MB 38: Mullvad Browser configuration MB 344: Remove media.navigator.enabled = false on MB. RFP spoof the values protected by this preference. We do not do the same on Tor Browser because this functionality depends on WebRTC, which is disabled at build time on TBB. - - - - - 23191f67 by Pier Angelo Vendrame at 2024-09-26T23:15:15+02:00 MB 1: Mullvad Browser branding See also: mullvad-browser#5: Product name and directory customization mullvad-browser#12: Create new branding directories and integrate Mullvad icons+branding mullvad-browser#14: Remove Default Built-in bookmarks mullvad-browser#35: Add custom PDF icons for Windows builds mullvad-browser#48: Replace Mozilla copyright and legal trademarks in mullvadbrowser.exe metadata mullvad-browser#51: Update trademark string mullvad-browser#104: Update shipped dll metadata copyright/licensing info mullvad-browser#107: Add alpha and nightly icons - - - - - 1d865fd0 by Pier Angelo Vendrame at 2024-09-26T23:15:16+02:00 MB 20: Allow packaged-addons in PBM. We install a few addons from the distribution directory, but they are not automatically enabled for PBM mode. This commit modifies the code that installs them to also add the PBM permission to the known ones. - - - - - 4d3ac4fa by Pier Angelo Vendrame at 2024-09-26T23:15:16+02:00 MB 63: Customize some about pages for Mullvad Browser Also: mullvad-browser#57: Purge unneeded about: pages - - - - - 15b4f467 by Pier Angelo Vendrame at 2024-09-26T23:15:16+02:00 MB 37: Customization for the about dialog - - - - - e8e6652d by Henry Wilkes at 2024-09-26T23:15:17+02:00 MB 39: Add home page about:mullvad-browser - - - - - 45b7ca93 by hackademix at 2024-09-26T23:15:17+02:00 MB 97: Remove UI cues to install new extensions. - - - - - 00d91791 by hackademix at 2024-09-26T23:15:17+02:00 MB 47: uBlock Origin customization - - - - - 07bf113a by Pier Angelo Vendrame at 2024-09-26T23:15:18+02:00 MB 21: Disable the password manager This commit disables the about:login page and removes the &quot;Login and Password&quot; section of about:preferences. We do not do anything to the real password manager of Firefox, that is in toolkit: it contains C++ parts that make it difficult to actually prevent it from being built.. Finally, we modify the the function that opens about:login to report an error in the console so that we can quickly get a backtrace to the code that tries to use it. - - - - - 79a49471 by Pier Angelo Vendrame at 2024-09-26T23:15:18+02:00 MB 112: Updater customization for Mullvad Browser MB 71: Set the updater base URL to Mullvad domain - - - - - 94842cc1 by Nicolas Vigier at 2024-09-26T23:15:19+02:00 MB 79: Add Mullvad Browser MAR signing keys MB 256: Add mullvad-browser nightly mar signing key - - - - - dae4c978 by Pier Angelo Vendrame at 2024-09-26T23:15:19+02:00 MB 34: Hide unsafe and unwanted preferences UI about:preferences allow to override some of our defaults, that could be fingeprintable or have some other unwanted consequences. - - - - - 6f59241f by Pier Angelo Vendrame at 2024-09-27T00:00:26+00:00 MB 160: Disable the cookie exceptions button Besides disabling the &quot;Delete on close checkbox&quot;, disable also the &quot;Manage Exceptions&quot; button when always using PBM. - - - - - e84a20e4 by hackademix at 2024-09-27T00:00:26+00:00 MB 163: prevent uBlock Origin from being uninstalled/disabled - - - - - 350b19e0 by Richard Pospesel at 2024-09-27T00:00:27+00:00 MB 188: Customize Gitlab Issue and Merge templates - - - - - cbec5612 by rui hildt at 2024-09-27T00:00:27+00:00 MB 213: Customize the search engines list - - - - - 79721f60 by Pier Angelo Vendrame at 2024-09-27T00:00:28+00:00 squash! MB 213: Customize the search engines list MB 328: Refactor the search engine patch. Upstream switched to a completely different search engine configuration between ESR 115 and ESR 128. We moved our configuration to a couple of JSON files that do not follow upstream&#39;s schemas, as they are overcomplicated for our needs. Also, we keep the old search engine extensions for now, as upstream also kept them, and planned of removing them with Bug 1885953. - - - - - 832f998a by hackademix at 2024-09-27T00:00:28+00:00 MB 214: Enable cross-tab identity leak protection in &quot;quiet&quot; mode - - - - - 151ac295 by Pier Angelo Vendrame at 2024-09-27T00:00:28+00:00 MB 80: Enable Mullvad Browser as a default browser - - - - - 57d2cd5a by Pier Angelo Vendrame at 2024-09-27T00:00:29+00:00 MB 320: Temporarily disable WebRTC and WDBA on Windows. WebRTC should be re-enabled when tor-browser#42758 is resolved, and and the default browser agent when in general we make this feature work again. - - - - - 564c9f37 by Henry Wilkes at 2024-09-27T00:00:29+00:00 MB 329: Customize toolbar for mullvad-browser. - - - - - 30 changed files: - .gitlab/issue_templates/Emergency Security Issue.md - + .gitlab/issue_templates/Rebase Browser - Alpha.md - + .gitlab/issue_templates/Rebase Browser - Stable.md - .gitlab/merge_request_templates/default.md - browser/app/Makefile.in - browser/app/macbuild/Contents/Info.plist.in - browser/app/module.ver - browser/app/firefox.exe.manifest → browser/app/mullvadbrowser.exe.manifest - + browser/app/profile/000-mullvad-browser.js - browser/app/profile/001-base-profile.js - browser/base/content/aboutDialog.xhtml - browser/base/content/appmenu-viewcache.inc.xhtml - browser/base/content/browser-menubar.inc - browser/base/content/browser-places.js - browser/base/content/browser.js - browser/base/content/default-bookmarks.html - browser/base/content/nsContextMenu.js - browser/base/content/overrides/app-license.html - browser/base/content/pageinfo/pageInfo.xhtml - browser/base/content/utilityOverlay.js - browser/branding/branding-common.mozbuild - + browser/branding/mb-alpha/VisualElements_150.png - + browser/branding/mb-alpha/VisualElements_70.png - + browser/branding/mb-alpha/configure.sh - + browser/branding/mb-alpha/content/about-logo.png - + browser/branding/mb-alpha/content/about-logo.svg - + browser/branding/mb-alpha/content/about-logo(a)2x.png - + browser/branding/mb-alpha/content/about-wordmark.svg - + browser/branding/mb-alpha/content/about.png - + browser/branding/mb-alpha/content/aboutDialog.css The diff was not included because it is too large. View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/46… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/46… 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 41248: Updated bundled fonts.
by morgan (@morgan) 26 Sep '24

26 Sep '24
morgan pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: d4ed8d75 by Pier Angelo Vendrame at 2024-09-26T20:03:12+02:00 Bug 41248: Updated bundled fonts. - - - - - 1 changed file: - projects/fonts/config Changes: ===================================== projects/fonts/config ===================================== @@ -5,8 +5,8 @@ container: # We just copy files around, no need to use a container. use_container: 0 var: - # noto-monthly-release-23.9.1 - noto_git_hash: c890f6fec6fa37740f23fffdd2a28e156f3837a3 + # noto-monthly-release-24.9.1 + noto_git_hash: eeb71fdda20300eb0891badeed5e64850e2cbc64 # Use this way so that the script that downloads the fonts can access the # lists of all the targets. noto_fonts_common: View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/d… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/d… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
  • ← Newer
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • ...
  • 25
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.