fix(v1.2.0): 重新落实选择器为 微信+Chromium(上个提交被 iCloud 回退)

eabedde 提交时 APP_OPTIONS 被本机 iCloud 冲突副本回退成旧版(telegram 可选、chromium 禁用)。
此处重新落实:微信(默认) + 浏览器(Chromium) 可用,自定义「即将支持」禁用,去掉 Telegram。

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Gloridust
2026-06-14 17:47:30 +08:00
parent eabedde26b
commit 179f5cf7a1

View File

@@ -1367,11 +1367,10 @@ function CreateUser({ instances, onClose, onDone }: { instances: InstanceWithSta
);
}
// 可创建的应用类型。ready=false 的暂时禁用(即将支持)。
// 可创建的应用类型。ready=false 的暂时禁用(即将支持)。Telegram仅 x86_64与其它应用暂缓。
const APP_OPTIONS: { type: AppType; desc: string; ready: boolean }[] = [
{ type: 'wechat', desc: '默认', ready: true },
{ type: 'telegram', desc: '仅 x86_64', ready: true },
{ type: 'chromium', desc: '即将支持', ready: false },
{ type: 'chromium', desc: '浏览器', ready: true },
{ type: 'custom', desc: '即将支持', ready: false },
];