chore(version): 0.8.5
This commit is contained in:
parent
98307d5d85
commit
0cc460a4a3
@ -63,6 +63,10 @@ electronDownload:
|
|||||||
afterSign: scripts/notarize.js
|
afterSign: scripts/notarize.js
|
||||||
releaseInfo:
|
releaseInfo:
|
||||||
releaseNotes: |
|
releaseNotes: |
|
||||||
修复滚动条显示问题
|
增加300个智能体 by @cawabj
|
||||||
增加数学公式渲染引擎切换
|
增加快捷键设置界面
|
||||||
修复添加默认助手会添加两个
|
支持快捷键缩放整体界面大小
|
||||||
|
修复 WebDAV 备份文件大小限制
|
||||||
|
修复跨平台备份回复后文件路径错误问题
|
||||||
|
请求头增加 X-Api-Key
|
||||||
|
修复消息滚动跳跃问题
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "CherryStudio",
|
"name": "CherryStudio",
|
||||||
"version": "0.8.4",
|
"version": "0.8.5",
|
||||||
"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",
|
||||||
|
|||||||
@ -84,14 +84,20 @@ const ShortcutSettings: FC = () => {
|
|||||||
<SettingContainer>
|
<SettingContainer>
|
||||||
<SettingTitle>{t('settings.shortcuts.title')}</SettingTitle>
|
<SettingTitle>{t('settings.shortcuts.title')}</SettingTitle>
|
||||||
<SettingDivider style={{ marginBottom: 0 }} />
|
<SettingDivider style={{ marginBottom: 0 }} />
|
||||||
<Table columns={columns} dataSource={shortcuts} pagination={false} size="middle" showHeader={false} />
|
<Table
|
||||||
|
columns={columns as ColumnsType<unknown>}
|
||||||
|
dataSource={shortcuts}
|
||||||
|
pagination={false}
|
||||||
|
size="middle"
|
||||||
|
showHeader={false}
|
||||||
|
/>
|
||||||
</SettingContainer>
|
</SettingContainer>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
const Table = styled(AntTable)`
|
const Table = styled(AntTable)`
|
||||||
.ant-table-cell {
|
.ant-table-cell {
|
||||||
padding: 8px 0;
|
padding: 14px 0 !important;
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user