From 34b49fe7ded987cac3bab8a7c588eac9f18778fa Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Thu, 10 Nov 2022 13:48:22 +0800 Subject: [PATCH] :bookmark: Release v2.4.12 --- .github/workflows/dockerimage.yml | 2 +- CHANGELOG.md | 25 +++++++++++++++++++++++++ app/appx/AppxManifest.xml | 2 +- app/package.json | 2 +- kernel/util/working.go | 2 +- 5 files changed, 29 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dockerimage.yml b/.github/workflows/dockerimage.yml index 421ef75cc..848721875 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.4.11 . \ 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.4.12 . \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 947a05d08..3e616733d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,28 @@ +## v2.4.12 / 2022-11-10 + +### 改进功能 + +* [光标位于段落块首的图片前时无法显示](https://github.com/siyuan-note/siyuan/issues/6136) +* [为块重复添加快捷键 `Ctrl+D` 删除线快捷键修改为 `Ctrl+Shift+S`](https://github.com/siyuan-note/siyuan/issues/6477) +* [快捷键新建行内元素后光标消失](https://github.com/siyuan-note/siyuan/issues/6481) +* [行级清除样式不再清除备注、链接、标签、公式、PDF 标注和引用](https://github.com/siyuan-note/siyuan/issues/6501) +* [为字体添加恢复默认功能](https://github.com/siyuan-note/siyuan/issues/6502) +* [改进 WebDAV 数据同步创建目录实现](https://github.com/siyuan-note/siyuan/issues/6525) +* [数据同步接入 S3 协议兼容的对象存储服务](https://github.com/siyuan-note/siyuan/issues/6528) +* [行级代码、标签和键盘元素在块首时光标无法移动到元素前](https://github.com/siyuan-note/siyuan/issues/6529) +* [调整数据同步接入第三方存储服务](https://github.com/siyuan-note/siyuan/issues/6530) +* [文档树多选后右键菜单仅显示可操作的项](https://github.com/siyuan-note/siyuan/issues/6531) +* [支持跨块及多选块重复](https://github.com/siyuan-note/siyuan/issues/6532) +* [`Ctrl+Click` 选块应禁止嵌套选中](https://github.com/siyuan-note/siyuan/issues/6533) +* [改进 WebDAV 上传数据性能](https://github.com/siyuan-note/siyuan/issues/6535) + +### 修复缺陷 + +* [文档树上的文档无法拖动](https://github.com/siyuan-note/siyuan/issues/6497) +* [设置在当前页签中打开失效](https://github.com/siyuan-note/siyuan/issues/6524) +* [浏览器端数学公式内撤销导致状态异常](https://github.com/siyuan-note/siyuan/issues/6526) +* [选中段落块和列表项块后粘贴会出现独立的列表项块](https://github.com/siyuan-note/siyuan/issues/6534) + ## v2.4.11 / 2022-11-08 ### 改进功能 diff --git a/app/appx/AppxManifest.xml b/app/appx/AppxManifest.xml index e5dab6ec9..d5af60bf7 100644 --- a/app/appx/AppxManifest.xml +++ b/app/appx/AppxManifest.xml @@ -9,7 +9,7 @@ + Version="2.4.12.0"/> SiYuan 云南链滴科技有限公司 diff --git a/app/package.json b/app/package.json index 141173d46..0733132b0 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "SiYuan", - "version": "2.4.11", + "version": "2.4.12", "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 9a887e437..bb2a46b26 100644 --- a/kernel/util/working.go +++ b/kernel/util/working.go @@ -40,7 +40,7 @@ import ( var Mode = "prod" const ( - Ver = "2.4.11" + Ver = "2.4.12" IsInsider = false )