chore(version): 0.8.10
This commit is contained in:
parent
a6b4e48640
commit
088628f89f
@ -63,6 +63,15 @@ electronDownload:
|
|||||||
afterSign: scripts/notarize.js
|
afterSign: scripts/notarize.js
|
||||||
releaseInfo:
|
releaseInfo:
|
||||||
releaseNotes: |
|
releaseNotes: |
|
||||||
支持聊天气泡样式和简洁样式切换
|
新功能:
|
||||||
支持导出对话为 Word 文档
|
- 增加 Mistral, Hyperbolic, Grok 服务商 @1355873789
|
||||||
错误修复
|
- 增加 DuckDuckGo 小程序,无需登录即可使用 GPT-4o-mini 模型
|
||||||
|
错误修复:
|
||||||
|
- 修复上下文菜单多语言显示问题 @injurka
|
||||||
|
- 修复默认模型设置不生效问题 @injurka
|
||||||
|
- 修复全局快捷键注册失败报错
|
||||||
|
- 修复导出图片背景颜色错误
|
||||||
|
- 修复 Github Models 和 Groq 图片无法识别问题
|
||||||
|
- 修复气泡模式代码颜色问题
|
||||||
|
- 修复删除最后一组预设消息组后无法保存问题
|
||||||
|
- 修复拼写错误 @SHLE1
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "CherryStudio",
|
"name": "CherryStudio",
|
||||||
"version": "0.8.9",
|
"version": "0.8.10",
|
||||||
"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",
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
import path from 'node:path'
|
import path from 'node:path'
|
||||||
|
|
||||||
|
import { ThemeMode } from '@types'
|
||||||
import { BrowserWindow, ipcMain, session, shell } from 'electron'
|
import { BrowserWindow, ipcMain, session, shell } from 'electron'
|
||||||
|
|
||||||
import { titleBarOverlayDark, titleBarOverlayLight } from './config'
|
import { titleBarOverlayDark, titleBarOverlayLight } from './config'
|
||||||
@ -35,7 +36,7 @@ export function registerIpc(mainWindow: BrowserWindow, app: Electron.App) {
|
|||||||
})
|
})
|
||||||
|
|
||||||
// theme
|
// theme
|
||||||
ipcMain.handle('app:set-theme', (_, theme: 'light' | 'dark') => {
|
ipcMain.handle('app:set-theme', (_, theme: ThemeMode) => {
|
||||||
configManager.setTheme(theme)
|
configManager.setTheme(theme)
|
||||||
mainWindow?.setTitleBarOverlay &&
|
mainWindow?.setTitleBarOverlay &&
|
||||||
mainWindow.setTitleBarOverlay(theme === 'dark' ? titleBarOverlayDark : titleBarOverlayLight)
|
mainWindow.setTitleBarOverlay(theme === 'dark' ? titleBarOverlayDark : titleBarOverlayLight)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user