Bläddra i källkod

Merge remote-tracking branch 'origin/dev' into dev

Vanessa 2 år sedan
förälder
incheckning
15acd56db0
5 ändrade filer med 37 tillägg och 4 borttagningar
  1. 1 1
      .github/workflows/dockerimage.yml
  2. 33 0
      CHANGELOG.md
  3. 1 1
      app/appx/AppxManifest.xml
  4. 1 1
      app/package.json
  5. 1 1
      kernel/util/working.go

+ 1 - 1
.github/workflows/dockerimage.yml

@@ -33,4 +33,4 @@ jobs:
 
 
       - name: Build the Docker image
       - name: Build the Docker image
         run: |
         run: |
-          docker buildx build --push --platform linux/amd64,linux/arm64,linux/arm/v7 -t b3log/siyuan:latest -t b3log/siyuan:v2.1.6 .
+          docker buildx build --push --platform linux/amd64,linux/arm64,linux/arm/v7 -t b3log/siyuan:latest -t b3log/siyuan:v2.1.7 .

+ 33 - 0
CHANGELOG.md

@@ -1,3 +1,36 @@
+## v2.1.7 / 2022-08-15
+
+### 改进功能
+
+* [移动端和 Web 端支持导入 `*.sy.zip`](https://github.com/siyuan-note/siyuan/issues/5601)
+* [添加复制块 ID 快捷键](https://github.com/siyuan-note/siyuan/issues/5605)
+* [字体设置不应该影响非编辑器内容](https://github.com/siyuan-note/siyuan/issues/5610)
+* [改进无法读写块树文件后的处理](https://github.com/siyuan-note/siyuan/issues/5619)
+* [改进 Windows 端默认工作空间路径](https://github.com/siyuan-note/siyuan/issues/5622)
+* [提升块标在边界范围的高度](https://github.com/siyuan-note/siyuan/issues/5623)
+* [关系图搜索框存在内容时不收缩隐藏](https://github.com/siyuan-note/siyuan/issues/5628)
+* [向上滚动文档时题头图不应该闪现](https://github.com/siyuan-note/siyuan/issues/5630)
+* [移动端插入 iframe 输入框位置错误](https://github.com/siyuan-note/siyuan/issues/5638)
+
+### 开发重构
+
+* [升级 Electron](https://github.com/siyuan-note/siyuan/issues/5621)
+
+### 修复缺陷
+
+* [列表中无法使用 `[]` 插入子待办列表](https://github.com/siyuan-note/siyuan/issues/5548)
+* [代码块设置换行后渲染异常](https://github.com/siyuan-note/siyuan/issues/5612)
+* [导出 PDF、HTML 和 Word 时未移除不支持的文件名符号](https://github.com/siyuan-note/siyuan/issues/5614)
+* [关闭所有文档后无法退出程序](https://github.com/siyuan-note/siyuan/issues/5615)
+* [启动时关闭所有页签失效](https://github.com/siyuan-note/siyuan/issues/5616)
+* [恢复文档浏览位置时最后一个块没有显示](https://github.com/siyuan-note/siyuan/issues/5618)
+* [图片居中后打开会多一行](https://github.com/siyuan-note/siyuan/issues/5626)
+* [表情无法滚动](https://github.com/siyuan-note/siyuan/issues/5627)
+* [使用查询语法搜索时编辑区高亮不正确](https://github.com/siyuan-note/siyuan/issues/5632)
+* [表格中的块引锚文本中包含 `|` 时导致表格解析不正确](https://github.com/siyuan-note/siyuan/issues/5633)
+* [Windows 端 Ctrl+K 添加超链接后撤销触发状态异常](https://github.com/siyuan-note/siyuan/issues/5637)
+* [恢复文档浏览位置时折叠标题下方块被计入](https://github.com/siyuan-note/siyuan/issues/5639)
+
 ## v2.1.6 / 2022-08-11
 ## v2.1.6 / 2022-08-11
 
 
 ### 改进功能
 ### 改进功能

+ 1 - 1
app/appx/AppxManifest.xml

@@ -9,7 +9,7 @@
     <Identity Name="89C2A984.SiYuan"
     <Identity Name="89C2A984.SiYuan"
               ProcessorArchitecture="x64"
               ProcessorArchitecture="x64"
               Publisher='CN=087C656E-C1D9-42D8-8807-CED45A74FC0F'
               Publisher='CN=087C656E-C1D9-42D8-8807-CED45A74FC0F'
-              Version="2.1.6.0"/>
+              Version="2.1.7.0"/>
     <Properties>
     <Properties>
         <DisplayName>SiYuan</DisplayName>
         <DisplayName>SiYuan</DisplayName>
         <PublisherDisplayName>云南链滴科技有限公司</PublisherDisplayName>
         <PublisherDisplayName>云南链滴科技有限公司</PublisherDisplayName>

+ 1 - 1
app/package.json

@@ -1,6 +1,6 @@
 {
 {
   "name": "SiYuan",
   "name": "SiYuan",
-  "version": "2.1.6",
+  "version": "2.1.7",
   "description": "Build Your Eternal Digital Garden",
   "description": "Build Your Eternal Digital Garden",
   "homepage": "https://b3log.org/siyuan",
   "homepage": "https://b3log.org/siyuan",
   "main": "./electron/main.js",
   "main": "./electron/main.js",

+ 1 - 1
kernel/util/working.go

@@ -41,7 +41,7 @@ import (
 var Mode = "prod"
 var Mode = "prod"
 
 
 const (
 const (
-	Ver       = "2.1.6"
+	Ver       = "2.1.7"
 	IsInsider = false
 	IsInsider = false
 )
 )