mirror of
https://github.com/jamiepine/voicebox.git
synced 2026-09-15 12:50:42 -07:00
17 lines
686 B
TypeScript
17 lines
686 B
TypeScript
// 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';
|