File tree Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -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" ,
@@ -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 [ ] = [
You can’t perform that action at this time.
0 commit comments