Compare commits

...

2 Commits

Author SHA1 Message Date
Deep Mehta
7a1ef603e5 Merge branch 'main' into deepme987/website/download-link-desk2 2026-06-03 15:07:15 -07:00
Deep Mehta
ed5707e81f fix(website): point download URLs at the new ToDesktop endpoint
Both per-platform download links now resolve to
https://dl.todesktop.com/241130tqe9q3y, the universal ToDesktop CDN
endpoint for ComfyUI Desktop (serves the right binary per UA, stable
across releases).
2026-06-03 14:36:40 -07:00

View File

@@ -3,8 +3,8 @@ import { computed, onMounted, ref } from 'vue'
import { externalLinks } from '@/config/routes'
const downloadUrls = {
windows: 'https://download.comfy.org/windows/nsis/x64',
macArm: 'https://download.comfy.org/mac/dmg/arm64'
windows: 'https://dl.todesktop.com/241130tqe9q3y',
macArm: 'https://dl.todesktop.com/241130tqe9q3y'
} as const
type DetectedPlatform = 'windows' | 'mac' | null