Skip to content

Commit

Permalink
chore(version): 0.8.15
Browse files Browse the repository at this point in the history
  • Loading branch information
kangfenmao committed Nov 19, 2024
1 parent d2dd700 commit aefb089
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 16 deletions.
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.14",
"version": "0.8.15",
"private": true,
"description": "A powerful AI assistant for producer.",
"main": "./out/main/index.js",
Expand Down
1 change: 1 addition & 0 deletions src/renderer/src/components/Popups/SearchPopup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ const PopupContainer: React.FC<Props> = ({ resolve }) => {
content: { padding: 0, border: '1px solid var(--color-border)' },
body: { height: '85vh' }
}}
centered
footer={null}>
<HistoryPage />
</Modal>
Expand Down
3 changes: 1 addition & 2 deletions src/renderer/src/components/app/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,7 @@ const Icon = styled.div`
background-color: var(--color-active);
.iconfont,
.anticon {
color: var(--color-primary);
font-weight: bold;
color: var(--color-icon-white);
}
}
`
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/pages/history/HistoryPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ const MenuIcon = styled.div`
height: 36px;
border-radius: 50%;
&:hover {
background-color: var(--color-background-mute);
background-color: var(--color-background);
.anticon {
color: var(--color-text-1);
}
Expand Down
12 changes: 1 addition & 11 deletions src/renderer/src/pages/settings/DataSettings/DataSettings.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import { FileSearchOutlined, FolderOpenOutlined, SaveOutlined } from '@ant-design/icons'
import { HStack, VStack } from '@renderer/components/Layout'
import { HStack } from '@renderer/components/Layout'
import { useTheme } from '@renderer/context/ThemeProvider'
import { backup, reset, restore } from '@renderer/services/BackupService'
import { AppInfo } from '@renderer/types'
import { Button, Typography } from 'antd'
import { FC, useEffect, useState } from 'react'
import { useTranslation } from 'react-i18next'
import { Link } from 'react-router-dom'
import styled from 'styled-components'

import { SettingContainer, SettingDivider, SettingGroup, SettingRow, SettingRowTitle, SettingTitle } from '..'
Expand Down Expand Up @@ -36,15 +35,6 @@ const DataSettings: FC = () => {
<SettingGroup theme={theme}>
<SettingTitle>{t('settings.data')}</SettingTitle>
<SettingDivider />
<SettingRow>
<SettingRowTitle>{t('settings.data.webdav.title')}</SettingRowTitle>
<VStack gap="5px">
<Link to="/settings/data/webdav" style={{ color: 'var(--color-text-2)' }}>
<Button>{t('settings.general.view_webdav_settings')}</Button>
</Link>
</VStack>
</SettingRow>
<SettingDivider />
<SettingRow>
<SettingRowTitle>{t('settings.general.backup.title')}</SettingRowTitle>
<HStack gap="5px" justifyContent="space-between">
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/pages/settings/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const SettingRow = styled.div`
flex-direction: row;
justify-content: space-between;
align-items: center;
min-height: 32px;
min-height: 24px;
`

export const SettingRowTitle = styled.div`
Expand Down

0 comments on commit aefb089

Please sign in to comment.