# Release version 0.9.2
- feat(settings): render update release notes as markdown. - refactor(message): shrink agent card max height and localize running indicator with spinner. - fix(settings): use randomUUID helper with getRandomValues fallback for non-secure contexts. - fix(workspace-state): keep git-presence flag and branch poll in sync with runtime state. - fix(workspace-state): stop resync loop on non-git folders and allow retry for degraded watcher. ----------------------------- # 发布版本 0.9.2 - 功能(设置):更新提示中的发布说明以 Markdown 格式渲染; - 重构(消息):缩小 Agent 卡片最大高度,并本地化运行中指示器,配合 spinner 展示; - 修复(设置):使用 randomUUID 助手函数,在非安全上下文中回退到 getRandomValues; - 修复(工作区状态):保持 git 存在标识与分支轮询结果同步于运行时状态; - 修复(工作区状态):在非 git 文件夹停止重复同步循环,并允许降级的 watcher 重试。
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "codeg",
|
||||
"private": true,
|
||||
"version": "0.9.1",
|
||||
"version": "0.9.2",
|
||||
"scripts": {
|
||||
"dev": "next dev --turbopack",
|
||||
"build": "next build",
|
||||
|
||||
2
src-tauri/Cargo.lock
generated
2
src-tauri/Cargo.lock
generated
@@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
|
||||
|
||||
[[package]]
|
||||
name = "codeg"
|
||||
version = "0.9.1"
|
||||
version = "0.9.2"
|
||||
dependencies = [
|
||||
"agent-client-protocol-schema",
|
||||
"async-trait",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "codeg"
|
||||
version = "0.9.1"
|
||||
version = "0.9.2"
|
||||
description = "Agent Code Generation App"
|
||||
authors = ["feitao"]
|
||||
edition = "2021"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"$schema": "https://schema.tauri.app/config/2",
|
||||
"productName": "codeg",
|
||||
"version": "0.9.1",
|
||||
"version": "0.9.2",
|
||||
"identifier": "app.codeg",
|
||||
"build": {
|
||||
"beforeDevCommand": "pnpm dev",
|
||||
|
||||
Reference in New Issue
Block a user