From 8ae6aa33b112d1cece1133fe2f54c381cac8c014 Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Mon, 15 Aug 2022 10:39:59 +0800 Subject: [PATCH 1/2] :bookmark: Release v2.1.7 --- CHANGELOG.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fa74967d..eb2dcd1fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,36 @@ +## v2.1.7 / 2022-08-15 + +### 改进功能 + +* [移动端和 Web 端支持导入 `*.sy.zip`](https://github.com/siyuan-note/siyuan/issues/5601) +* [添加复制块 ID 快捷键](https://github.com/siyuan-note/siyuan/issues/5605) +* [字体设置不应该影响非编辑器内容](https://github.com/siyuan-note/siyuan/issues/5610) +* [改进无法读写块树文件后的处理](https://github.com/siyuan-note/siyuan/issues/5619) +* [改进 Windows 端默认工作空间路径](https://github.com/siyuan-note/siyuan/issues/5622) +* [提升块标在边界范围的高度](https://github.com/siyuan-note/siyuan/issues/5623) +* [关系图搜索框存在内容时不收缩隐藏](https://github.com/siyuan-note/siyuan/issues/5628) +* [向上滚动文档时题头图不应该闪现](https://github.com/siyuan-note/siyuan/issues/5630) +* [移动端插入 iframe 输入框位置错误](https://github.com/siyuan-note/siyuan/issues/5638) + +### 开发重构 + +* [升级 Electron](https://github.com/siyuan-note/siyuan/issues/5621) + +### 修复缺陷 + +* [列表中无法使用 `[]` 插入子待办列表](https://github.com/siyuan-note/siyuan/issues/5548) +* [代码块设置换行后渲染异常](https://github.com/siyuan-note/siyuan/issues/5612) +* [导出 PDF、HTML 和 Word 时未移除不支持的文件名符号](https://github.com/siyuan-note/siyuan/issues/5614) +* [关闭所有文档后无法退出程序](https://github.com/siyuan-note/siyuan/issues/5615) +* [启动时关闭所有页签失效](https://github.com/siyuan-note/siyuan/issues/5616) +* [恢复文档浏览位置时最后一个块没有显示](https://github.com/siyuan-note/siyuan/issues/5618) +* [图片居中后打开会多一行](https://github.com/siyuan-note/siyuan/issues/5626) +* [表情无法滚动](https://github.com/siyuan-note/siyuan/issues/5627) +* [使用查询语法搜索时编辑区高亮不正确](https://github.com/siyuan-note/siyuan/issues/5632) +* [表格中的块引锚文本中包含 `|` 时导致表格解析不正确](https://github.com/siyuan-note/siyuan/issues/5633) +* [Windows 端 Ctrl+K 添加超链接后撤销触发状态异常](https://github.com/siyuan-note/siyuan/issues/5637) +* [恢复文档浏览位置时折叠标题下方块被计入](https://github.com/siyuan-note/siyuan/issues/5639) + ## v2.1.6 / 2022-08-11 ### 改进功能 From 9b28059c360e8901398b84638235e8fe268adfd9 Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Mon, 15 Aug 2022 10:42:58 +0800 Subject: [PATCH 2/2] :bookmark: Release v2.1.7 --- .github/workflows/dockerimage.yml | 2 +- app/appx/AppxManifest.xml | 2 +- app/package.json | 2 +- kernel/util/working.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dockerimage.yml b/.github/workflows/dockerimage.yml index 21b90b526..f1266df3e 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 -t b3log/siyuan:latest -t b3log/siyuan:v2.1.6 . \ No newline at end of file + docker buildx build --push --platform linux/amd64,linux/arm64,linux/arm/v7 -t b3log/siyuan:latest -t b3log/siyuan:v2.1.7 . \ No newline at end of file diff --git a/app/appx/AppxManifest.xml b/app/appx/AppxManifest.xml index 048a94616..726c14122 100644 --- a/app/appx/AppxManifest.xml +++ b/app/appx/AppxManifest.xml @@ -9,7 +9,7 @@ + Version="2.1.7.0"/> SiYuan 云南链滴科技有限公司 diff --git a/app/package.json b/app/package.json index 45050b02d..a016d4c44 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "SiYuan", - "version": "2.1.6", + "version": "2.1.7", "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 c72cafcc6..ad3ece011 100644 --- a/kernel/util/working.go +++ b/kernel/util/working.go @@ -41,7 +41,7 @@ import ( var Mode = "prod" const ( - Ver = "2.1.6" + Ver = "2.1.7" IsInsider = false )