Skip to content

Commit

Permalink
chore(version): 0.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
kangfenmao committed Jan 9, 2025
1 parent 112e90c commit 270216f
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 32 deletions.
18 changes: 4 additions & 14 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,19 +78,9 @@ jobs:
run: node scripts/replace-spaces.js

- name: Release
uses: softprops/action-gh-release@v2
uses: ncipollo/release-action@v1
with:
draft: true
files: |
dist/*.exe
dist/*.zip
dist/*.dmg
dist/*.AppImage
dist/*.snap
dist/*.deb
dist/*.rpm
dist/*.tar.gz
dist/latest*.yml
dist/*.blockmap
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
allowUpdates: true
artifacts: 'dist/*.exe,dist/*.zip,dist/*.dmg,dist/*.AppImage,dist/*.snap,dist/*.deb,dist/*.rpm,dist/*.tar.gz,dist/latest*.yml,dist/*.blockmap'
token: ${{ secrets.GH_TOKEN }}
12 changes: 1 addition & 11 deletions electron-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,14 +80,4 @@ afterPack: scripts/after-pack.js
afterSign: scripts/notarize.js
releaseInfo:
releaseNotes: |
全新的应用图标
首页窗口宽度支持调整
内容显示支持宽窄模式
增加搜索快捷键
可以自定义侧边栏图标 @hxp0618
Mermaid 预览增加放大缩小功能 @hxp0618
支持 AiHubMix 和智普联网模型
支持使用 Gemini PDF 附件使用官方 API 进行处理
文件模块增加 Gemini 文件列表
修复 Ollma 嵌入模型无法创建知识库问题
其他错误修复
修复智能体无法创建的问题
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.9.5",
"version": "0.9.6",
"private": true,
"description": "A powerful AI assistant for producer.",
"main": "./out/main/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/assets/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ body,
#content-container {
background-color: var(--color-background);
border-top: 0.5px solid var(--color-border);
border-top-left-radius: 12px;
border-top-left-radius: 10px;
border-left: 0.5px solid var(--color-border);
box-shadow: -2px 0px 20px -4px rgba(0, 0, 0, 0.06);
}
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/components/app/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const NavbarCenterContainer = styled.div`
flex: 1;
display: flex;
align-items: center;
padding: 0 ${isMac ? '20px' : '15px'};
padding: 0 ${isMac ? '20px' : 0};
font-weight: bold;
color: var(--color-text-1);
`
Expand Down
6 changes: 3 additions & 3 deletions src/renderer/src/pages/agents/AgentsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ const AgentsPage: FC = () => {
key: id,
children: (
<TabContent key={group}>
<Title level={5} key={group} style={{ marginBottom: 16 }}>
<Title level={5} key={group} style={{ marginBottom: 10 }}>
{localizedGroupName}
</Title>
<Row gutter={[20, 20]}>
Expand Down Expand Up @@ -272,8 +272,8 @@ const Tabs = styled(TabsAntd)<{ $language: string }>`
padding-right: 0 !important;
}
.ant-tabs-nav {
min-width: ${({ $language }) => ($language.startsWith('zh') ? '110px' : '140px')};
max-width: ${({ $language }) => ($language.startsWith('zh') ? '110px' : '140px')};
min-width: ${({ $language }) => ($language.startsWith('zh') ? '120px' : '140px')};
max-width: ${({ $language }) => ($language.startsWith('zh') ? '120px' : '140px')};
}
.ant-tabs-nav-list {
padding: 10px 8px;
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/pages/agents/components/AgentCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const Container = styled.div`
text-align: center;
gap: 10px;
background-color: var(--color-background);
border-radius: 16px;
border-radius: 10px;
position: relative;
overflow: hidden;
cursor: pointer;
Expand Down

0 comments on commit 270216f

Please sign in to comment.