diff --git a/src/components/download.tsx b/src/components/download.tsx index f2a82d3..d928454 100644 --- a/src/components/download.tsx +++ b/src/components/download.tsx @@ -19,7 +19,7 @@ function getDefaultPlatformBasedOnUserAgent() { userAgent = window.navigator.userAgent; } if (userAgent.includes("Win")) { - return "WindowsInstaller"; + return "WindowsStubInstaller"; } if (userAgent.includes("Mac")) { return "MacOS"; @@ -98,6 +98,7 @@ export default function DownloadPage() { Operating System Windows Installer + Windows Pretty Installer Windows (Zip) MacOS Linux diff --git a/src/lib/releases.ts b/src/lib/releases.ts index bbee027..f371b06 100644 --- a/src/lib/releases.ts +++ b/src/lib/releases.ts @@ -1,5 +1,6 @@ export const releases: any = { WindowsInstaller: "zen.installer.exe", + WindowsStubInstaller: "zen.installer.pretty.exe", WindowsZip: "zen.win64.zip", //MacOS: [], Linux: "zen.linux.tar.bz2",