chore(version): 0.8.15
This commit is contained in:
parent
d2dd70000b
commit
aefb08965d
@ -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",
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -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);
|
||||
}
|
||||
}
|
||||
`
|
||||
|
||||
@ -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);
|
||||
}
|
||||
|
||||
@ -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 '..'
|
||||
@ -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">
|
||||
|
||||
@ -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`
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user