Skip to content

Commit

Permalink
chore(version): 0.8.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kangfenmao committed Oct 28, 2024
1 parent 98307d5 commit 0cc460a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
10 changes: 7 additions & 3 deletions electron-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ electronDownload:
afterSign: scripts/notarize.js
releaseInfo:
releaseNotes: |
修复滚动条显示问题
增加数学公式渲染引擎切换
修复添加默认助手会添加两个
增加300个智能体 by @cawabj
增加快捷键设置界面
支持快捷键缩放整体界面大小
修复 WebDAV 备份文件大小限制
修复跨平台备份回复后文件路径错误问题
请求头增加 X-Api-Key
修复消息滚动跳跃问题
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "CherryStudio",
"version": "0.8.4",
"version": "0.8.5",
"private": true,
"description": "A powerful AI assistant for producer.",
"main": "./out/main/index.js",
Expand Down
10 changes: 8 additions & 2 deletions src/renderer/src/pages/settings/ShortcutSettings.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,14 +84,20 @@ const ShortcutSettings: FC = () => {
<SettingContainer>
<SettingTitle>{t('settings.shortcuts.title')}</SettingTitle>
<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>
)
}

const Table = styled(AntTable)`
.ant-table-cell {
padding: 8px 0;
padding: 14px 0 !important;
}
`

Expand Down

0 comments on commit 0cc460a

Please sign in to comment.