chore(version): 0.9.18

This commit is contained in:
kangfenmao 2025-02-04 17:26:02 +08:00
parent abb922a2b1
commit 02080954bc
3 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "CherryStudio",
"version": "0.9.17",
"version": "0.9.18",
"private": true,
"description": "A powerful AI assistant for producer.",
"main": "./out/main/index.js",

View File

@ -16,7 +16,7 @@ const OAuthButton: FC<Props> = ({ provider, ...props }) => {
const onSuccess = (key: string) => {
if (key.trim()) {
props.onSuccess?.(key)
window.message.success(t('auth.get_key_success'))
window.message.success({ content: t('auth.get_key_success'), key: 'auth-success' })
}
}

View File

@ -896,6 +896,7 @@ const migrateConfig = {
provider.type = 'azure-openai'
}
})
state.settings.translateModelPrompt = TRANSLATE_PROMPT
return state
}
}