diff --git a/.github/workflows/dockerimage.yml b/.github/workflows/dockerimage.yml index dddb81721..f345ad826 100644 --- a/.github/workflows/dockerimage.yml +++ b/.github/workflows/dockerimage.yml @@ -33,4 +33,4 @@ jobs: - name: Build the Docker image run: | - docker buildx build --push --platform linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v8 -t b3log/siyuan:latest -t b3log/siyuan:v2.7.9 . \ No newline at end of file + docker buildx build --push --platform linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v8 -t b3log/siyuan:latest -t b3log/siyuan:v2.7.10 . \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 62430c4a6..1da42963d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,31 @@ +## v2.7.10 / 2023-03-14 + +### 改进功能 + +* [浏览器端不显示 `退出应用`](https://github.com/siyuan-note/siyuan/issues/7618) +* [升级 Mermaid 以支持 timeline 和 mindmap](https://github.com/siyuan-note/siyuan/issues/7619) +* [表格和有内容的段落块中插入多个文件时不进行分块](https://github.com/siyuan-note/siyuan/issues/7624) +* [点击搜索项将依次高亮该结果中的多个关键字](https://github.com/siyuan-note/siyuan/pull/7629) +* [表格中插入图片时偶尔会多一个空行](https://github.com/siyuan-note/siyuan/issues/7631) +* [移动端软键盘顶部工具栏遮挡编辑位置](https://github.com/siyuan-note/siyuan/issues/7632) +* [反链提及搜索范围增加命名、别名和备注](https://github.com/siyuan-note/siyuan/issues/7639) +* [人工智能插入公式块、代码块和图表块后自动进行渲染](https://github.com/siyuan-note/siyuan/issues/7643) +* [代码片段设置界面用户体验优化](https://github.com/siyuan-note/siyuan/issues/7647) +* [部分图标改进](https://github.com/siyuan-note/siyuan/issues/7650) +* [Linux 端打开多工作空间托盘无法关闭](https://github.com/siyuan-note/siyuan/issues/7653) +* [表格块写入数据库表时在单元格之间添加空格](https://github.com/siyuan-note/siyuan/issues/7654) + +### 移除功能 + +* [移除 设置 - 搜索 - 虚拟引用 - 关键字数量限制](https://github.com/siyuan-note/siyuan/issues/7634) + +### 修复缺陷 + +* [使用 Markdown 标记符嵌套行级元素后被还原为纯文本](https://github.com/siyuan-note/siyuan/issues/7637) +* [闪卡管理分页失效](https://github.com/siyuan-note/siyuan/issues/7638) +* [集市包更新下载进度显示问题](https://github.com/siyuan-note/siyuan/issues/7640) +* [搜索中指定路径选为文档时搜索结果不包含子文档](https://github.com/siyuan-note/siyuan/issues/7642) + ## v2.7.9 / 2023-03-10 ### 改进功能 diff --git a/app/appx/AppxManifest.xml b/app/appx/AppxManifest.xml index cf266da50..d59650b44 100644 --- a/app/appx/AppxManifest.xml +++ b/app/appx/AppxManifest.xml @@ -9,7 +9,7 @@ + Version="2.7.10.0"/> SiYuan 云南链滴科技有限公司 diff --git a/app/package.json b/app/package.json index 9508b914b..ecc00878b 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "SiYuan", - "version": "2.7.9", + "version": "2.7.10", "description": "Build Your Eternal Digital Garden", "homepage": "https://b3log.org/siyuan", "main": "./electron/main.js", diff --git a/kernel/util/working.go b/kernel/util/working.go index 9c0217b4f..892d9151f 100644 --- a/kernel/util/working.go +++ b/kernel/util/working.go @@ -43,7 +43,7 @@ import ( var Mode = "prod" const ( - Ver = "2.7.9" + Ver = "2.7.10" IsInsider = false )