Skip to content

Commit d234f31

Browse files
committed
Add Linux ARM builds to downloads
1 parent 494a121 commit d234f31

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

src/app/downloads/config.tsx

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ export interface ReleaseDownloads {
3434
windows_64?: string;
3535
windows_32?: string;
3636
macos?: string;
37-
linux?: string;
37+
linux_x86_64?: string;
38+
linux_aarch64?: string;
3839
flatpak?: string;
3940

4041
firefox?: string;
@@ -49,7 +50,8 @@ export const FilenamePatterns: Record<DownloadKey, string | null> = {
4950
windows_64: "-windows-x86_64",
5051
windows_32: "-windows-x86_32",
5152
macos: "-macos",
52-
linux: "-linux",
53+
linux_x86_64: "-linux-x86_64",
54+
linux_aarch64: "-linux-aarch64",
5355
firefox: "-firefox-unsigned",
5456
chromium: "-extension.",
5557
web: "-selfhosted",
@@ -147,13 +149,21 @@ export const desktopLinks: DownloadLink[] = [
147149
isDeviceRelevant: (device) => device.linux,
148150
},
149151
{
150-
key: "linux",
151-
shortName: "Linux",
152+
key: "linux_x86_64",
153+
shortName: "Linux (x86_64)",
152154
longName: "Linux Executable",
153155
icon: IconBrandLinux,
154156
isRecommended: true,
155157
isDeviceRelevant: (device) => device.desktop && device.linux,
156158
},
159+
{
160+
key: "linux_aarch64",
161+
shortName: "Linux (ARM64)",
162+
longName: "Linux Executable",
163+
icon: IconBrandLinux,
164+
isRecommended: true,
165+
isDeviceRelevant: () => false,
166+
},
157167
];
158168

159169
export const extensionLinks: DownloadLink[] = [

0 commit comments

Comments
 (0)