Skip to content

Commit

Permalink
chore(version): 0.7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
kangfenmao committed Sep 21, 2024
1 parent ef40e9d commit f98879a
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
16 changes: 11 additions & 5 deletions electron-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ dmg:
artifactName: ${productName}-${version}-${arch}.${ext}
linux:
target:
- AppImage
- target: AppImage
arch:
- arm64
- x64
# - snap
# - deb
maintainer: electronjs.org
Expand All @@ -60,10 +63,13 @@ afterSign: scripts/notarize.js
releaseInfo:
releaseNotes: |
本次更新:
支持话题导出为图片
启动界面增加LOGO显示避免空白
修复输入框光标位置粘贴文字问题
修复暂停生成导致消息显示错乱问题
修复公式渲染异常情况
修复 Anthropic API 地址错误问题
近期更新:
增加了30多种文本文档格式选择
支持粘贴图片和文件到聊天输入框
支持将对话移动到其他智能体了
近期更新:
支持 Vision 模型
新增文件功能
支持从特定消息创建新分支
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "CherryStudio",
"version": "0.7.5",
"version": "0.7.6",
"private": true,
"description": "A powerful AI assistant for producer.",
"main": "./out/main/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/pages/home/Inputbar/Inputbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const Inputbar: FC<Props> = ({ assistant, setActiveTopic }) => {
const [contextCount, setContextCount] = useState(0)
const generating = useAppSelector((state) => state.runtime.generating)
const textareaRef = useRef<TextAreaRef>(null)
const [files, setFiles] = useState<FileType[]>([])
const [files, setFiles] = useState<FileType[]>(_files)
const { t } = useTranslation()
const containerRef = useRef(null)
const { showTopics, toggleShowTopics } = useShowTopics()
Expand Down

0 comments on commit f98879a

Please sign in to comment.