From 366695ffd6629a90fe7510411ca3b3603dceb304 Mon Sep 17 00:00:00 2001 From: wangjia <809946525@qq.com> Date: Mon, 6 Jul 2026 19:58:18 +0800 Subject: [PATCH] =?UTF-8?q?chore(web):=20Windows=20=E4=B8=8B=E8=BD=BD?= =?UTF-8?q?=E6=8C=89=E9=92=AE=E6=9A=82=E6=94=B9=E3=80=8C=E5=8D=B3=E5=B0=86?= =?UTF-8?q?=E6=8E=A8=E5=87=BA=E3=80=8D(=E5=85=B6=20CI=20=E6=9C=AA=E4=BA=A7?= =?UTF-8?q?=E5=87=BA=20exe;=E6=9C=AC=E8=BD=AE=E4=BB=85=20Android=20?= =?UTF-8?q?=E7=9C=9F=E4=B8=8B=E8=BD=BD)?= 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 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/web/website/src/components/Download.astro b/web/website/src/components/Download.astro index 39f7dd5..d5909f7 100644 --- a/web/website/src/components/Download.astro +++ b/web/website/src/components/Download.astro @@ -6,12 +6,14 @@ import { SITE } from '../config/site'; interface Props { t: T } const { t } = Astro.props; -// href 缺省 = 本轮未接入下载(iOS / macOS / Linux),按钮渲染为禁用态占位。 +// href 缺省 = 本轮未接入下载(iOS / macOS / Windows / Linux),按钮渲染为禁用态占位。 +// 本轮仅 Android 有真实产物;Windows 待其 CI(需 windows runner)产出 exe 后接 +// SITE.downloads.windows(已在 site.ts 备好)。 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', href: SITE.downloads.windows }, + { icon: 'monitor', name: 'Windows', ver: 'Win 10/11' }, { icon: 'terminal', name: 'Linux', ver: 'deb / rpm' }, ]; ---