Skip to content

Releases: XimilalaXiang/DeLive

DeLive v2.2.4

Choose a tag to compare

@github-actions github-actions released this 21 May 05:25

DeLive 2.2.4

发布日期 / Release Date: 2026-05-21

📥 下载 / Downloads

平台 / Platform 文件 / File 说明 / Description
🪟 Windows DeLive-2.2.4-x64.exe Windows 安装包 / Installer
🪟 Windows DeLive-2.2.4-portable.exe 便携版 / Portable
🍎 macOS DeLive-2.2.4-mac-x64.dmg macOS Intel 安装包
🍎 macOS DeLive-2.2.4-mac-arm64.dmg macOS Apple Silicon 安装包

🔄 更新内容 / What's Changed

Added / 新增

  • 🇻🇳 Vietnamese translation target — Vietnamese added to translation language dropdown and Soniox supported languages
  • 🇻🇳 越南语翻译目标 — 翻译语言下拉菜单和 Soniox 支持语言新增越南语
  • 🌐 File transcription i18n — 27 new i18n keys replacing hardcoded Chinese strings in file upload/transcription UI
  • 🌐 文件转录国际化 — 27 个新 i18n key 替换文件上传/转录界面中的硬编码中文
  • 🇯🇵 Japanese README alignment — Japanese README structure aligned with other language versions (community contribution)
  • 🇯🇵 日文 README 对齐 — 日文 README 结构与其他语言版本对齐(社区贡献)

Fixed / 修复

  • 🔧 macOS tray icon sizing — fixed tray icon appearing oversized on macOS by using 16×16 template image with proper resize
  • 🔧 macOS 托盘图标尺寸 — 修复 macOS 托盘图标过大的问题,使用 16×16 模板图像并正确缩放
  • 🔧 Tray icon loadTrayIcon() bug — fixed macOS icon skipping resizeForTray() due to early return
  • 🔧 托盘图标 loadTrayIcon() 缺陷 — 修复 macOS 图标因提前返回而跳过 resizeForTray() 的问题
  • 🔧 Tray menu localization — tray menu now dynamically rebuilds when language changes via IPC
  • 🔧 托盘菜单本地化 — 托盘菜单现在在语言通过 IPC 变更时动态重建
  • 🔧 Electron language persistence — switched from unreliable LevelDB to prefs.json for saving language preference
  • 🔧 Electron 语言持久化 — 从不可靠的 LevelDB 切换到 prefs.json 保存语言偏好
  • 🔧 i18n function key safety — added optional chaining (?.()) for function-valued i18n keys in file transcription components to prevent runtime errors
  • 🔧 i18n 函数键安全性 — 为文件转录组件中的函数类型 i18n key 添加可选链调用(?.()),防止运行时错误

Docs / 文档

  • 📝 Streamlined all READMEs by linking to documentation site instead of duplicating content
  • 📝 精简所有 README,改为链接到文档站而非重复内容

📖 使用说明 / Usage

  1. 下载对应平台的安装包
  2. 运行安装或直接打开
  3. 在设置中配置 ASR 服务商的 API 密钥
  4. 开始录制并享受实时转录

⚠️ macOS 用户注意:应用未经 Apple 签名,首次打开需右键选择"打开",或在"系统设置 > 隐私与安全性"中允许运行。


Full Changelog: v2.2.3...v2.2.4

DeLive v2.2.3

Choose a tag to compare

@github-actions github-actions released this 06 May 09:01

DeLive 2.2.3

发布日期 / Release Date: 2026-05-06

📥 下载 / Downloads

平台 / Platform 文件 / File 说明 / Description
🪟 Windows DeLive-2.2.3-x64.exe Windows 安装包 / Installer
🪟 Windows DeLive-2.2.3-portable.exe 便携版 / Portable
🍎 macOS DeLive-2.2.3-mac-x64.dmg macOS Intel 安装包
🍎 macOS DeLive-2.2.3-mac-arm64.dmg macOS Apple Silicon 安装包

🔄 更新内容 / What's Changed

Fixed / 修复

  • 🔧 Provider switch diarization content loss — switching to a diarization-enabled provider (e.g. Soniox) no longer hides previously transcribed text; historical content now renders above speaker segments
  • 🔧 切换发言人识别模式内容丢失 — 切换到启用多发言人识别的提供商(如 Soniox)时,之前的转录内容不再消失,历史文本现在渲染在说话人分段之上
  • 🔧 IndexedDB retry on open failure — if IndexedDB fails to open, subsequent calls now retry instead of permanently returning a rejected promise
  • 🔧 IndexedDB 打开失败后可重试 — IndexedDB 打开失败时后续调用现在会重试,而不是永久返回被拒绝的 Promise
  • 🔧 WebSocket close code RangeError — proxy cores now sanitize upstream close codes to valid ranges before forwarding, preventing RangeError crashes
  • 🔧 WebSocket 关闭码 RangeError — 代理核心现在在转发前将上游关闭码清理为合法范围,防止 RangeError 崩溃
  • 🔧 S3 backup listing pagination — S3 backup list now fetches all objects using pagination instead of being capped at 100
  • 🔧 S3 备份列表分页 — S3 备份列表现在使用分页获取所有对象,不再硬编码 100 条上限
  • 🔧 Backup import overwrites provider API keys — importing backup data now preserves existing provider API keys and credentials instead of overwriting them
  • 🔧 备份导入覆盖 API Key — 导入备份数据时现在保留现有的提供商 API Key 和凭据,不再覆盖
  • 🔧 AI post-processing timeout — non-streaming AI fetch calls (briefing, Q&A, mind map) now have a 120-second timeout to prevent indefinite hangs
  • 🔧 AI 后处理超时 — 非流式 AI 请求(摘要、问答、思维导图)现在有 120 秒超时,防止无限挂起
  • 🔧 Local runtime exit handler race condition — fixed state race where the exit handler could read stale status by reordering spawn and state initialization
  • 🔧 本地运行时退出处理竞态 — 修复退出处理器读取陈旧状态的竞态条件,重新排列 spawn 和状态初始化顺序
  • 🔧 Frontend TypeScript compilation — excluded Node-only proxy core files from frontend tsconfig.json to prevent browser-target compilation errors
  • 🔧 前端 TypeScript 编译 — 从前端 tsconfig.json 排除 Node-only 代理核心文件,防止浏览器目标编译错误

📖 使用说明 / Usage

  1. 下载对应平台的安装包
  2. 运行安装或直接打开
  3. 在设置中配置 ASR 服务商的 API 密钥
  4. 开始录制并享受实时转录

⚠️ macOS 用户注意:应用未经 Apple 签名,首次打开需右键选择"打开",或在"系统设置 > 隐私与安全性"中允许运行。


Full Changelog: v2.2.2...v2.2.3

DeLive v2.2.2

Choose a tag to compare

@github-actions github-actions released this 03 May 15:59

DeLive 2.2.2

发布日期 / Release Date: 2026-05-04

📥 下载 / Downloads

平台 / Platform 文件 / File 说明 / Description
🪟 Windows DeLive-2.2.2-x64.exe Windows 安装包 / Installer
🪟 Windows DeLive-2.2.2-portable.exe 便携版 / Portable
🍎 macOS DeLive-2.2.2-mac-x64.dmg macOS Intel 安装包
🍎 macOS DeLive-2.2.2-mac-arm64.dmg macOS Apple Silicon 安装包

🔄 更新内容 / What's Changed

Added / 新增

  • 🎨 New color themes: Pink, Slate, Orange — three new accent color themes for more personalization options
  • 🎨 新增主题配色:樱粉、石板灰、橙韵 — 三个全新主题色,提供更多个性化选择

Changed / 变更

  • 🎨 Default theme changed to Violet — new installations now use Violet as the default accent color instead of Cyan
  • 🎨 默认主题改为紫罗兰 — 新安装默认使用紫罗兰主题色代替青蓝

Fixed / 修复

  • 🔧 Volc (火山引擎) desktop transcription timeout — fixed 8-second idle timeout error when selecting desktop capture source by acquiring audio stream before connecting to the provider
  • 🔧 火山引擎桌面转录超时 — 修复选择桌面捕获源时因 8 秒无音频数据导致的超时断开,改为先获取音频源再连接服务
  • 🔧 Settings page fullscreen layout — cloud providers no longer show an awkward two-column layout with isolated Language Hints section in fullscreen mode
  • 🔧 设置页面全屏布局 — 云服务商不再在全屏模式下显示不协调的两栏布局

📖 使用说明 / Usage

  1. 下载对应平台的安装包
  2. 运行安装或直接打开
  3. 在设置中配置 ASR 服务商的 API 密钥
  4. 开始录制并享受实时转录

⚠️ macOS 用户注意:应用未经 Apple 签名,首次打开需右键选择"打开",或在"系统设置 > 隐私与安全性"中允许运行。


Full Changelog: v2.2.1...v2.2.2

DeLive v2.2.1

Choose a tag to compare

@github-actions github-actions released this 03 May 14:37

DeLive 2.2.1

发布日期 / Release Date: 2026-05-03

📥 下载 / Downloads

平台 / Platform 文件 / File 说明 / Description
🪟 Windows DeLive-2.2.1-x64.exe Windows 安装包 / Installer
🪟 Windows DeLive-2.2.1-portable.exe 便携版 / Portable
🍎 macOS DeLive-2.2.1-mac-x64.dmg macOS Intel 安装包
🍎 macOS DeLive-2.2.1-mac-arm64.dmg macOS Apple Silicon 安装包

🔄 更新内容 / What's Changed

Added / 新增

  • 🤖 AI side panel resizing — drag the left edge of the AI side panel to resize its width; width is persisted across sessions
  • 🤖 AI 侧边栏拉伸 — 拖拽 AI 侧边栏左边缘可调整宽度,宽度跨会话持久保存
  • 🎙️ Real-time audio waveform — live waveform visualization during recording
  • 🎙️ 实时音频波形 — 录音时显示实时波形可视化
  • 📤 File upload UX — added format hints and size estimation for file uploads
  • 📤 文件上传体验 — 文件上传新增格式提示和大小预估
  • 💬 AI streaming output — AI chat conversations now display streaming responses in real-time
  • 💬 AI 流式输出 — AI 对话现在实时显示流式响应

Changed / 变更

  • 🎨 Premium UI overhaul — reduced visual noise with softer borders, restrained primary color usage, lighter font weights, and increased whitespace for a calmer, more elegant interface
  • 🎨 高级 UI 全面优化 — 边框淡化、主题色克制使用、字重减轻、留白增大,打造更沉稳优雅的界面
  • 🗂️ Tab bar redesign — Notion/Dovetail style tab bar with neutral active state and bottom indicator
  • 🗂️ Tab 栏重设计 — Notion/Dovetail 风格,中性激活态配底部指示条
  • 💬 AI message bubbles — user messages use foreground color, AI responses have transparent background
  • 💬 AI 消息气泡 — 用户消息使用前景色,AI 回复透明背景
  • 📋 Sidebar simplification — active state uses left border indicator instead of primary color highlight
  • 📋 侧边栏精简 — 激活态使用左侧竖线替代主题色高亮
  • 🎯 Theme color picker — redesigned from rectangular swatches to simple filled circles with checkmark selection
  • 🎯 主题色选择器 — 从矩形色块重新设计为简洁的纯色圆形加对勾选中
  • 🗣️ Speaker diarization — upgraded to Dovetail-style colored badges
  • 🗣️ 说话人分离 — 升级为 Dovetail 风格彩色标签
  • 📑 Review tabs — restructured from 6 tabs to 4 (Transcript, Summary, Chat, MindMap) for cleaner navigation
  • 📑 回顾标签页 — 从 6 个标签精简为 4 个(转录、总结、对话、思维导图)

Fixed / 修复

  • 🔧 AI side panel confirmation — require user confirmation before opening AI side panel
  • 🔧 AI 侧边栏确认 — 打开 AI 侧边栏前需要用户确认
  • 🔧 AppearancePanel theme picker — fixed duplicate theme picker not matching new circle design
  • 🔧 外观面板主题选择器 — 修复重复的主题选择器未匹配新圆形设计
  • 🔧 Cyan theme star icon — removed unwanted star icon from cyan theme label
  • 🔧 青蓝主题星标 — 移除青蓝主题标签旁的多余星标图标

📖 使用说明 / Usage

  1. 下载对应平台的安装包
  2. 运行安装或直接打开
  3. 在设置中配置 ASR 服务商的 API 密钥
  4. 开始录制并享受实时转录

⚠️ macOS 用户注意:应用未经 Apple 签名,首次打开需右键选择"打开",或在"系统设置 > 隐私与安全性"中允许运行。


Full Changelog: v2.2.0...v2.2.1

DeLive v2.2.0

Choose a tag to compare

@github-actions github-actions released this 03 May 08:40

DeLive 2.2.0

发布日期 / Release Date: 2026-05-03

📥 下载 / Downloads

平台 / Platform 文件 / File 说明 / Description
🪟 Windows DeLive-2.2.0-x64.exe Windows 安装包 / Installer
🪟 Windows DeLive-2.2.0-portable.exe 便携版 / Portable
🍎 macOS DeLive-2.2.0-mac-x64.dmg macOS Intel 安装包
🍎 macOS DeLive-2.2.0-mac-arm64.dmg macOS Apple Silicon 安装包

🔄 更新内容 / What's Changed

Added / 新增

  • 📁 File transcription — upload audio/video files and transcribe offline with ten cloud ASR engines: Soniox, Volcengine, ElevenLabs, Mistral AI, Gladia, Deepgram, AssemblyAI, Cloudflare Workers AI, SiliconFlow, and Groq
  • 📁 文件转录 — 上传音频/视频文件,使用十种云端 ASR 引擎离线转录:Soniox、火山引擎、ElevenLabs、Mistral AI、Gladia、Deepgram、AssemblyAI、Cloudflare Workers AI、硅基流动和 Groq
  • 🗣️ Speaker diarization and word-level timestamps for file transcription (provider-dependent)
  • 🗣️ 文件转录支持说话人分离和词级时间戳(取决于引擎)
  • 🌐 Multi-language detection and language hints for file transcription
  • 🌐 文件转录支持多语言检测和语言提示

Changed / 变更

  • 📂 Sidebar navigation renamed from "文件转录" (File Transcription) to "文件" (File) for brevity
  • 📂 侧栏导航从「文件转录」改为「文件」,更简洁
  • 🎨 File transcription provider selector unified with settings page styling
  • 🎨 文件转录提供商选择器与设置页面风格统一

Fixed / 修复

  • 🔧 Volcengine file transcription — correctly recognize appKey/accessKey in file transcription UI
  • 🔧 火山引擎文件转录 — 在文件转录 UI 中正确识别 appKey/accessKey
  • 🔧 Deepgram file transcription — use detect_language instead of fixed language, fix speakerId mapping, fall back to whisper-large when Nova-3 returns empty results
  • 🔧 Deepgram 文件转录 — 使用 detect_language 代替固定语言,修复 speakerId 映射,Nova-3 返回空结果时回退到 whisper-large
  • 🔧 Gladia file transcription — disable code_switching to prevent empty results, add empty result detection and diagnostics
  • 🔧 Gladia 文件转录 — 禁用 code_switching 防止返回空结果,新增空结果检测和诊断
  • 🔧 Cloudflare file transcription — add file size limit check and improved error handling
  • 🔧 Cloudflare 文件转录 — 添加文件大小限制检查和改进的错误处理
  • 🔧 Language hints — properly parse language hints from text input to array
  • 🔧 语言提示 — 正确解析文本输入的语言提示为数组

Docs / 文档

  • 📝 Updated all four READMEs (EN, ZH, TW, JA) with file transcription feature, complete 12-provider coverage, updated architecture diagrams
  • 📝 更新全部四个 README(英文、简中、繁中、日文),新增文件转录功能、完善 12 个提供商覆盖、更新架构图
  • 📝 Updated docs site (docs.delive.me) and landing page (delive.me) with file transcription feature cards and provider comparison updates
  • 📝 更新文档站(docs.delive.me)和官网(delive.me),新增文件转录功能卡片和提供商对比表更新

📖 使用说明 / Usage

  1. 下载对应平台的安装包
  2. 运行安装或直接打开
  3. 在设置中配置 ASR 服务商的 API 密钥
  4. 开始录制并享受实时转录

⚠️ macOS 用户注意:应用未经 Apple 签名,首次打开需右键选择"打开",或在"系统设置 > 隐私与安全性"中允许运行。


Full Changelog: v2.1.1...v2.2.0

DeLive v2.1.1

Choose a tag to compare

@github-actions github-actions released this 01 May 12:53

DeLive 2.1.1

发布日期 / Release Date: 2026-05-01

📥 下载 / Downloads

平台 / Platform 文件 / File 说明 / Description
🪟 Windows DeLive-2.1.1-x64.exe Windows 安装包 / Installer
🪟 Windows DeLive-2.1.1-portable.exe 便携版 / Portable
🍎 macOS DeLive-2.1.1-mac-x64.dmg macOS Intel 安装包
🍎 macOS DeLive-2.1.1-mac-arm64.dmg macOS Apple Silicon 安装包

🔄 更新内容 / What's Changed

Fixed / 修复

  • 🔧 Review tab scrolling — fixed transcript and all other review tabs (AI Correction, Overview, AI Analysis, Chat, Mind Map) being unable to scroll when content exceeds visible area; root cause was a missing flex context on the tab content wrapper in PreviewModal
  • 🔧 回顾标签页滚动 — 修复转录文本及所有回顾标签页(AI 纠错、概览、AI 分析、对话、思维导图)内容超出可视区域时无法滚动的问题;根因是 PreviewModal 中标签页内容包裹层缺少 flex 上下文
  • 🔧 TypeScript build errors — removed unused variable declarations in test files (aiCorrection.test.ts, pcmWav.test.ts) that caused CI build failures
  • 🔧 TypeScript 构建错误 — 移除测试文件中未使用的变量声明(aiCorrection.test.tspcmWav.test.ts),修复 CI 构建失败

📖 使用说明 / Usage

  1. 下载对应平台的安装包
  2. 运行安装或直接打开
  3. 在设置中配置 ASR 服务商的 API 密钥
  4. 开始录制并享受实时转录

⚠️ macOS 用户注意:应用未经 Apple 签名,首次打开需右键选择"打开",或在"系统设置 > 隐私与安全性"中允许运行。


Full Changelog: v2.1.0...v2.1.1

DeLive v2.1.0

Choose a tag to compare

@github-actions github-actions released this 28 Apr 06:03

DeLive 2.1.0

发布日期 / Release Date: 2026-04-28

📥 下载 / Downloads

平台 / Platform 文件 / File 说明 / Description
🪟 Windows DeLive-2.1.0-x64.exe Windows 安装包 / Installer
🪟 Windows DeLive-2.1.0-portable.exe 便携版 / Portable
🍎 macOS DeLive-2.1.0-mac-x64.dmg macOS Intel 安装包
🍎 macOS DeLive-2.1.0-mac-arm64.dmg macOS Apple Silicon 安装包

🔄 更新内容 / What's Changed

Added / 新增

  • ☁️ Cloudflare Workers AI provider — new ASR provider based on Whisper, with low cost and free tier
  • ☁️ Cloudflare Workers AI 提供商 — 基于 Whisper 的新 ASR 提供商,价格低廉且有免费额度
  • 🤖 AI post-processing smart text-source selection — when AI correction is done, subsequent AI features (Summary, Chat, Mind Map, Analysis) automatically use corrected text; user-configurable preference (Auto / Always Original / Always Corrected) in AI settings panel
  • 🤖 AI 后处理智能文本源选择 — AI 纠错完成后,后续 AI 功能(摘要、对话、思维导图、分析)自动使用纠错文本;AI 设置面板中可配置偏好(自动 / 始终原始 / 始终纠错后)
  • 🔔 Text-source status banners — AI Analysis, Chat, and Mind Map tabs now show a real-time banner indicating which text source is in use (original, corrected, or correction-in-progress)
  • 🔔 文本源状态横幅 — AI 分析、对话、思维导图标签页现在显示实时横幅,提示当前使用的文本源(原始、纠错后、或纠错进行中)
  • 🧪 10 new unit tests for resolveTranscriptText covering all preference modes and edge cases (272 tests / 29 files)
  • 🧪 新增 10 个 resolveTranscriptText 单元测试,覆盖所有偏好模式和边界情况(共 272 测试 / 29 文件)

Changed / 变更

  • 🔄 Review tab reorder — AI Correction tab moved next to Transcript for a more natural correction-first workflow (Transcript → AI Correction → Overview → AI Analysis → Chat → Mind Map)
  • 🔄 Review 标签页重排 — AI 纠错标签页移至转录文本旁边,形成更自然的纠错优先工作流(转录 → AI 纠错 → 概览 → AI 分析 → 对话 → 思维导图)
  • 💾 Correction streaming text persisted in store — switching away from the AI Correction tab during an active correction no longer loses streaming progress; returning to the tab continues showing live output
  • 💾 纠错流式文本持久化到 store — 纠错进行中切换到其他标签页不再丢失流式进度;返回后继续显示实时输出
  • 🔀 Provider list reordered — cloud providers now sorted: Soniox → 火山引擎 → ElevenLabs → Mistral AI → Gladia → Deepgram → AssemblyAI → Cloudflare → 硅基流动 → Groq
  • 🔀 提供商列表重新排序 — 云端提供商新排序:Soniox → 火山引擎 → ElevenLabs → Mistral AI → Gladia → Deepgram → AssemblyAI → Cloudflare → 硅基流动 → Groq
  • 🏗️ Windowed batch transcription refactored — LocalAgreement strategy with word-level timestamps for stable, deduplicated output (affects Cloudflare, Groq, SiliconFlow, LocalOpenAI)
  • 🏗️ Windowed batch 转录重构 — 使用 LocalAgreement 策略 + 词级时间戳实现稳定去重输出(影响 Cloudflare、Groq、硅基流动、本地 OpenAI)

Fixed / 修复

  • 🔧 Cloudflare word timestamps — correctly extract from segments[].words[] instead of non-existent top-level result.words
  • 🔧 Cloudflare 词级时间戳 — 从 segments[].words[] 正确提取,而非不存在的顶层 result.words
  • 🔧 Cloudflare anti-hallucination — enabled native vad_filter, condition_on_previous_text: false, hallucination_silence_threshold: 1
  • 🔧 Cloudflare 反幻觉 — 启用原生 vad_filtercondition_on_previous_text: falsehallucination_silence_threshold: 1
  • 🔧 Silence detection — now checks only last 3 seconds instead of entire 45s window, preventing stale audio from bypassing silence check
  • 🔧 静音检测 — 只检查最近 3 秒而非整个 45 秒窗口,防止旧音频残留导致检测失效
  • 🔧 Cloudflare translation flag — removed incorrect supportsTranslation capability (Cloudflare translate is batch-only, English-only)
  • 🔧 Cloudflare 翻译标志 — 移除不正确的 supportsTranslation 能力(Cloudflare 翻译仅支持 batch 模式且只能翻译成英文)
  • 🔧 Windowed batch transcript deduplication with fuzzy overlap matching
  • 🔧 Windowed batch 转录去重,使用模糊重叠匹配

📖 使用说明 / Usage

  1. 下载对应平台的安装包
  2. 运行安装或直接打开
  3. 在设置中配置 ASR 服务商的 API 密钥
  4. 开始录制并享受实时转录

⚠️ macOS 用户注意:应用未经 Apple 签名,首次打开需右键选择"打开",或在"系统设置 > 隐私与安全性"中允许运行。


Full Changelog: v2.0.2-beta.3...v2.1.0

DeLive v2.0.2-beta.3

DeLive v2.0.2-beta.3 Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 25 Apr 16:48

DeLive 2.0.2-beta.3

发布日期 / Release Date: 2026-04-25

📥 下载 / Downloads

平台 / Platform 文件 / File 说明 / Description
🪟 Windows DeLive-2.0.2-beta.3-x64.exe Windows 安装包 / Installer
🪟 Windows DeLive-2.0.2-beta.3-portable.exe 便携版 / Portable
🍎 macOS DeLive-2.0.2-beta.3-mac-x64.dmg macOS Intel 安装包
🍎 macOS DeLive-2.0.2-beta.3-mac-arm64.dmg macOS Apple Silicon 安装包

🔄 更新内容 / What's Changed

Added / 新增

  • 🤖 AI Transcript Correction — two modes: "Quick Fix" (direct streaming correction) and "Review & Fix" (detect issues first, user confirms, then correct)
  • 🤖 AI 转录纠错 — 双模式:「直接纠错」(流式输出纠正结果)和「先检测后纠错」(先检测问题,用户确认后再纠正)
  • 🤖 Streaming output with real-time progress (character count, elapsed time, AI analysis status)
  • 🤖 流式输出,实时进度显示(字符数、耗时、AI 分析状态)
  • 🤖 Side-by-side diff comparison view after correction completes
  • 🤖 纠错完成后的并排对比视图
  • 📤 Export corrected transcript as TXT and Markdown
  • 📤 支持导出纠错后的转录文本为 TXT 和 Markdown
  • ⚙️ AI Settings revamp — custom model dropdown with search, per-feature model assignment (Briefing, Chat, Mind Map, Correction)
  • ⚙️ AI 设置重构 — 自定义模型下拉框带搜索,按功能分配模型(摘要、聊天、思维导图、纠错)

Fixed / 修复

  • 🔧 AI correction data now persists across app reloads (IndexedDB normalization fix)
  • 🔧 AI 纠错数据现在在应用重启后持久保存(IndexedDB 序列化修复)
  • 🔧 Correction status feedback improved — button shows loading state immediately, streaming area shows waiting message before first chunk
  • 🔧 纠错状态反馈改进 — 按钮立即显示加载状态,流式区域在首个数据块到达前显示等待提示

📖 使用说明 / Usage

  1. 下载对应平台的安装包
  2. 运行安装或直接打开
  3. 在设置中配置 ASR 服务商的 API 密钥
  4. 开始录制并享受实时转录

⚠️ macOS 用户注意:应用未经 Apple 签名,首次打开需右键选择"打开",或在"系统设置 > 隐私与安全性"中允许运行。


Full Changelog: v2.0.2-beta.2...v2.0.2-beta.3

DeLive v2.0.2-beta.2

DeLive v2.0.2-beta.2 Pre-release
Pre-release

Choose a tag to compare

@XimilalaXiang XimilalaXiang released this 25 Apr 12:03

DeLive 2.0.2-beta.2

发布日期 / Release Date: 2026-04-25

📥 下载 / Downloads

平台 / Platform 文件 / File 说明 / Description
🪟 Windows DeLive-2.0.2-beta.2-x64.exe Windows 安装包 / Installer
🪟 Windows DeLive-2.0.2-beta.2-portable.exe 便携版 / Portable
🍎 macOS DeLive-2.0.2-beta.2-mac-x64.dmg macOS Intel 安装包
🍎 macOS DeLive-2.0.2-beta.2-mac-arm64.dmg macOS Apple Silicon 安装包

🔄 更新内容 / What's Changed

Added / 新增

  • 📋 What's New dialog — auto-displays changelog after version update with bilingual (zh/en) support
  • 📋 更新日志弹窗 — 版本更新后自动展示更新内容,支持中英双语
  • 📋 "View Changelog" button in Settings > About panel
  • 📋 设置 > 关于 面板新增"查看更新日志"按钮

📖 使用说明 / Usage

  1. 下载对应平台的安装包
  2. 运行安装或直接打开
  3. 在设置中配置 ASR 服务商的 API 密钥
  4. 开始录制并享受实时转录

⚠️ macOS 用户注意:应用未经 Apple 签名,首次打开需右键选择"打开",或在"系统设置 > 隐私与安全性"中允许运行。


Full Changelog: v2.0.2-beta.1...v2.0.2-beta.2

DeLive v2.0.2-beta.1

DeLive v2.0.2-beta.1 Pre-release
Pre-release

Choose a tag to compare

@XimilalaXiang XimilalaXiang released this 25 Apr 11:20

DeLive 2.0.2-beta.1

发布日期 / Release Date: 2026-04-25

📥 下载 / Downloads

平台 / Platform 文件 / File 说明 / Description
🪟 Windows DeLive-2.0.2-beta.1-x64.exe Windows 安装包 / Installer
🪟 Windows DeLive-2.0.2-beta.1-portable.exe 便携版 / Portable
🍎 macOS DeLive-2.0.2-beta.1-mac-x64.dmg macOS Intel 安装包
🍎 macOS DeLive-2.0.2-beta.1-mac-arm64.dmg macOS Apple Silicon 安装包

🔄 更新内容 / What's Changed

Added / 新增

  • Live config hot-switch — toggle translation and speaker diarization during active recording without stopping (Soniox)
  • 录制中热切换 — 录制过程中无需停止即可切换翻译和发言人识别(Soniox)
  • 🎛️ Quick Settings panel in recording controls for one-tap feature toggles
  • 🎛️ 录制控件中的快捷设置面板,一键切换功能

Fixed / 修复

  • 🔧 408 timeout on config switch — fixed WebM header timing: pause recorder before WebSocket reconnect, restart after connect
  • 🔧 配置切换 408 超时 — 修复 WebM 头时序:在 WebSocket 重连前暂停录制,连接后重启
  • 🔧 Bluetooth device switch crash — audio track onended no longer triggers stopRecording during device-change restart
  • 🔧 蓝牙设备切换崩溃 — 设备切换重启期间 audio track 的 onended 不再触发停止录制
  • 🔧 Device-change 408 timeout — restartCapture now uses same WebM header timing pattern as config hot-switch
  • 🔧 设备切换 408 超时 — restartCapture 现在使用与配置热切换相同的 WebM 头时序

📖 使用说明 / Usage

  1. 下载对应平台的安装包
  2. 运行安装或直接打开
  3. 在设置中配置 ASR 服务商的 API 密钥
  4. 开始录制并享受实时转录

⚠️ macOS 用户注意:应用未经 Apple 签名,首次打开需右键选择"打开",或在"系统设置 > 隐私与安全性"中允许运行。


Full Changelog: v2.0.1...v2.0.2-beta.1