Display both flathub and website download links for Linux

Signed-off-by: Aaron Raimist <aaron@raim.ist>
This commit is contained in:
Aaron Raimist
2021-11-24 17:27:15 +00:00
parent e71021e8aa
commit 5f4c9a7c07
3 changed files with 16 additions and 4 deletions
+4 -1
View File
@@ -73,7 +73,10 @@ export class Nheko {
getInstallLinks(platform) {
switch (platform) {
case Platform.Linux: return [new FlathubLink("io.github.NhekoReborn.Nheko")];
case Platform.Linux: return [
new FlathubLink("io.github.NhekoReborn.Nheko"),
new WebsiteLink("https://github.com/Nheko-Reborn/nheko/releases/latest"),
];
default: return [new WebsiteLink("https://github.com/Nheko-Reborn/nheko/releases/latest")];
}
}