Skip to content

Releases: tiddly-gittly/TidGi-Desktop

v0.14.0

Choose a tag to compare

@github-actions github-actions released this 25 Jun 17:29
b60e0b5
TidGi-Desktop v0.14.0-1 发布报告

发布日期:2026-06-26
基于标签:v0.13.1-fix(GitHub Release v0.13.1) → v0.14.0-1
改动范围:102 个文件变更,新增 3,787 行,删除 2,009 行


目录

  1. 新功能:HTML Wiki 工作区编辑
  2. Git 算法重构与本地 IP 展示
  3. 历史记录与深度链接修复
  4. 依赖与工程改进
  5. 杂项

1. 新功能:HTML Wiki 工作区编辑 (#726)

本版本最大的功能更新:支持将单文件 HTML Wiki 作为 TidGi 工作区打开、编辑并保存。

方面 变更
工作区类型 新增 WorkspaceType.html,支持直接打开 .html 单文件 Wiki
策略模式 引入 folderWikiStrategyhtmlWikiStrategy,隔离文件夹 Wiki 与单文件 HTML 的启动、HTTP 路由、Git 作用域逻辑
保存机制 向 HTML 注入 TiddlyFox 风格的 saver bootstrap,并通过下载拦截将保存请求桥接到 IPC,避免触发浏览器下载
HTTP 服务 新增 HtmlWikiService,为 HTML 工作区提供本地 HTTP 服务;新增认证 GET/PUT 端点,方便移动端整文件同步
Git 作用域 Git 操作限定到单个 HTML 文件;GitLog 支持按工作区文件路径过滤
UI/UX 添加工作区添加向导的「打开 HTML 文件」表单、按工作区类型过滤设置项、i18n 中英翻译
测试 新增单元测试与 Cucumber E2E 场景,覆盖 HTML 工作区导入、保存、重开、GitLog 作用域隔离

2. Git 算法重构与本地 IP 展示 (#725)

  • HTTP 服务器改为监听 0.0.0.0,不再依赖网关匹配到的单一 IP
  • 新增 getAllLocalIpV4(),注入所有本地网卡 IP 到 $:/info/url/localIP/ tiddler
  • 工作区设置页展示所有本地 IP(适配多网卡环境)
  • 移除 default-gatewayipaddr.js 依赖
  • 清理 mergeUtilitiesgitServer 中的旧合并算法代码
  • 升级 tw-mobile-sync 插件到 v2.1.6 (此发布最终升级到了 v2.3.3)

3. 历史记录与深度链接修复 (#729)

修复 #728 等历史记录与深度链接相关问题:

  • 恢复工作区配置中缺失的 rememberLastPageVisited 开关;仅开启时显示上次访问 URL 文本框
  • 三层拦截 tidgi:// 深度链接:
    • WebView will-navigate 事件
    • window.open() 处理器
    • 协议处理器回退
  • 支持新 URL 格式 tidgi://<workspaceId>/preferences/<sectionId>,直接打开指定工作区的偏好设置页
  • 修复 protocol.ts 在渲染进程中的安全性:
    • 统一使用 TIDGI_PROTOCOL_SCHEME 常量
    • 渲染进程通过 window.service.context.get('isTest') 获取测试模式状态
  • 恢复测试模式下偏好设置页面一次性渲染的行为

4. 依赖与工程改进

🔼 esbuild 0.28.0 → 0.28.1 (#724)

  • 由 Dependabot 发起的开发依赖升级

5. 杂项

  • 更新 template/wiki 子模块
  • 提交 v0.14.0 版本号

完整 PR 列表

PR 标题 类型
#724 chore(deps-dev): bump esbuild from 0.28.0 to 0.28.1 依赖升级
#725 Refactor/git algorithm 重构
#726 Feat/html edit 新功能
#729 Fix/history 修复

完整对比: v0.13.1-fix...v0.14.0-1

# TidGi-Desktop v0.14.0-1 Release Report

Release Date: 2026-06-26
Tag Range: v0.13.1-fix (GitHub Release v0.13.1) → v0.14.0-1
Scope: 102 files changed, 3,787 insertions, 2,009 deletions


Table of Contents

  1. New Feature: HTML Wiki Workspace Editing
  2. Git Algorithm Refactor & Local IP Display
  3. History & Deep Link Fixes
  4. Dependencies & Tooling
  5. Miscellaneous

1. New Feature: HTML Wiki Workspace Editing (#726)

The largest feature in this release: open, edit, and save single-file HTML wikis as TidGi workspaces.

Area Changes
Workspace Type Added WorkspaceType.html to open .html single-file wikis
Strategy Pattern Introduced folderWikiStrategy and htmlWikiStrategy to isolate startup, HTTP routing, and Git scoping between folder and single-file HTML wikis
Save Mechanism Injects a TiddlyFox-style saver bootstrap into HTML and bridges saves through IPC via download interception, avoiding browser downloads
HTTP Service Added HtmlWikiService providing a local HTTP server for HTML workspaces, plus authenticated GET/PUT endpoints for whole-file mobile sync
Git Scoping Git operations scoped to a single HTML file; GitLog filtered by workspace file path
UI/UX Added "Open HTML file" form in Add Workspace, settings filtered by workspace type, English and Simplified Chinese i18n
Tests Added unit tests and Cucumber E2E scenarios covering HTML workspace import, save, reopen, and GitLog scope isolation

2. Git Algorithm Refactor & Local IP Display (#725)

  • HTTP server now binds to 0.0.0.0 instead of a gateway-matched single IP
  • Added getAllLocalIpV4() and inject all local NIC IPs into $:/info/url/localIP/ tiddlers
  • Workspace settings page displays all local IPs for multi-NIC scenarios
  • Removed default-gateway and ipaddr.js dependencies
  • Cleaned up legacy merge algorithm code in mergeUtilities and gitServer
  • Upgraded tw-mobile-sync plugin to v2.1.6 (and finally v2.3.3 in this release)

3. History & Deep Link Fixes (#729)

Fixes history and deep link issues including #728:

  • Restored the missing rememberLastPageVisited switch in workspace config; last-visited URL field shown only when enabled
  • Three-layer interception for tidgi:// deep links:
    • WebView will-navigate event
    • window.open() handler
    • Protocol handler fallback
  • New URL format: tidgi://<workspaceId>/preferences/<sectionId> opens the preference section of a workspace
  • Fixed protocol.ts renderer safety:
    • Unified use of TIDGI_PROTOCOL_SCHEME constant
    • Renderer obtains test-mode state via window.service.context.get('isTest')
  • Restored test-mode behavior of rendering all preference sections at once

4. Dependencies & Tooling

🔼 esbuild 0.28.0 → 0.28.1 (#724)

  • Dependabot dev-dependency bump

5. Miscellaneous

  • Updated template/wiki submodule
  • Bumped version to v0.14.0

Complete PR List

PR Title Type
#724 chore(deps-dev): bump esbuild from 0.28.0 to 0.28.1 Dependency Upgrade
#725 Refactor/git algorithm Refactor
#726 Feat/html edit Feature
#729 Fix/history Fix

Full Changelog: v0.13.1-fix...v0.14.0-1

Full Changelog: v0.13.1-fix...v0.14.0-1

v0.13.1

Choose a tag to compare

@github-actions github-actions released this 12 Jun 12:32
14855a2
TidGi-Desktop v0.13.1 发布报告

发布日期:2026-06-12
基于标签:v0.13.0v0.13.1-fix
改动范围:337 个文件变更,新增 21,569 行,删除 11,615 行


目录

  1. 重大变更与依赖升级
  2. MCP 服务器修复与增强
  3. Bug 修复
  4. E2E 测试与 CI 改进
  5. 杂项与文档

1. 重大变更与依赖升级

🔼 全量依赖升级 + Vite 8 / Rolldown 迁移 (#719)

一次性将几乎所有依赖升级到最新版本,并解决了大量兼容性问题:

类别 变更内容
构建系统 Vite 8 + Rolldown 替换旧版 Vite,修复 ESM/CJS 互操作问题
Electron 升级至 Electron 41.7.1(Node.js 22),配合 better-sqlite3 原生模块
Electron Forge 升级至 v8 alpha,使用异步 hooks 和新版 packageAfterPrune 签名
MUI MUI v9 迁移:system-propssx prop,Autocomplete freeSolo 改用 Enter 键处理
TypeORM v1.0 关系 API 迁移:string[] → 对象格式 {x: true}
inversify v8:rebindSyncrebind
核心输出格式 主进程改为 ESM 输出,修复 rotating-file-stream 类方法断裂
date-fns 3.6 → 4.4(大版本跳升)
default-gateway 6.0 → 7.2(统一 API gateway4()
electron-unhandled 4.0 → 5.0(需 bridge 模块配合 dynamic import()
移除依赖 移除 moment.jstypescript-styled-is 等废弃库

🔒 安全漏洞修复 (#722)

  • 修复 ini(CVE)和 bl(CVE)两个 transitive 依赖的安全漏洞
  • 通过 pnpm.overrides 锁定 ini@^1.3.8bl@^4.1.0
  • 更新 git-sync-js 2.3.3 → 2.4.0(ESLint 10/TypeScript 6 兼容)
  • 更新 eslint-config-tidgi 2.2.0 → 3.1.0(ESLint 10 迁移)
  • ESLint 启用 --max-warnings 0,消除所有 lint 警告

2. MCP 服务器修复与增强 (#723)

这是本版本最大的功能更新,对 MCP(Model Context Protocol)服务器进行了全面重构:

方面 变更
架构重构 Schema-driven 开发工具设置,统一偏好设置页面
安全性 ui_navigate 禁止操作 app 窗口目标;移除废弃的 --mcp-port/MCP_PORT CLI 绕过
Token 认证 默认关闭 token 认证(mcpServerRequireToken: false),避免新用户被空 token 阻塞
打包修复 修复 packaged 应用中 @modelcontextprotocol/sdkrequire() ESM 加载错误
启动健壮性 EADDRINUSE 时清除 server handle 以便重试;端口范围验证
CI 修复 非 Windows 平台跳过 registry-js(pnpmfile hook),添加 Linux lint 类型声明
Git 修复 CI 上使用 HTTPS 替代 SSH git 协议,修复 Windows runner 上的 pnpm 安装

3. Bug 修复

🖼️ 图片上下文菜单:复制图片到剪贴板 (#718)

  • 右键图片可一键复制到剪贴板

🌀 子工作区休眠/唤醒同步 (#718)

  • 子工作区的 UI 状态(侧栏图标灰色/恢复)与主工作区同步
  • 应用启动时子工作区的休眠状态也会正确同步

📂 文件系统监听器:修复 .tid 文件格式保存错误 (#718)

关键修复 — 解决了 issue #669

  • 文件监听器检测到变更后加载数据时,错误地使用 tiddler 的 content type(如 text/markdown)作为文件格式类型
  • 导致后续保存时 TiddlyWiki 误用 JSON 格式而非 .tid 格式保存
  • 修复:使用 fileDescriptor.type(文件格式)而不是 tiddler.type(内容类型)
  • 添加 inferFileTypeFromExtension() 容错回退

🔧 动态 import() 替换为静态 import — 修复 Node.js 22 ESM 错误 (#718)

  • Electron 41(Node.js 22)中,带路径别名(@/@services/)的动态 import() 在打包代码中运行时崩溃
  • 将所有动态 import 转换为静态顶层 import(涉及 5 个核心文件 + 测试文件)

🪟 迷你窗口视图竞争条件修复 (#712)

  • 首次创建路径正确处理 WebContentsView 创建
  • 修复 addViewForAllBrowserViews 中菜单栏窗口未就绪时的未捕获 rejection
  • 避免迷你窗口启动锁死锁

🔄 Git 操作修复 (#718)

  • 死锁修复acquireOperationLock 超时触发时不再永久锁定工作区
  • 本地工作区隐藏"同步到远程"按钮和未推送图标
  • 工作区休眠时跳过 git 操作
  • 添加 try/catch 包裹 commitAndSyncforcePull 的锁获取

📋 Git 日志修复 (#718)

  • 本地工作区的 loadMore() 正确应用守卫逻辑
  • 为本地工作区添加同步设置标签页

🧩 其他修复

  • 修复 E2E 拖拽(dnd)在 Windows CI 上的指针 Y 坐标问题(使用 activatorEvent.clientY + delta.y

4. E2E 测试与 CI 改进

⏱️ E2E 校准系统 (#704, #723)

  • 引入独立的校准运行机制(test:e2e:calibrate),CI 在分片前运行一次
  • 移除所有硬编码的超时回退值,全部从校准测量中获取
  • 步骤超时 = 各类型(launch + wait + element)测量最大值的总和
  • Log-marker 等待使用步骤超时预算(而非紧张的测量值)
  • CI 上每个 OS 运行一次校准,上传 .calibration.json 工件

🔧 CI 工作流改进

  • 修复 upload-artifact v4+ 跳过隐藏文件(dotfiles)的问题
  • 修复 Linux 校准缺少 X display 的问题
  • 添加 pre-push hook(husky),推送前自动运行 tsc + eslint
  • FORCE_JAVASCRIPT_ACTIONS_TO_NODE24 已移除(actions 将在 2026.09 前自然升级)

5. 杂项与文档

  • README.zh-CN.md 更新
  • macOS 终端命令:添加从终端移除 TidGi app quarantine 属性的命令说明
  • 移除了废弃的 Analytics 披露弹窗 (#719)
  • 修复 Tiddler 多轮 filter 污染:停止在 filter 字符串后追加 +[!is[system]],改用 wiki.isSystemTiddler() 后过滤

完整 PR 列表

PR 标题 类型
#704 Fix/misc bug1 修复
#712 Fix/mini window view race 修复
#718 Fix/misc batch 2026 06 修复/功能
#719 chore: upgrade all deps to latest, fix ESM/CJS interop 依赖升级
#722 chore(deps): fix security vulns 安全修复
#723 Fix/mcp 修复/重构

完整对比: v0.13.0...v0.13.1-fix

# TidGi-Desktop v0.13.1 Release Report

Release Date: 2026-06-12
Tag Range: v0.13.0v0.13.1-fix
Scope: 337 files changed, 21,569 insertions, 11,615 deletions


Table of Contents

  1. Major Changes & Dependency Upgrades
  2. MCP Server Fixes & Enhancements
  3. Bug Fixes
  4. E2E Testing & CI Improvements
  5. Miscellaneous & Documentation

1. Major Changes & Dependency Upgrades

🔼 Full Dependency Upgrade + Vite 8 / Rolldown Migration (#719)

Upgraded nearly all dependencies to their latest versions, resolving numerous compatibility issues:

Category Changes
Build System Vite 8 + Rolldown replaces legacy Vite; fixed ESM/CJS interop issues
Electron Upgraded to Electron 41.7.1 (Node.js 22), compatible with better-sqlite3 native module
Electron Forge Upgraded to v8 alpha with async hooks and new packageAfterPrune signature
MUI MUI v9 migration: system-propssx prop, Autocomplete freeSolo uses explicit Enter key handling
TypeORM v1.0 relations API migration: string[] → object format {x: true}
inversify v8: rebindSyncrebind
Main Process Output Changed to ESM output to fix rotating-file-stream class method breakage
date-fns 3.6 → 4.4 (major version jump)
default-gateway 6.0 → 7.2 (unified gateway4() API)
electron-unhandled 4.0 → 5.0 (requires bridge module with dynamic import())
Removed Dependencies Removed moment.js, typescript-styled-is, and other deprecated libraries

🔒 Security Vulnerability Fixes (#722)

  • Fixed security vulnerabilities in ini (CVE) and bl (CVE) transitive dependencies
  • Pinned ini@^1.3.8 and bl@^4.1.0 via pnpm.overrides
  • Updated git-sync-js 2.3.3 → 2.4.0 (ESLint 10/TypeScript 6 compatibility)
  • Updated eslint-config-tidgi 2.2.0 → 3.1.0 (ESLint 10 migration)
  • ESLint now enforces --max-warnings 0, eliminating all lint warnings

2. MCP Server Fixes & Enhancements (#723)

This is the largest feature update in this release, with a comprehensive refactor of the MCP (Model Context Protocol) server:

Area Changes
Architecture Schema-driven developer tools settings, unified preferences pages
Security ui_navigate blocked on app window targets; removed deprecated --mcp-port/MCP_PORT CLI bypass
Token Auth Default token authentication disabled (mcpServerRequireToken: false) to avoid blocking new users
Packaging Fix Fixed require() ESM loading error for @modelcontextprotocol/sdk in packaged app
Startup Robustness Clears server handle on EADDRINUSE for retry capability; port range validation
CI Fixes Skip registry-js on non-Windows platforms; added Linux lint type declarations
Git Fixes Use HTTPS instead of SSH git protocol on CI; fixed pnpm installation on Windows runners

3. Bug Fixes

🖼️ Image Context Menu: Copy Image to Clipboard (#718)

  • Right-click images to copy directly to clipboard

🌀 Sub-Workspace Hibernate/Wake Sync (#718)

  • Sub-workspace UI state (sidebar icons gray/restored) now syncs with the main workspace
  • Sub-workspace hibernation state is correctly synced on app startup

📂 FileSystemWatcher: Fix .tid File Format Corruption (#718)

Critical Fix — resolves issue #669

  • The file watcher was incorrectly using the tiddler's content type (e.g., text/markdown) as the file format type when loading changed data
  • This caused subsequent saves to use JSON format instead of the correct .tid format
  • Fix: uses fileDescriptor.type (file format) instead of tiddler.type (content type)
  • Added inferFileTypeFromExtension() fallback for robustness

🔧 Dynamic import() Replaced with Static Imports — Fix Node.js 22 ESM Error (#718)

  • In Electron 41 (Node.js 22), dynamic import() with path aliases (@/, @services/) crashes at runtime in bundled code
  • Converted all dynamic imports to static top-level imports (5 core files + test files)

🪟 Mini Window View Race Condition Fix (#712)

  • First-creation path now correctly handles WebContentsView creation
  • Fixed unhandled rejection in addViewForAllBrowserViews when menubar window is not ready
  • Avoided mini window startup lock deadlock

🔄 Git Operations Fixes (#718)

  • Deadlock Fix: acquireOperationLock no longer permanently locks the workspace on timeout
  • Local workspaces now hide the "sync-to-remote" button and unpushed icon
  • Git operations are skipped when workspace is hibernated
  • Added try/catch wrapping commitAndSync and forcePull lock acquisition

📋 Git Log Fixes (#718)

  • loadMore() correctly applies local-workspace guard logic
  • Added sync settings tab for local workspaces

🧩 Other Fixes

  • Fixed E2E drag-and-drop pointer Y coordinate issue on Windows CI (uses activatorEvent.clientY + delta.y)

4. E2E Testing & CI Improvements

⏱️ E2E Calibration System (#704, #723)

  • Introduced independent calibration run (test:e2e:calibrate), executed once per OS on CI before sharding
  • Removed all hardcoded fallback timeout values...
Read more

v0.13.0

Choose a tag to compare

@github-actions github-actions released this 21 Apr 16:10

What's Changed

Tiddlywiki v5.4.0

Git 与同步体验增强

  • 新增 Git 图表视图,用于更直观地查看提交历史。
  • Git Log 支持搜索与主题色适配,历史记录更容易定位。
  • 修复并增强文件监听逻辑,支持 watch fs 与 git 同步联动。
  • 改进大 JSON 文件处理,减少文件监听和同步过程中的异常。
  • 支持在同步过程中更安全地处理 .git 目录、符号链接子 wiki 和外部附件。

子 wiki 与配置同步能力增强

  • 增强子 wiki 路由能力,支持 tag tree 以及更稳定的子 wiki 同步。
  • 新增子 wiki 外部附件支持,文件可随路由规则进入正确的子 wiki 文件夹。
  • 工作区配置迁移到 tidgi.config.json,并保留 workspace name 等关键配置。
  • 修复模板复制与路径识别问题,避免 tidgi.config.json 被错误覆盖或当作条目处理。

桌面与发布体验改进

  • 新增 mini window。
  • 新增 move folder 能力,方便调整工作区位置。
  • 修复启动错误、休眠相关问题、open app 行为,以及菜单同步问题。
  • 升级 Electron 39 → 41、Forge 7.10 → 7.11,并修复 native ABI 兼容问题。
  • Trim 掉 dugite 中 TidGi 不需要的命令和组件,减少安装包体积。
  • 修复 macOS Intel 构建问题。

修复的问题

  • #698 / #697 / #691 / #689 / #688 / #686 / #679 / #677:多个杂项回归与稳定性问题修复。
  • #674:修复 watch fs 与 AI commit 流程的联动问题。
  • #672:修复子 wiki 同步问题。
  • #671:新增并修复子 wiki 外部附件支持。
  • #670:修复编辑 agent 以及相关多个问题。
  • #668:修复 API 配置与 Git Log 搜索支持问题。
  • #667:修复子 wiki tag tree 路由问题。
  • #659:修复菜单同步问题。
  • #658:修复 open app 行为。
  • #657:修复 watch fs 处理大 JSON 文件时的异常。
  • #654:修复启动时报错问题。
  • #652:修复 hibernation 相关问题。
  • #648:修复安全错误。

Enhancement of Git and Synchronization Experience

  • Added Git chart view to view commit history more intuitively.
  • Git Log supports search and is adapted to the theme color, making it easier to locate historical records.
  • Fixed and enhanced the file monitoring logic, supporting the linkage between watch fs and git synchronization.
  • Improved the handling of large JSON files to reduce exceptions during file monitoring and synchronization.
  • Supports more secure handling of the .git directory, symbolic link sub - wikis, and external attachments during synchronization.

Enhancement of Sub - wiki and Configuration Synchronization Capabilities

  • Enhanced the sub - wiki routing ability, supporting tag tree and more stable sub - wiki synchronization.
  • Added support for external attachments in sub - wikis, allowing files to enter the correct sub - wiki folders according to routing rules.
  • Migrated the workspace configuration to tidgi.config.json and retained key configurations such as workspace name.
  • Fixed issues with template copying and path recognition to avoid incorrect overwriting of tidgi.config.json or treating it as an entry.

Improvement of Desktop and Release Experience

  • Added a mini window.
  • Added the ability to move folders, facilitating the adjustment of the workspace location.
  • Fixed startup errors, hibernation - related issues, open app behavior, and menu synchronization issues.
  • Upgraded Electron from 39 to 41 and Forge from 7.10 to 7.11, and fixed the native ABI compatibility issue.
  • Trimmed the commands and components in dugite that TidGi doesn't need to reduce the installation package size.
  • Fixed the macOS Intel build issue.

Fixed Issues

  • #698 / #697 / #691 / #689 / #688 / #686 / #679 / #677: Fixed multiple miscellaneous regression and stability issues.
  • #674: Fixed the linkage issue between watch fs and the AI commit process.
  • #672: Fixed the sub - wiki synchronization issue.
  • #671: Added and fixed support for external attachments in sub - wikis.
  • #670: Fixed the editing agent and multiple related issues.
  • #668: Fixed the API configuration and Git Log search support issues.
  • #667: Fixed the sub - wiki tag tree routing issue.
  • #659: Fixed the menu synchronization issue.
  • #658: Fixed the open app behavior.
  • #657: Fixed the exception when watch fs processes large JSON files.
  • #654: Fixed the startup error issue.
  • #652: Fixed the hibernation - related issues.
  • #648: Fixed the security error.

Code changes

Full Changelog: v0.12.4...v0.13.0

v0.13.0-prerelease25

v0.13.0-prerelease25 Pre-release
Pre-release

Choose a tag to compare

With TiddlyWiki5 V5.4.0Prerelease at github:TiddlyWiki/TiddlyWiki5#3cfb6b120266b501558c41df22377b597d272c2e
For testing.

What's Changed

  • chore: upgrade Electron 39->41 + forge 7.10->7.11 + fix native ABI by @linonetwo in #692

Full Changelog: v0.13.0-prerelease23...v0.13.0-prerelease25

v0.13.0-prerelease23

v0.13.0-prerelease23 Pre-release
Pre-release

Choose a tag to compare

What's Changed

A relatively stable version, fix many bug find in my daily use. TiddlyWiki is v5.3.8

Full Changelog: v0.13.0-prerelease21-fix...v0.13.0-prerelease23

v0.13.0-prerelease21-fix

Pre-release

Choose a tag to compare

@github-actions github-actions released this 18 Mar 13:18
613d811

What's Changed

Full Changelog: v0.13.0-prerelease19...v0.13.0-prerelease21-fix

v0.13.0-prerelease19

v0.13.0-prerelease19 Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 25 Jan 19:56
a712b2f

What's Changed

Full Changelog: v0.13.0-prerelease17...v0.13.0-prerelease19

v0.13.0-prerelease17

v0.13.0-prerelease17 Pre-release
Pre-release

Choose a tag to compare

What's Changed

Full Changelog: v0.13.0-prerelease16...v0.13.0-prerelease17

v0.13.0-prerelease16

v0.13.0-prerelease16 Pre-release
Pre-release

Choose a tag to compare

What's Changed

  • Fix/api config and git log support search by @linonetwo in #668
  • intel macos update builder support

Full Changelog: v0.13.0-prerelease14...v0.13.0-prerelease16

v0.13.0-prerelease14

v0.13.0-prerelease14 Pre-release
Pre-release

Choose a tag to compare

Full Changelog: v0.13.0-prerelease12...v0.13.0-prerelease14

Reduce bundle size by remove unused git-lfs binary.