# Release version 0.9.3
- fix(git): restore non-repo fallback and refine repo preflight errors. - perf(workspace-state): tighten watch debounce to 1s and max batch window to 3s. - fix(git): surface non-git-repo as a typed error and align all panels via workspace state. - fix(web-auth): url-decode token query param for websocket auth. - fix(chat-channel): use session agent in responding indicator and localize command messages. ----------------------------- # 发布版本 0.9.3 - 修复(Git):恢复非仓库目录的回退逻辑,并细化仓库预检错误提示; - 性能(工作区状态):将监听去抖收紧至 1 秒,最大批处理窗口收紧至 3 秒; - 修复(Git):将非 Git 仓库作为类型化错误上报,并让各面板统一通过工作区状态对齐; - 修复(Web 认证):对 WebSocket 认证所用 token 查询参数进行 URL 解码; - 修复(聊天频道):在响应中指示器里使用当前会话的 Agent,并对指令消息进行本地化。
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "codeg",
|
"name": "codeg",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.9.2",
|
"version": "0.9.3",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev --turbopack",
|
"dev": "next dev --turbopack",
|
||||||
"build": "next build",
|
"build": "next build",
|
||||||
|
|||||||
2
src-tauri/Cargo.lock
generated
2
src-tauri/Cargo.lock
generated
@@ -853,7 +853,7 @@ checksum = "c3e64b0cc0439b12df2fa678eae89a1c56a529fd067a9115f7827f1fffd22b32"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "codeg"
|
name = "codeg"
|
||||||
version = "0.9.2"
|
version = "0.9.3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"agent-client-protocol-schema",
|
"agent-client-protocol-schema",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "codeg"
|
name = "codeg"
|
||||||
version = "0.9.2"
|
version = "0.9.3"
|
||||||
description = "Agent Code Generation App"
|
description = "Agent Code Generation App"
|
||||||
authors = ["feitao"]
|
authors = ["feitao"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://schema.tauri.app/config/2",
|
"$schema": "https://schema.tauri.app/config/2",
|
||||||
"productName": "codeg",
|
"productName": "codeg",
|
||||||
"version": "0.9.2",
|
"version": "0.9.3",
|
||||||
"identifier": "app.codeg",
|
"identifier": "app.codeg",
|
||||||
"build": {
|
"build": {
|
||||||
"beforeDevCommand": "pnpm dev",
|
"beforeDevCommand": "pnpm dev",
|
||||||
|
|||||||
Reference in New Issue
Block a user