🔖 Release v2.0.20
This commit is contained in:
parent
6ce97dd408
commit
e7ee05ad36
5 changed files with 27 additions and 4 deletions
2
.github/workflows/dockerimage.yml
vendored
2
.github/workflows/dockerimage.yml
vendored
|
@ -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
|
||||
|
|
23
CHANGELOG.md
23
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
|
||||
|
||||
### 改进功能
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<Identity Name="89C2A984.SiYuan"
|
||||
ProcessorArchitecture="x64"
|
||||
Publisher='CN=087C656E-C1D9-42D8-8807-CED45A74FC0F'
|
||||
Version="2.0.19.0"/>
|
||||
Version="2.0.20.0"/>
|
||||
<Properties>
|
||||
<DisplayName>SiYuan</DisplayName>
|
||||
<PublisherDisplayName>云南链滴科技有限公司</PublisherDisplayName>
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -39,7 +39,7 @@ import (
|
|||
var Mode = "prod"
|
||||
|
||||
const (
|
||||
Ver = "2.0.19"
|
||||
Ver = "2.0.20"
|
||||
IsInsider = false
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue