mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2026-01-01 01:30:51 +08:00
chore(version): 0.8.3
This commit is contained in:
parent
95bda6fdfb
commit
37f56c71e8
@ -61,3 +61,8 @@ publish:
|
|||||||
electronDownload:
|
electronDownload:
|
||||||
mirror: https://npmmirror.com/mirrors/electron/
|
mirror: https://npmmirror.com/mirrors/electron/
|
||||||
afterSign: scripts/notarize.js
|
afterSign: scripts/notarize.js
|
||||||
|
releaseInfo:
|
||||||
|
releaseNotes: |
|
||||||
|
增加数学公式渲染引擎切换
|
||||||
|
多个系统滚动条样式统一
|
||||||
|
修复添加默认助手会添加两个
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "CherryStudio",
|
"name": "CherryStudio",
|
||||||
"version": "0.8.2",
|
"version": "0.8.3",
|
||||||
"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",
|
||||||
|
|||||||
@ -57,7 +57,7 @@ const Agents: React.FC<Props> = ({ onClick }) => {
|
|||||||
)
|
)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Scrollbar style={{ width: 280 }}>
|
<Scrollbar style={{ maxWidth: 'var(--assistants-width)' }}>
|
||||||
<Container style={{ paddingBottom: dragging ? 30 : 0 }}>
|
<Container style={{ paddingBottom: dragging ? 30 : 0 }}>
|
||||||
{agents.length > 0 && (
|
{agents.length > 0 && (
|
||||||
<DragableList
|
<DragableList
|
||||||
@ -105,6 +105,7 @@ const Container = styled.div`
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
border-right: 0.5px solid var(--color-border);
|
border-right: 0.5px solid var(--color-border);
|
||||||
min-height: calc(100vh - var(--navbar-height));
|
min-height: calc(100vh - var(--navbar-height));
|
||||||
|
width: var(--assistants-width);
|
||||||
`
|
`
|
||||||
|
|
||||||
const AgentItem = styled.div`
|
const AgentItem = styled.div`
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user