From 0514041a5c470a524c6ab7882ae49e32bae9444a Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Wed, 31 Aug 2022 22:44:26 +0800 Subject: [PATCH] :bookmark: Release v2.1.11 --- .github/workflows/dockerimage.yml | 2 +- CHANGELOG.md | 34 +++++++++++++++++++++++++++++++ app/appx/AppxManifest.xml | 2 +- app/package.json | 2 +- kernel/util/working.go | 2 +- 5 files changed, 38 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dockerimage.yml b/.github/workflows/dockerimage.yml index 0d6719931..9b411558b 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.10 . \ 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.11 . \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index d412286a5..b15e90a13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,37 @@ +## v2.1.11 / 2022-08-31 + +### 改进功能 + +* [数据历史文档和资源文件支持分页和搜索](https://github.com/siyuan-note/siyuan/issues/4901) +* [数据历史文档支持只读可视化预览](https://github.com/siyuan-note/siyuan/issues/5735) +* [通过环境变量 `RUN_IN_CONTAINER` 判断是否在容器内启动](https://github.com/siyuan-note/siyuan/issues/5744) +* [支持未激活的文档页签进行复制和分屏操作](https://github.com/siyuan-note/siyuan/issues/5745) +* [为复制纯文本添加可配置的快捷键](https://github.com/siyuan-note/siyuan/issues/5748) +* [Ctrl+Alt+0/⌥⌘0 将标题转换为文本](https://github.com/siyuan-note/siyuan/issues/5749) +* [查找替换支持替换超链接地址](https://github.com/siyuan-note/siyuan/issues/5750) +* [数据历史文档中支持操作类型过滤](https://github.com/siyuan-note/siyuan/issues/5754) +* [改进同步后全量重建索引判断](https://github.com/siyuan-note/siyuan/issues/5764) +* [移除图片、音频、视频和 iframe 菜单中打开的点击提示](https://github.com/siyuan-note/siyuan/issues/5774) + +### 修复缺陷 + +* [链接中存在 HTML 标签渲染效果不一致](https://github.com/siyuan-note/siyuan/issues/5708) +* [同步生成冲突文档报错](https://github.com/siyuan-note/siyuan/issues/5739) +* [重复打开同样的页签](https://github.com/siyuan-note/siyuan/issues/5740) +* [任务列表交互后无法通过任务框拖动](https://github.com/siyuan-note/siyuan/issues/5741) +* [父文档名带有结尾空格导致子文档无法导出](https://github.com/siyuan-note/siyuan/issues/5742) +* [在页签右侧或下侧打开功能失效](https://github.com/siyuan-note/siyuan/issues/5743) +* [文档只有一个标题块时全选其行级内容后剪切刷新触发状态异常](https://github.com/siyuan-note/siyuan/issues/5746) +* [模板渲染错误](https://github.com/siyuan-note/siyuan/issues/5747) +* [macOS 端复制粘贴时未保留原格式](https://github.com/siyuan-note/siyuan/issues/5751) +* [居左快捷键 Alt+L 处理挂件时是居中不是居左](https://github.com/siyuan-note/siyuan/issues/5753) +* [HTML 块执行脚本导致白屏](https://github.com/siyuan-note/siyuan/issues/5762) +* [禁止拖拽内容到文档标题框中](https://github.com/siyuan-note/siyuan/issues/5766) +* [聚焦模式下拖拽列表项/标题到文档树后原文档错误](https://github.com/siyuan-note/siyuan/issues/5767) +* [更新或删除文档后立即点击重建索引导致死锁](https://github.com/siyuan-note/siyuan/issues/5768) +* [列表项中粘贴纯文本解析异常](https://github.com/siyuan-note/siyuan/issues/5770) +* [移动端后退导致嵌入块错误](https://github.com/siyuan-note/siyuan/issues/5771) + ## v2.1.10 / 2022-08-28 ### 改进功能 diff --git a/app/appx/AppxManifest.xml b/app/appx/AppxManifest.xml index f990985ba..8faa14354 100644 --- a/app/appx/AppxManifest.xml +++ b/app/appx/AppxManifest.xml @@ -9,7 +9,7 @@ + Version="2.1.11.0"/> SiYuan 云南链滴科技有限公司 diff --git a/app/package.json b/app/package.json index 29896a90e..bb8afb650 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "SiYuan", - "version": "2.1.10", + "version": "2.1.11", "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 825dc1a05..5710bf917 100644 --- a/kernel/util/working.go +++ b/kernel/util/working.go @@ -40,7 +40,7 @@ import ( var Mode = "prod" const ( - Ver = "2.1.10" + Ver = "2.1.11" IsInsider = false )