mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2026-01-06 05:09:09 +08:00
chore: bump version to v1.6.0-rc.1
This commit is contained in:
parent
cc860e48b1
commit
7319fc5ef4
@ -126,24 +126,19 @@ artifactBuildCompleted: scripts/artifact-build-completed.js
|
|||||||
releaseInfo:
|
releaseInfo:
|
||||||
releaseNotes: |
|
releaseNotes: |
|
||||||
✨ 新功能:
|
✨ 新功能:
|
||||||
- 重构知识库模块,提升文档处理能力和搜索性能
|
- 集成 Perplexity SDK 和 Anthropic OAuth
|
||||||
- 新增 PaddleOCR 支持,增强文档识别能力
|
- 支持 API 服务器模式,提供外部调用接口
|
||||||
- 支持自定义窗口控制按钮样式
|
- 新增字体自定义设置功能
|
||||||
- 新增 AI SDK 包,扩展 AI 能力集成
|
- 笔记支持文件夹批量上传
|
||||||
- 支持标签页拖拽重排序功能
|
- 集成 HeroUI 和 Tailwind CSS 提升界面体验
|
||||||
- 增强笔记编辑器的同步和日志功能
|
|
||||||
|
|
||||||
🔧 性能优化:
|
🚀 性能优化:
|
||||||
- 优化 MCP 服务的日志记录和错误处理
|
- 优化大文件上传,支持 OpenAI 标准文件服务
|
||||||
- 改进 WebView 服务的 User-Agent 处理
|
- 重构 MCP 服务,改进错误处理和状态管理
|
||||||
- 优化迷你应用的标题栏样式和状态栏适配
|
|
||||||
- 重构依赖管理,清理和优化 package.json
|
|
||||||
|
|
||||||
🐛 问题修复:
|
🐛 问题修复:
|
||||||
- 修复输入栏无限状态更新循环问题
|
- 修复 WebSearch RAG 并发问题
|
||||||
- 修复窗口控制提示框的鼠标悬停延迟
|
- 修复翻译页面长文本渲染布局问题
|
||||||
- 修复翻译输入框粘贴多内容源的处理
|
- 修复笔记拖拽排序和无限循环问题
|
||||||
- 修复导航服务初始化时序问题
|
- 修复 macOS CodeTool 工作目录错误
|
||||||
- 修复 MCP 通过 JSON 添加时的参数转换
|
- 修复多个 UI 组件的响应式设计问题
|
||||||
- 修复模型作用域服务器同步时的 URL 格式
|
|
||||||
- 标准化工具提示图标样式
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "CherryStudio",
|
"name": "CherryStudio",
|
||||||
"version": "1.6.0-beta.7",
|
"version": "1.6.0-rc.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "A powerful AI assistant for producer.",
|
"description": "A powerful AI assistant for producer.",
|
||||||
"main": "./out/main/index.js",
|
"main": "./out/main/index.js",
|
||||||
|
|||||||
@ -38,7 +38,7 @@ export function useAppInit() {
|
|||||||
customCss,
|
customCss,
|
||||||
enableDataCollection
|
enableDataCollection
|
||||||
} = useSettings()
|
} = useSettings()
|
||||||
const { isTopNavbar, isLeftNavbar } = useNavbarPosition()
|
const { isLeftNavbar } = useNavbarPosition()
|
||||||
const { minappShow } = useRuntime()
|
const { minappShow } = useRuntime()
|
||||||
const { setDefaultModel, setQuickModel, setTranslateModel } = useDefaultModel()
|
const { setDefaultModel, setQuickModel, setTranslateModel } = useDefaultModel()
|
||||||
const avatar = useLiveQuery(() => db.settings.get('image://avatar'))
|
const avatar = useLiveQuery(() => db.settings.get('image://avatar'))
|
||||||
@ -110,7 +110,7 @@ export function useAppInit() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
window.root.style.background = isMacTransparentWindow ? 'var(--navbar-background-mac)' : 'var(--navbar-background)'
|
window.root.style.background = isMacTransparentWindow ? 'var(--navbar-background-mac)' : 'var(--navbar-background)'
|
||||||
}, [windowStyle, minappShow, theme])
|
}, [windowStyle, minappShow, theme, isLeftNavbar])
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (isLocalAi) {
|
if (isLocalAi) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user