mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-17 07:00:12 +01:00
🔖 Release v2.2.2
This commit is contained in:
parent
02a4d4c78c
commit
3c7b427fab
5 changed files with 37 additions and 4 deletions
2
.github/workflows/dockerimage.yml
vendored
2
.github/workflows/dockerimage.yml
vendored
|
|
@ -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.2.1 .
|
||||
docker buildx build --push --platform linux/amd64,linux/arm64,linux/arm/v7 -t b3log/siyuan:latest -t b3log/siyuan:v2.2.2 .
|
||||
33
CHANGELOG.md
33
CHANGELOG.md
|
|
@ -1,3 +1,36 @@
|
|||
## v2.2.2 / 2022-09-27
|
||||
|
||||
### 改进功能
|
||||
|
||||
* [外观模式支持跟随系统切换](https://github.com/siyuan-note/siyuan/issues/5854)
|
||||
* [退出时自动删除超过 30 天的安装包](https://github.com/siyuan-note/siyuan/issues/5957)
|
||||
* [行级备注自动移除换行](https://github.com/siyuan-note/siyuan/issues/5975)
|
||||
* [超链接地址更好地兼容本地路径](https://github.com/siyuan-note/siyuan/issues/5980)
|
||||
* [支持插入 `.ch` 域名超链接](https://github.com/siyuan-note/siyuan/issues/5981)
|
||||
* [改进选中块删除后光标位置](https://github.com/siyuan-note/siyuan/issues/5982)
|
||||
|
||||
### 修复缺陷
|
||||
|
||||
* [偶发编辑文档标题后引用处的动态锚文本不更新](https://github.com/siyuan-note/siyuan/issues/5891)
|
||||
* [虚拟引用无法通过快捷键转换为引用](https://github.com/siyuan-note/siyuan/issues/5953)
|
||||
* [字号回填错误](https://github.com/siyuan-note/siyuan/issues/5956)
|
||||
* [Windows 下 `Ctrl+Shift+9` 按键不识别](https://github.com/siyuan-note/siyuan/issues/5958)
|
||||
* [设置访问授权码后无法导出 PDF](https://github.com/siyuan-note/siyuan/issues/5959)
|
||||
* [块引锚文本输入框转换动/静态锚文本异常](https://github.com/siyuan-note/siyuan/issues/5961)
|
||||
* [`\\` 开头的 Windows 网络共享路径超链接问题](https://github.com/siyuan-note/siyuan/issues/5962)
|
||||
* [Markdown 超链接锚文本转义解析问题](https://github.com/siyuan-note/siyuan/issues/5963)
|
||||
* [在行级元素中添加公式、备注和链接导致类型丢失](https://github.com/siyuan-note/siyuan/issues/5964)
|
||||
* [表格内多个连续的超链接无法换行显示](https://github.com/siyuan-note/siyuan/issues/5966)
|
||||
* [集市已下载栏打开图标文件位置路径错误](https://github.com/siyuan-note/siyuan/issues/5967)
|
||||
* [行级代码不按照编辑器连字设置渲染](https://github.com/siyuan-note/siyuan/issues/5968)
|
||||
* [表格内无法将 `$` 字符在行内代码内正常使用](https://github.com/siyuan-note/siyuan/issues/5969)
|
||||
* [无法插入资源文件的问题](https://github.com/siyuan-note/siyuan/issues/5971)
|
||||
* [浮窗中图表编辑层拖动错误](https://github.com/siyuan-note/siyuan/issues/5972)
|
||||
* [全局搜索后使用 `Alt+[` 引用异常](https://github.com/siyuan-note/siyuan/issues/5973)
|
||||
* [超链接元素标题中存在 `"` 字符时粘贴无法正常解析](https://github.com/siyuan-note/siyuan/issues/5974)
|
||||
* [PDF 标注引用在数据库所有表中对应的 `markdown` 字段均没有标识符](https://github.com/siyuan-note/siyuan/issues/5977)
|
||||
* [动态锚文本后删除文本变静态锚文本](https://github.com/siyuan-note/siyuan/issues/5978)
|
||||
|
||||
## v2.2.1 / 2022-09-25
|
||||
|
||||
### 改进功能
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
<Identity Name="89C2A984.SiYuan"
|
||||
ProcessorArchitecture="x64"
|
||||
Publisher='CN=087C656E-C1D9-42D8-8807-CED45A74FC0F'
|
||||
Version="2.2.1.0"/>
|
||||
Version="2.2.2.0"/>
|
||||
<Properties>
|
||||
<DisplayName>SiYuan</DisplayName>
|
||||
<PublisherDisplayName>云南链滴科技有限公司</PublisherDisplayName>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "SiYuan",
|
||||
"version": "2.2.1",
|
||||
"version": "2.2.2",
|
||||
"description": "Build Your Eternal Digital Garden",
|
||||
"homepage": "https://b3log.org/siyuan",
|
||||
"main": "./electron/main.js",
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ import (
|
|||
var Mode = "prod"
|
||||
|
||||
const (
|
||||
Ver = "2.2.1"
|
||||
Ver = "2.2.2"
|
||||
IsInsider = false
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue