From 4c8be45e287b5ea009d6f828f7f327f37850569e Mon Sep 17 00:00:00 2001 From: undergroundwires Date: Fri, 7 Aug 2020 00:49:59 +0100 Subject: [PATCH] fixed mac / linux download links --- README.md | 2 +- src/presentation/TheFooter/DownloadUrlListItem.vue | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ef87938a..7452acc2 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ ## Get started - Online version: [https://privacy.sexy](https://privacy.sexy) - - or download latest desktop version for [Windows](https://github.com/undergroundwires/privacy.sexy/releases/download/0.6.0/privacy.sexy-Setup-0.6.0.exe), [Linux](https://github.com/undergroundwires/privacy.sexy/releases/download/0.6.0/privacy.sexy-0.6.0.dmg), [macOS](https://github.com/undergroundwires/privacy.sexy/releases/download/0.6.0/privacy.sexy-0.6.0-mac.zip) + - or download latest desktop version for [Windows](https://github.com/undergroundwires/privacy.sexy/releases/download/0.6.0/privacy.sexy-Setup-0.6.0.exe), [Linux](https://github.com/undergroundwires/privacy.sexy/releases/download/0.6.0/privacy.sexy-0.6.0.AppImage), [macOS](https://github.com/undergroundwires/privacy.sexy/releases/download/0.6.0/privacy.sexy-0.6.0.dmg) ![privacy.sexy application](img/app.png) diff --git a/src/presentation/TheFooter/DownloadUrlListItem.vue b/src/presentation/TheFooter/DownloadUrlListItem.vue index 277d99d7..0d521ced 100644 --- a/src/presentation/TheFooter/DownloadUrlListItem.vue +++ b/src/presentation/TheFooter/DownloadUrlListItem.vue @@ -65,9 +65,9 @@ function getOperatingSystemName(os: OperatingSystem): string { function getFileName(os: OperatingSystem, version: string): string { switch (os) { case OperatingSystem.Linux: - return `privacy.sexy-${version}.dmg`; + return `privacy.sexy-${version}.AppImage`; case OperatingSystem.macOS: - return `privacy.sexy-${version}-mac.zip`; + return `privacy.sexy-${version}.dmg`; case OperatingSystem.Windows: return `privacy.sexy-Setup-${version}.exe`; default: