apps: Provide arm64 app build by default for macOS.

This reduces confusion amount users when they download the
intel version and it works super slow. Downloading the arm64
version on an intel mac would just not work.

Users who use intel macs have a habit now (atleast me) to look
for `Intel` version of software when downloading an app. So, made
`Intel` bold to help that process.
This commit is contained in:
Aman Agrawal
2025-03-27 08:45:27 +05:30
committed by Tim Abbott
parent 1e4eec9803
commit 83d917853e
5 changed files with 32 additions and 11 deletions

View File

@@ -37,7 +37,8 @@ def verify_release_download_link(link: str) -> bool:
PLATFORM_TO_SETUP_FILE = {
"linux": "Zulip-{version}-x86_64.AppImage",
"mac": "Zulip-{version}-x64.dmg",
"mac": "Zulip-{version}-arm64.dmg",
"mac-intel": "Zulip-{version}-x64.dmg",
"mac-arm64": "Zulip-{version}-arm64.dmg",
"windows": "Zulip-Web-Setup-{version}.exe",
}