Skip to content

Commit

Permalink
chore(version): 0.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kangfenmao committed Oct 24, 2024
1 parent 596cf8e commit 27631d9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions electron-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,8 @@ publish:
electronDownload:
mirror: https://npmmirror.com/mirrors/electron/
afterSign: scripts/notarize.js
releaseInfo:
releaseNotes: |
增加数学公式渲染引擎切换
多个系统滚动条样式统一
修复添加默认助手会添加两个
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.2",
"version": "0.8.3",
"private": true,
"description": "A powerful AI assistant for producer.",
"main": "./out/main/index.js",
Expand Down
3 changes: 2 additions & 1 deletion src/renderer/src/pages/agents/Agents.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const Agents: React.FC<Props> = ({ onClick }) => {
)

return (
<Scrollbar style={{ width: 280 }}>
<Scrollbar style={{ maxWidth: 'var(--assistants-width)' }}>
<Container style={{ paddingBottom: dragging ? 30 : 0 }}>
{agents.length > 0 && (
<DragableList
Expand Down Expand Up @@ -105,6 +105,7 @@ const Container = styled.div`
flex-direction: column;
border-right: 0.5px solid var(--color-border);
min-height: calc(100vh - var(--navbar-height));
width: var(--assistants-width);
`

const AgentItem = styled.div`
Expand Down

0 comments on commit 27631d9

Please sign in to comment.