From caff18dabe99f56dcfab771d67363cb3aee9e5e0 Mon Sep 17 00:00:00 2001 From: Jamie Pine Date: Sun, 25 Jan 2026 19:47:38 -0800 Subject: [PATCH] Update download links and repository URL in constants.ts to reflect the correct GitHub username --- landing/src/lib/constants.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/landing/src/lib/constants.ts b/landing/src/lib/constants.ts index 57d5ee55..7f146693 100644 --- a/landing/src/lib/constants.ts +++ b/landing/src/lib/constants.ts @@ -4,13 +4,13 @@ export const LATEST_VERSION = 'v0.1.0'; export const DOWNLOAD_LINKS = { macArm: - 'https://github.com/USERNAME/voicebox/releases/download/v0.1.0/voicebox_aarch64-apple-darwin.dmg', + 'https://github.com/jamiepine/voicebox/releases/download/v0.1.0/voicebox_aarch64-apple-darwin.dmg', macIntel: - 'https://github.com/USERNAME/voicebox/releases/download/v0.1.0/voicebox_x86_64-apple-darwin.dmg', + 'https://github.com/jamiepine/voicebox/releases/download/v0.1.0/voicebox_x86_64-apple-darwin.dmg', windows: - 'https://github.com/USERNAME/voicebox/releases/download/v0.1.0/voicebox_x86_64-pc-windows-msvc.msi', + 'https://github.com/jamiepine/voicebox/releases/download/v0.1.0/voicebox_x86_64-pc-windows-msvc.msi', linux: - 'https://github.com/USERNAME/voicebox/releases/download/v0.1.0/voicebox_x86_64-unknown-linux-gnu.AppImage', + 'https://github.com/jamiepine/voicebox/releases/download/v0.1.0/voicebox_x86_64-unknown-linux-gnu.AppImage', } as const; -export const GITHUB_REPO = 'https://github.com/USERNAME/voicebox'; +export const GITHUB_REPO = 'https://github.com/jamiepine/voicebox';