diff --git a/.github/workflows/dockerimage.yml b/.github/workflows/dockerimage.yml index f2f556d96..f52d44c6a 100644 --- a/.github/workflows/dockerimage.yml +++ b/.github/workflows/dockerimage.yml @@ -14,5 +14,5 @@ jobs: - name: Build the Docker image run: | docker login --username=${{ secrets.DOCKER_HUB_USER }} --password=${{ secrets.DOCKER_HUB_PWD }} - docker build -t b3log/siyuan:latest -t b3log/siyuan:v2.0.19 . + docker build -t b3log/siyuan:latest -t b3log/siyuan:v2.0.20 . docker push b3log/siyuan -a diff --git a/CHANGELOG.md b/CHANGELOG.md index fb7314f99..66f367353 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +## v2.0.20 / 2022-06-15 + +### 改进功能 + +* [支持空列表项回车断开](https://github.com/siyuan-note/siyuan/issues/3804) +* [数据快照](https://github.com/siyuan-note/siyuan/issues/5159) +* [数据快照回滚](https://github.com/siyuan-note/siyuan/issues/5160) +* [支持表格内容全部居中](https://github.com/siyuan-note/siyuan/issues/5163) +* [悬浮窗最小高度调整](https://github.com/siyuan-note/siyuan/issues/5167) +* [数据快照密钥初始化](https://github.com/siyuan-note/siyuan/issues/5173) +* [改进端到端密码设置交互](https://github.com/siyuan-note/siyuan/issues/5176) +* [列出 `在浏览器上使用` 的 IP 中默认加入 `127.0.0.1`](https://github.com/siyuan-note/siyuan/issues/5177) +* [文档标题右键菜单修改为文本复制、粘贴、删除、全选和剪切](https://github.com/siyuan-note/siyuan/issues/5188) + +### 修复缺陷 + +* [清理未引用资源时未忽略 `custom-data-assets` 属性定义的资源文件](https://github.com/siyuan-note/siyuan/issues/4122) +* [有序列表项缩放后,在末尾插入行会状态异常](https://github.com/siyuan-note/siyuan/issues/5168) +* [快捷键无法更改](https://github.com/siyuan-note/siyuan/issues/5172) +* [查找替换文档名以后动态引用锚文本未跟随改变](https://github.com/siyuan-note/siyuan/issues/5175) +* [Windows 端右上角的按钮会因为窗口压缩而消失](https://github.com/siyuan-note/siyuan/issues/5180) +* [云端收集箱 SSRF(服务端请求伪造)漏洞](https://github.com/siyuan-note/siyuan/issues/5183) + ## v2.0.19 / 2022-06-12 ### 改进功能 diff --git a/app/appx/AppxManifest.xml b/app/appx/AppxManifest.xml index c1aa0154e..f5a2e6027 100644 --- a/app/appx/AppxManifest.xml +++ b/app/appx/AppxManifest.xml @@ -9,7 +9,7 @@ + Version="2.0.20.0"/> SiYuan 云南链滴科技有限公司 diff --git a/app/package.json b/app/package.json index 8e692fc24..89ce662f3 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "SiYuan", - "version": "2.0.19", + "version": "2.0.20", "description": "A local-first personal knowledge management system, supports fine-grained block-level reference, and Markdown WYSIWYG.", "homepage": "https://b3log.org/siyuan", "main": "./electron/main.js", diff --git a/kernel/util/working.go b/kernel/util/working.go index 882165b07..5f162adda 100644 --- a/kernel/util/working.go +++ b/kernel/util/working.go @@ -39,7 +39,7 @@ import ( var Mode = "prod" const ( - Ver = "2.0.19" + Ver = "2.0.20" IsInsider = false )