chore(version): 0.9.6
This commit is contained in:
parent
112e90c15c
commit
270216f461
18
.github/workflows/release.yml
vendored
18
.github/workflows/release.yml
vendored
@ -78,19 +78,9 @@ jobs:
|
|||||||
run: node scripts/replace-spaces.js
|
run: node scripts/replace-spaces.js
|
||||||
|
|
||||||
- name: Release
|
- name: Release
|
||||||
uses: softprops/action-gh-release@v2
|
uses: ncipollo/release-action@v1
|
||||||
with:
|
with:
|
||||||
draft: true
|
draft: true
|
||||||
files: |
|
allowUpdates: true
|
||||||
dist/*.exe
|
artifacts: 'dist/*.exe,dist/*.zip,dist/*.dmg,dist/*.AppImage,dist/*.snap,dist/*.deb,dist/*.rpm,dist/*.tar.gz,dist/latest*.yml,dist/*.blockmap'
|
||||||
dist/*.zip
|
token: ${{ secrets.GH_TOKEN }}
|
||||||
dist/*.dmg
|
|
||||||
dist/*.AppImage
|
|
||||||
dist/*.snap
|
|
||||||
dist/*.deb
|
|
||||||
dist/*.rpm
|
|
||||||
dist/*.tar.gz
|
|
||||||
dist/latest*.yml
|
|
||||||
dist/*.blockmap
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
||||||
|
|||||||
@ -80,14 +80,4 @@ afterPack: scripts/after-pack.js
|
|||||||
afterSign: scripts/notarize.js
|
afterSign: scripts/notarize.js
|
||||||
releaseInfo:
|
releaseInfo:
|
||||||
releaseNotes: |
|
releaseNotes: |
|
||||||
全新的应用图标
|
修复智能体无法创建的问题
|
||||||
首页窗口宽度支持调整
|
|
||||||
内容显示支持宽窄模式
|
|
||||||
增加搜索快捷键
|
|
||||||
可以自定义侧边栏图标 @hxp0618
|
|
||||||
Mermaid 预览增加放大缩小功能 @hxp0618
|
|
||||||
支持 AiHubMix 和智普联网模型
|
|
||||||
支持使用 Gemini PDF 附件使用官方 API 进行处理
|
|
||||||
文件模块增加 Gemini 文件列表
|
|
||||||
修复 Ollma 嵌入模型无法创建知识库问题
|
|
||||||
其他错误修复
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "CherryStudio",
|
"name": "CherryStudio",
|
||||||
"version": "0.9.5",
|
"version": "0.9.6",
|
||||||
"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",
|
||||||
|
|||||||
@ -171,7 +171,7 @@ body,
|
|||||||
#content-container {
|
#content-container {
|
||||||
background-color: var(--color-background);
|
background-color: var(--color-background);
|
||||||
border-top: 0.5px solid var(--color-border);
|
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);
|
border-left: 0.5px solid var(--color-border);
|
||||||
box-shadow: -2px 0px 20px -4px rgba(0, 0, 0, 0.06);
|
box-shadow: -2px 0px 20px -4px rgba(0, 0, 0, 0.06);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -55,7 +55,7 @@ const NavbarCenterContainer = styled.div`
|
|||||||
flex: 1;
|
flex: 1;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 0 ${isMac ? '20px' : '15px'};
|
padding: 0 ${isMac ? '20px' : 0};
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: var(--color-text-1);
|
color: var(--color-text-1);
|
||||||
`
|
`
|
||||||
|
|||||||
@ -132,7 +132,7 @@ const AgentsPage: FC = () => {
|
|||||||
key: id,
|
key: id,
|
||||||
children: (
|
children: (
|
||||||
<TabContent key={group}>
|
<TabContent key={group}>
|
||||||
<Title level={5} key={group} style={{ marginBottom: 16 }}>
|
<Title level={5} key={group} style={{ marginBottom: 10 }}>
|
||||||
{localizedGroupName}
|
{localizedGroupName}
|
||||||
</Title>
|
</Title>
|
||||||
<Row gutter={[20, 20]}>
|
<Row gutter={[20, 20]}>
|
||||||
@ -272,8 +272,8 @@ const Tabs = styled(TabsAntd)<{ $language: string }>`
|
|||||||
padding-right: 0 !important;
|
padding-right: 0 !important;
|
||||||
}
|
}
|
||||||
.ant-tabs-nav {
|
.ant-tabs-nav {
|
||||||
min-width: ${({ $language }) => ($language.startsWith('zh') ? '110px' : '140px')};
|
min-width: ${({ $language }) => ($language.startsWith('zh') ? '120px' : '140px')};
|
||||||
max-width: ${({ $language }) => ($language.startsWith('zh') ? '110px' : '140px')};
|
max-width: ${({ $language }) => ($language.startsWith('zh') ? '120px' : '140px')};
|
||||||
}
|
}
|
||||||
.ant-tabs-nav-list {
|
.ant-tabs-nav-list {
|
||||||
padding: 10px 8px;
|
padding: 10px 8px;
|
||||||
|
|||||||
@ -81,7 +81,7 @@ const Container = styled.div`
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
gap: 10px;
|
gap: 10px;
|
||||||
background-color: var(--color-background);
|
background-color: var(--color-background);
|
||||||
border-radius: 16px;
|
border-radius: 10px;
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user