// Download links for voicebox releases // Update these when new releases are published export const LATEST_VERSION = 'v0.1.0'; export const DOWNLOAD_LINKS = { macArm: '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_0.1.0_x64.dmg', windows: '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; export const GITHUB_REPO = 'https://github.com/jamiepine/voicebox';