Release v1.2.3: 项目搜索排序优化和设置简化

## 主要更新

### 项目管理优化
- 项目列表按最近会话时间排序(最新在上)
- 新增项目名称搜索功能
- 优化页面布局,新建会话按钮与搜索框同行显示
- 添加搜索结果统计和清空功能

### 设置页面优化
- 简化聊天记录保留期设置
- 移除永久保存特殊值处理
- 优化设置界面交互体验

### 国际化完善
- 完善中英双语翻译
- 移除未使用的翻译键

### 后端改进
- 优化项目列表性能
- 支持从JSONL文件读取最新会话时间
- 改进项目排序逻辑
This commit is contained in:
2025-10-11 17:11:20 +08:00
parent cc6ae4bfed
commit f6c00aee61
3 changed files with 3 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
{ {
"name": "claudia", "name": "claudia",
"private": true, "private": true,
"version": "1.2.2", "version": "1.2.3",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"type": "module", "type": "module",
"scripts": { "scripts": {

2
src-tauri/Cargo.lock generated
View File

@@ -718,7 +718,7 @@ dependencies = [
[[package]] [[package]]
name = "claudia" name = "claudia"
version = "1.2.2" version = "1.2.3"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-trait", "async-trait",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "claudia" name = "claudia"
version = "1.2.2" version = "1.2.3"
description = "GUI app and Toolkit for Claude Code" description = "GUI app and Toolkit for Claude Code"
authors = ["mufeedvh", "123vviekr"] authors = ["mufeedvh", "123vviekr"]
license = "AGPL-3.0" license = "AGPL-3.0"