From e56bfdc694aa490a58bfcbfb7678222ea6a78f73 Mon Sep 17 00:00:00 2001 From: Jamie Pine Date: Sun, 25 Jan 2026 20:07:02 -0800 Subject: [PATCH] Update download links in constants.ts to use versioned filenames for consistency with release structure --- landing/src/lib/constants.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/landing/src/lib/constants.ts b/landing/src/lib/constants.ts index 7f146693..5315af5a 100644 --- a/landing/src/lib/constants.ts +++ b/landing/src/lib/constants.ts @@ -4,11 +4,11 @@ export const LATEST_VERSION = 'v0.1.0'; export const DOWNLOAD_LINKS = { macArm: - 'https://github.com/jamiepine/voicebox/releases/download/v0.1.0/voicebox_aarch64-apple-darwin.dmg', + 'https://github.com/jamiepine/voicebox/releases/download/v0.1.0/voicebox_0.1.0_aarch64.dmg', macIntel: - 'https://github.com/jamiepine/voicebox/releases/download/v0.1.0/voicebox_x86_64-apple-darwin.dmg', + 'https://github.com/jamiepine/voicebox/releases/download/v0.1.0/voicebox_0.1.0_x64.dmg', windows: - 'https://github.com/jamiepine/voicebox/releases/download/v0.1.0/voicebox_x86_64-pc-windows-msvc.msi', + 'https://github.com/jamiepine/voicebox/releases/download/v0.1.0/voicebox_0.1.0_x64_en-US.msi', linux: 'https://github.com/jamiepine/voicebox/releases/download/v0.1.0/voicebox_x86_64-unknown-linux-gnu.AppImage', } as const;