feat: 添加 Tauri Mac 原生应用支持

- 新增 mac-app/ 目录:Tauri 项目结构(Rust 外壳 + sidecar 进程管理)
- 前端添加 Tauri 环境检测,API 调用和 WebSocket 自动适配
- 后端支持 MEETING_DATA_DIR 环境变量指定数据目录
- 新增 /api/meetings/{id}/retranscribe 接口用于重新转录
- 修复轮询超时:2分钟→30分钟,适配长音频
- 添加 .gitignore 排除构建产物
This commit is contained in:
freedakgmail
2026-07-10 00:04:27 +08:00
parent 3ab8f22bae
commit 2752ea4e54
73 changed files with 5465 additions and 17 deletions
@@ -0,0 +1,13 @@
{
"identifier": "default",
"description": "Default capability for Meeting Recorder",
"windows": ["main"],
"permissions": [
"core:default",
"core:window:allow-close",
"core:window:allow-destroy",
"shell:allow-spawn",
"shell:allow-execute",
"shell:allow-kill"
]
}