chore(version): 0.8.0

This commit is contained in:
kangfenmao 2024-10-14 14:57:19 +08:00
parent c68ad4febb
commit 6f502049f4
4 changed files with 11 additions and 14 deletions

View File

@ -65,15 +65,12 @@ afterSign: scripts/notarize.js
releaseInfo: releaseInfo:
releaseNotes: | releaseNotes: |
本次更新: 本次更新:
支持 PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, ODT, ODP, ODS 文件 增加 Artifacts 网页预览功能
支持图片的预览和下载 内置助理新增网页生成助理
修复旧版本备份文件无法恢复问题 DashScope 服务商修改为阿里云百炼
o1模型设置使用优化 修复粘贴长文本后不能自动清除的问题
修复黑暗模式的启动页是白色的 话题右键菜单增加删除消息功能
取消模型首字母大写 修复选择模型弹窗滚动条消失问题
字体大小上限增加到22
点击消息token返回到消息顶部
近期更新: 近期更新:
增加 WebDAV 备份功能 by @DrayChou 支持 PDF, DOC等办公文件格式
增加话题历史记录 支持图片的预览和下载
增加 Azure OpenAI 服务商

View File

@ -1,6 +1,6 @@
{ {
"name": "CherryStudio", "name": "CherryStudio",
"version": "0.7.16", "version": "0.8.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",

View File

@ -64,7 +64,7 @@ const Inputbar: FC<Props> = ({ assistant, setActiveTopic }) => {
const estimateTextTokens = useCallback(debounce(estimateTxtTokens, 1000), []) const estimateTextTokens = useCallback(debounce(estimateTxtTokens, 1000), [])
const inputTokenCount = useMemo( const inputTokenCount = useMemo(
() => showInputEstimatedTokens && estimateTextTokens(text), () => (showInputEstimatedTokens ? estimateTextTokens(text) || 0 : 0),
[estimateTextTokens, showInputEstimatedTokens, text] [estimateTextTokens, showInputEstimatedTokens, text]
) )

View File

@ -29,7 +29,7 @@ interface Props {
const Topics: FC<Props> = ({ assistant: _assistant, activeTopic, setActiveTopic }) => { const Topics: FC<Props> = ({ assistant: _assistant, activeTopic, setActiveTopic }) => {
const { assistants } = useAssistants() const { assistants } = useAssistants()
const { assistant, removeTopic, moveTopic, updateTopic, updateTopics, addTopic } = useAssistant(_assistant.id) const { assistant, removeTopic, moveTopic, updateTopic, updateTopics } = useAssistant(_assistant.id)
const { t } = useTranslation() const { t } = useTranslation()
const generating = useAppSelector((state) => state.runtime.generating) const generating = useAppSelector((state) => state.runtime.generating)