dudu MVP:五端语音输入法初始提交
ci / server (push) Failing after 14s
ci / design-tokens (push) Failing after 11s

- server:Go 网关(WS 流式识别中继/计费配额/微信登录支付 mock/反馈/埋点),gummy provider 已真实联调
- desktop:Tauri 2(全局快捷键 push-to-talk/浮层/托盘/设置/登录购买/反馈/首启引导)
- android:Compose 主 App + IME(键盘内录音直传)
- ios:App + 键盘扩展(1A spike 实证键盘内不可录音,走 deep link 听写)
- design/design-pipeline:设计系统 + token 导出 iOS/Android 主题
- doc:前后端设计文档(HTML);web:官网宣传页;todo:任务看板

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
wangjia
2026-06-12 00:38:37 +08:00
commit 40760aa884
252 changed files with 40789 additions and 0 deletions
@@ -0,0 +1,32 @@
<!-- @dsCard group="Type" viewport="700x120" name="识别文本规范" subtitle="final 实色 · partial 弱色实时刷新 · 永不闪跳" -->
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="../styles.css">
<style>
body { margin: 0; font-family: var(--font-sans); display: grid; grid-template-columns: 1fr 1fr; }
.pane { padding: 18px 22px; height: 120px; box-sizing: border-box; display: flex; flex-direction: column; gap: 8px; justify-content: center; }
.lt { background: var(--surface-card); }
.dkv { background: var(--overlay-bg); }
.txt { font-size: var(--text-md); line-height: 1.6; }
.lt .txt { color: var(--text-1); }
.lt .txt .partial { color: var(--text-3); }
.dkv .txt { color: var(--overlay-text); }
.dkv .txt .partial { color: var(--overlay-text-2); }
.lbl { font-size: 11px; }
.lt .lbl { color: var(--text-3); }
.dkv .lbl { color: var(--overlay-text-3); }
</style>
</head>
<body>
<div class="pane lt">
<div class="txt">好的,我马上把文件发给你,<span class="partial">大概十分钟之</span></div>
<div class="lbl">键盘 partial 文本条:final 用 text-1partial 用 text-3</div>
</div>
<div class="pane dkv">
<div class="txt">好的,我马上把文件发给你,<span class="partial">大概十分钟之</span></div>
<div class="lbl">浮层:final 用 overlay-textpartial 用 overlay-text-2</div>
</div>
</body>
</html>