diff --git a/.github/workflows/dockerimage.yml b/.github/workflows/dockerimage.yml index d9628cdf2..d95aee7c2 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.3 . \ 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.4 . \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index be3c235e8..16d65ae1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +## v2.4.4 / 2022-10-21 + +### 改进功能 + +* [`Alt+5` 打开已有日记时不在内核伺服客户端之间同步](https://github.com/siyuan-note/siyuan/issues/5617) +* [浏览器剪藏扩展改进为由下往上滚动](https://github.com/siyuan-note/siyuan/issues/6276) +* [标题后直接跟图片时图片的提示文本不再渲染到大纲中](https://github.com/siyuan-note/siyuan/issues/6278) +* [切换到全屏后支持拖拽窗口](https://github.com/siyuan-note/siyuan/issues/6279) +* [拆分或合并单元格后光标消失](https://github.com/siyuan-note/siyuan/issues/6286) +* [停靠栏图标大小调整](https://github.com/siyuan-note/siyuan/issues/6293) + +### 修复缺陷 + +* [由未使用 `theme.js` 的主题切换至使用 `theme.js` 的主题时文档 emojis 图标不显示](https://github.com/siyuan-note/siyuan/issues/6281) +* [关系图全屏切换后图标位置不对](https://github.com/siyuan-note/siyuan/issues/6282) +* [聚焦列表项回车后输入 `[]` 后异常](https://github.com/siyuan-note/siyuan/issues/6283) +* [合并单元格后 `Ctrl+A` 再 `Ctrl+B` 内容消失](https://github.com/siyuan-note/siyuan/issues/6284) +* [Windows 端主窗口关闭按钮悬浮背景色没有变红](https://github.com/siyuan-note/siyuan/issues/6285) +* [浏览器剪藏扩展列表下方段落缩进成为子块](https://github.com/siyuan-note/siyuan/issues/6289) +* [云端同步后如果 Emojie 文件夹为空不应该删除](https://github.com/siyuan-note/siyuan/issues/6292) + ## v2.4.3 / 2022-10-20 ### 改进功能 diff --git a/app/appx/AppxManifest.xml b/app/appx/AppxManifest.xml index 78839306a..15ee6c3aa 100644 --- a/app/appx/AppxManifest.xml +++ b/app/appx/AppxManifest.xml @@ -9,7 +9,7 @@ + Version="2.4.4.0"/> SiYuan 云南链滴科技有限公司 diff --git a/app/package.json b/app/package.json index b40493c73..59e3fb901 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "SiYuan", - "version": "2.4.3", + "version": "2.4.4", "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 c28f6d527..6887973c5 100644 --- a/kernel/util/working.go +++ b/kernel/util/working.go @@ -41,7 +41,7 @@ import ( var Mode = "prod" const ( - Ver = "2.4.3" + Ver = "2.4.4" IsInsider = false )