# Release version 0.8.2
- feat(frontend): replace native scrollbar styling with OverlayScrollbars for a polished, overlay-style scrollbar experience. - feat: show real-time download progress bar for app updates. - feat: stream real-time progress for agent SDK install/upgrade/uninstall. - feat(macos): set traffic-light position via Tauri builder API and sync with zoom level. - fix(windows): force UTF-8 encoding for all spawned child processes. - fix(frontend): prevent body OverlayScrollbar from intercepting message list scroll events. - fix(frontend): restore os-theme-codeg scrollbar theme lost during merge. - fix(frontend): remove inner padding from file tree container and restore scroll container padding. ----------------------------- # 发布版本 0.8.2 - 新增(前端):使用 OverlayScrollbars 替代原生滚动条样式,提供更精致的覆盖式滚动条体验; - 新增:应用更新时显示实时下载进度条; - 新增:Agent SDK 安装/升级/卸载过程支持实时流式进度展示; - 新增(macOS):通过 Tauri builder API 设置红绿灯按钮位置并与缩放级别同步; - 修复(Windows):强制所有子进程使用 UTF-8 编码; - 修复(前端):防止 body 层 OverlayScrollbar 拦截消息列表的滚动事件; - 修复(前端):修复合并后 os-theme-codeg 滚动条主题丢失的问题; - 修复(前端):移除文件树容器内边距并恢复滚动容器的正确 padding。
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "codeg",
|
"name": "codeg",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.8.1",
|
"version": "0.8.2",
|
||||||
"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.8.1"
|
version = "0.8.2"
|
||||||
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.8.1"
|
version = "0.8.2"
|
||||||
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.8.1",
|
"version": "0.8.2",
|
||||||
"identifier": "app.codeg",
|
"identifier": "app.codeg",
|
||||||
"build": {
|
"build": {
|
||||||
"beforeDevCommand": "pnpm dev",
|
"beforeDevCommand": "pnpm dev",
|
||||||
|
|||||||
Reference in New Issue
Block a user