# Release version 0.9.4
- feat(terminal): add word/line cursor shortcuts for shell line-editing. - feat(appearance): apply UI zoom level to terminal and Monaco editors. - fix(settings): move content padding inside scroll areas to keep inner borders visible. - refactor(git-error): drop locale-specific not-a-repo patterns. - fix(process): apply C.UTF-8 locale across platforms for child processes. ----------------------------- # 发布版本 0.9.4 - 新增(终端):新增按词/按行光标移动的快捷键,优化 Shell 行编辑体验; - 新增(外观):将界面缩放级别应用到终端和 Monaco 编辑器; - 修复(设置):将内容内边距移入滚动区域内部,保证内部边框完整可见; - 重构(Git 错误):移除特定语言区域的"非 Git 仓库"匹配模式; - 修复(进程):在各平台子进程中统一使用 C.UTF-8 locale。
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "codeg",
|
"name": "codeg",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.9.3",
|
"version": "0.9.4",
|
||||||
"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.3"
|
version = "0.9.4"
|
||||||
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.3"
|
version = "0.9.4"
|
||||||
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.3",
|
"version": "0.9.4",
|
||||||
"identifier": "app.codeg",
|
"identifier": "app.codeg",
|
||||||
"build": {
|
"build": {
|
||||||
"beforeDevCommand": "pnpm dev",
|
"beforeDevCommand": "pnpm dev",
|
||||||
|
|||||||
Reference in New Issue
Block a user