From 97caae95b82275b96627fc4952c67f51eefd3afd Mon Sep 17 00:00:00 2001 From: wangjia <809946525@qq.com> Date: Mon, 6 Jul 2026 23:12:57 +0800 Subject: [PATCH] =?UTF-8?q?feat(web):=20=E5=AE=98=E7=BD=91=20Windows=20?= =?UTF-8?q?=E4=B8=8B=E8=BD=BD=E6=8C=89=E9=92=AE=E4=B8=8A=E7=BA=BF(client?= =?UTF-8?q?=20CI=20=E5=B7=B2=E4=BA=A7=E5=87=BA=20exe)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_013nMthbVEmQquxBRKb9Fj8u --- web/website/src/components/Download.astro | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/web/website/src/components/Download.astro b/web/website/src/components/Download.astro index d5909f7..bafa04f 100644 --- a/web/website/src/components/Download.astro +++ b/web/website/src/components/Download.astro @@ -6,14 +6,13 @@ import { SITE } from '../config/site'; interface Props { t: T } const { t } = Astro.props; -// href 缺省 = 本轮未接入下载(iOS / macOS / Windows / Linux),按钮渲染为禁用态占位。 -// 本轮仅 Android 有真实产物;Windows 待其 CI(需 windows runner)产出 exe 后接 -// SITE.downloads.windows(已在 site.ts 备好)。 +// href 缺省 = 本轮未接入下载(iOS / macOS / Linux),按钮渲染为禁用态占位。 +// Android + Windows 已由客户端 CI 产出真实产物并部署到 /downloads。 const plats: { icon: string; name: string; ver: string; href?: string }[] = [ { icon: 'smartphone', name: 'iOS', ver: 'iOS 16+' }, { icon: 'smartphone', name: 'Android', ver: 'Android 9+', href: SITE.downloads.android }, { icon: 'laptop', name: 'macOS', ver: 'macOS 12+' }, - { icon: 'monitor', name: 'Windows', ver: 'Win 10/11' }, + { icon: 'monitor', name: 'Windows', ver: 'Win 10/11', href: SITE.downloads.windows }, { icon: 'terminal', name: 'Linux', ver: 'deb / rpm' }, ]; ---