chore(version): 0.9.16

This commit is contained in:
kangfenmao 2025-01-22 15:11:28 +08:00
parent a6f086e3be
commit b1bc576e3f
3 changed files with 7 additions and 5 deletions

View File

@ -80,6 +80,7 @@ afterPack: scripts/after-pack.js
afterSign: scripts/notarize.js afterSign: scripts/notarize.js
releaseInfo: releaseInfo:
releaseNotes: | releaseNotes: |
支持 DeepSeek R1 模型 @cololi 消息分组显示 @teojs
快捷助手支持上下键切换菜单 支持 DeepSeek R1 模型
WebDAV 备份支持更多的时间设置 @ousugo 助手的预设消息保存逻辑的修改 @duanyongcheng
错误修复和性能优化

View File

@ -1,6 +1,6 @@
{ {
"name": "CherryStudio", "name": "CherryStudio",
"version": "0.9.15", "version": "0.9.16",
"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",

View File

@ -133,7 +133,7 @@ const GroupContainer = styled.div<{ $isGrouped: boolean; $layout: MultiModelMess
padding-top: ${({ $isGrouped, $layout }) => ($isGrouped && $layout === 'horizontal' ? '15px' : '0')}; padding-top: ${({ $isGrouped, $layout }) => ($isGrouped && $layout === 'horizontal' ? '15px' : '0')};
` `
const GridContainer = styled(Scrollbar)<{ $count: number; $layout: MultiModelMessageStyle }>` const GridContainer = styled.div<{ $count: number; $layout: MultiModelMessageStyle }>`
width: 100%; width: 100%;
display: grid; display: grid;
grid-template-columns: repeat( grid-template-columns: repeat(
@ -147,6 +147,7 @@ const GridContainer = styled(Scrollbar)<{ $count: number; $layout: MultiModelMes
minmax(400px, 1fr) minmax(400px, 1fr)
); );
} }
overflow-y: auto;
` `
interface MessageWrapperProps { interface MessageWrapperProps {