chore(version): 0.7.0
This commit is contained in:
parent
71a35ccd44
commit
a654ccc25e
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "CherryStudio",
|
||||
"version": "0.6.14",
|
||||
"version": "0.7.0",
|
||||
"private": true,
|
||||
"description": "A powerful AI assistant for producer.",
|
||||
"main": "./out/main/index.js",
|
||||
|
||||
@ -16,7 +16,7 @@ const FilesPage: FC = () => {
|
||||
const dataSource = files?.map((file) => ({
|
||||
key: file.id,
|
||||
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`,
|
||||
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 />}
|
||||
</div>
|
||||
),
|
||||
defaultSelectedKeys: model ? [getModelUniqId(model)] : [],
|
||||
icon: (
|
||||
<Avatar src={getModelLogo(m?.id || '')} size={24}>
|
||||
{first(m?.name)}
|
||||
|
||||
@ -94,7 +94,7 @@ export interface FileType {
|
||||
path: string
|
||||
size: number
|
||||
ext: string
|
||||
type: FileType
|
||||
type: FileTypes
|
||||
created_at: Date
|
||||
count: number
|
||||
}
|
||||
|
||||
@ -1795,7 +1795,7 @@ __metadata:
|
||||
remark-math: "npm:^6.0.0"
|
||||
sass: "npm:^1.77.2"
|
||||
styled-components: "npm:^6.1.11"
|
||||
typescript: "npm:^5.3.3"
|
||||
typescript: "npm:^5.6.2"
|
||||
uuid: "npm:^10.0.0"
|
||||
vite: "npm:^5.0.12"
|
||||
peerDependencies:
|
||||
@ -8841,7 +8841,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@npm:^5.3.3":
|
||||
"typescript@npm:^5.3.3, typescript@npm:^5.6.2":
|
||||
version: 5.6.2
|
||||
resolution: "typescript@npm:5.6.2"
|
||||
bin:
|
||||
@ -8851,7 +8851,7 @@ __metadata:
|
||||
languageName: node
|
||||
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
|
||||
resolution: "typescript@patch:typescript@npm%3A5.6.2#optional!builtin<compat/typescript>::version=5.6.2&hash=379a07"
|
||||
bin:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user