@@ -34,7 +34,8 @@ export interface ReleaseDownloads {
34
34
windows_64 ?: string ;
35
35
windows_32 ?: string ;
36
36
macos ?: string ;
37
- linux ?: string ;
37
+ linux_x86_64 ?: string ;
38
+ linux_aarch64 ?: string ;
38
39
flatpak ?: string ;
39
40
40
41
firefox ?: string ;
@@ -49,7 +50,8 @@ export const FilenamePatterns: Record<DownloadKey, string | null> = {
49
50
windows_64 : "-windows-x86_64" ,
50
51
windows_32 : "-windows-x86_32" ,
51
52
macos : "-macos" ,
52
- linux : "-linux" ,
53
+ linux_x86_64 : "-linux-x86_64" ,
54
+ linux_aarch64 : "-linux-aarch64" ,
53
55
firefox : "-firefox-unsigned" ,
54
56
chromium : "-extension." ,
55
57
web : "-selfhosted" ,
@@ -115,15 +117,15 @@ export interface DownloadLink {
115
117
export const desktopLinks : DownloadLink [ ] = [
116
118
{
117
119
key : "windows_64" ,
118
- shortName : "Windows (64-bit )" ,
120
+ shortName : "Windows (x86_64 )" ,
119
121
longName : "Windows Executable" ,
120
122
icon : IconBrandWindows ,
121
123
isRecommended : true ,
122
124
isDeviceRelevant : ( device ) => device . desktop && device . windows ,
123
125
} ,
124
126
{
125
127
key : "windows_32" ,
126
- shortName : "Windows (32-bit )" ,
128
+ shortName : "Windows (x86 )" ,
127
129
longName : "Windows Executable" ,
128
130
icon : IconBrandWindows ,
129
131
isRecommended : false ,
@@ -147,13 +149,21 @@ export const desktopLinks: DownloadLink[] = [
147
149
isDeviceRelevant : ( device ) => device . linux ,
148
150
} ,
149
151
{
150
- key : "linux " ,
151
- shortName : "Linux" ,
152
+ key : "linux_x86_64 " ,
153
+ shortName : "Linux (x86_64) " ,
152
154
longName : "Linux Executable" ,
153
155
icon : IconBrandLinux ,
154
156
isRecommended : true ,
155
157
isDeviceRelevant : ( device ) => device . desktop && device . linux ,
156
158
} ,
159
+ {
160
+ key : "linux_aarch64" ,
161
+ shortName : "Linux (ARM64)" ,
162
+ longName : "Linux Executable" ,
163
+ icon : IconBrandLinux ,
164
+ isRecommended : true ,
165
+ isDeviceRelevant : ( ) => false ,
166
+ } ,
157
167
] ;
158
168
159
169
export const extensionLinks : DownloadLink [ ] = [
0 commit comments