chore(version): 0.7.0
This commit is contained in:
parent
71a35ccd44
commit
a654ccc25e
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "CherryStudio",
|
"name": "CherryStudio",
|
||||||
"version": "0.6.14",
|
"version": "0.7.0",
|
||||||
"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",
|
||||||
|
|||||||
@ -16,7 +16,7 @@ const FilesPage: FC = () => {
|
|||||||
const dataSource = files?.map((file) => ({
|
const dataSource = files?.map((file) => ({
|
||||||
key: file.id,
|
key: file.id,
|
||||||
file: <Image src={'file://' + file.path} preview={false} style={{ maxHeight: '40px' }} />,
|
file: <Image src={'file://' + file.path} preview={false} style={{ maxHeight: '40px' }} />,
|
||||||
name: <a href={'file://' + file.path}>{file.name}</a>,
|
name: <a href={'file://' + file.path}>{file.origin_name}</a>,
|
||||||
size: `${(file.size / 1024 / 1024).toFixed(2)} MB`,
|
size: `${(file.size / 1024 / 1024).toFixed(2)} MB`,
|
||||||
created_at: dayjs(file.created_at).format('MM-DD HH:mm')
|
created_at: dayjs(file.created_at).format('MM-DD HH:mm')
|
||||||
}))
|
}))
|
||||||
|
|||||||
@ -32,7 +32,6 @@ const SelectModelDropdown: FC<Props & PropsWithChildren> = ({ children, model, o
|
|||||||
{upperFirst(m?.name)} {isVisionModel(m) && <VisionIcon />}
|
{upperFirst(m?.name)} {isVisionModel(m) && <VisionIcon />}
|
||||||
</div>
|
</div>
|
||||||
),
|
),
|
||||||
defaultSelectedKeys: model ? [getModelUniqId(model)] : [],
|
|
||||||
icon: (
|
icon: (
|
||||||
<Avatar src={getModelLogo(m?.id || '')} size={24}>
|
<Avatar src={getModelLogo(m?.id || '')} size={24}>
|
||||||
{first(m?.name)}
|
{first(m?.name)}
|
||||||
|
|||||||
@ -94,7 +94,7 @@ export interface FileType {
|
|||||||
path: string
|
path: string
|
||||||
size: number
|
size: number
|
||||||
ext: string
|
ext: string
|
||||||
type: FileType
|
type: FileTypes
|
||||||
created_at: Date
|
created_at: Date
|
||||||
count: number
|
count: number
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1795,7 +1795,7 @@ __metadata:
|
|||||||
remark-math: "npm:^6.0.0"
|
remark-math: "npm:^6.0.0"
|
||||||
sass: "npm:^1.77.2"
|
sass: "npm:^1.77.2"
|
||||||
styled-components: "npm:^6.1.11"
|
styled-components: "npm:^6.1.11"
|
||||||
typescript: "npm:^5.3.3"
|
typescript: "npm:^5.6.2"
|
||||||
uuid: "npm:^10.0.0"
|
uuid: "npm:^10.0.0"
|
||||||
vite: "npm:^5.0.12"
|
vite: "npm:^5.0.12"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -8841,7 +8841,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"typescript@npm:^5.3.3":
|
"typescript@npm:^5.3.3, typescript@npm:^5.6.2":
|
||||||
version: 5.6.2
|
version: 5.6.2
|
||||||
resolution: "typescript@npm:5.6.2"
|
resolution: "typescript@npm:5.6.2"
|
||||||
bin:
|
bin:
|
||||||
@ -8851,7 +8851,7 @@ __metadata:
|
|||||||
languageName: node
|
languageName: node
|
||||||
linkType: hard
|
linkType: hard
|
||||||
|
|
||||||
"typescript@patch:typescript@npm%3A^5.3.3#optional!builtin<compat/typescript>":
|
"typescript@patch:typescript@npm%3A^5.3.3#optional!builtin<compat/typescript>, typescript@patch:typescript@npm%3A^5.6.2#optional!builtin<compat/typescript>":
|
||||||
version: 5.6.2
|
version: 5.6.2
|
||||||
resolution: "typescript@patch:typescript@npm%3A5.6.2#optional!builtin<compat/typescript>::version=5.6.2&hash=379a07"
|
resolution: "typescript@patch:typescript@npm%3A5.6.2#optional!builtin<compat/typescript>::version=5.6.2&hash=379a07"
|
||||||
bin:
|
bin:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user