diff --git a/.github/workflows/dockerimage.yml b/.github/workflows/dockerimage.yml index d46b52152..2b80ba405 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.8 . \ 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.9 . \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index ddb8183c5..85a33fb2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +## v2.1.9 / 2022-08-24 + +### 改进功能 + +* [桌面端拖入文件时可选择 `使用 file:// 绝对路径并链接` 或 `复制为资源文件并插入`](https://github.com/siyuan-note/siyuan/issues/5369) +* [桌面端支持导出图片、音频和视频](https://github.com/siyuan-note/siyuan/issues/5693) +* [`清理未引用资源` 生成历史文件夹后缀改为 `-clean`](https://github.com/siyuan-note/siyuan/issues/5706) +* [同步向导加入账号登录引导](https://github.com/siyuan-note/siyuan/issues/5712) + +### 修复缺陷 + +* [启动后会生成一次全量数据历史文件](https://github.com/siyuan-note/siyuan/issues/5689) +* [导出预览模式点击块引转换后的脚注跳转不正确](https://github.com/siyuan-note/siyuan/issues/5700) +* [复制列表块纯文本内容不完整](https://github.com/siyuan-note/siyuan/issues/5701) +* [移动端复制纯文本内容不完整](https://github.com/siyuan-note/siyuan/issues/5702) +* [移动端后退到动态页面下拉无法加载](https://github.com/siyuan-note/siyuan/issues/5703) +* [macOS 端中带 alt 的组合数字键失效](https://github.com/siyuan-note/siyuan/issues/5704) +* [设置为预览模式后重启打开页签一直转圈](https://github.com/siyuan-note/siyuan/issues/5711) +* [编辑器窗口没有激活时 Ctrl+W 会关闭当前窗口中的所有页签](https://github.com/siyuan-note/siyuan/issues/5714) + ## v2.1.8 / 2022-08-22 ### 改进功能 diff --git a/app/appx/AppxManifest.xml b/app/appx/AppxManifest.xml index 1d198d308..fdc89639a 100644 --- a/app/appx/AppxManifest.xml +++ b/app/appx/AppxManifest.xml @@ -9,7 +9,7 @@ + Version="2.1.9.0"/> SiYuan 云南链滴科技有限公司 diff --git a/app/package.json b/app/package.json index 5cea01421..91ee93570 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "SiYuan", - "version": "2.1.8", + "version": "2.1.9", "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 3e0546ee6..267fb1d70 100644 --- a/kernel/util/working.go +++ b/kernel/util/working.go @@ -40,7 +40,7 @@ import ( var Mode = "prod" const ( - Ver = "2.1.8" + Ver = "2.1.9" IsInsider = false )