🔖 v2.1.5
This commit is contained in:
parent
478ba156cd
commit
b2e34c8872
5 changed files with 32 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.1.4 .
|
||||
docker buildx build --push --platform linux/amd64,linux/arm64,linux/arm/v7 -t b3log/siyuan:latest -t b3log/siyuan:v2.1.5 .
|
28
CHANGELOG.md
28
CHANGELOG.md
|
@ -1,3 +1,31 @@
|
|||
## v2.1.5 / 2022-08-02
|
||||
|
||||
### 改进功能
|
||||
|
||||
* [同一个块中引用多个相同块时反链去重](https://github.com/siyuan-note/siyuan/issues/3317)
|
||||
* [剪藏扩展无法剪藏简书的代码块](https://github.com/siyuan-note/siyuan/issues/4361)
|
||||
* [右键单击块引用元素时锚文本闪烁](https://github.com/siyuan-note/siyuan/issues/5499)
|
||||
* [划选复制内容范围改进](https://github.com/siyuan-note/siyuan/issues/5540)
|
||||
* [行内公式快捷键在公式打开界面误触以后会自动最小化程序](https://github.com/siyuan-note/siyuan/issues/5541)
|
||||
* [为 `网络图片转换为本地图片` 提供可设置的快捷键](https://github.com/siyuan-note/siyuan/issues/5542)
|
||||
* [剪藏和粘贴网页内容加粗语法兼容处理](https://github.com/siyuan-note/siyuan/issues/5543)
|
||||
* [移动端支持标签和书签面板](https://github.com/siyuan-note/siyuan/issues/5545)
|
||||
* [ 局中、左和右的快捷键不支持多块且块和图片没有进行区分](https://github.com/siyuan-note/siyuan/issues/5554)
|
||||
* [`[[`和快捷键插入的引用需进行区分](https://github.com/siyuan-note/siyuan/issues/5557)
|
||||
|
||||
### 开发重构
|
||||
|
||||
* [升级 Electron](https://github.com/siyuan-note/siyuan/issues/5546)
|
||||
|
||||
### 修复缺陷
|
||||
|
||||
* [嵌入块更新时渲染效果不一致](https://github.com/siyuan-note/siyuan/issues/5524)
|
||||
* [图片后 Backspace 无法删除问题](https://github.com/siyuan-note/siyuan/issues/5547)
|
||||
* [图片居中会多一个软换行](https://github.com/siyuan-note/siyuan/issues/5550)
|
||||
* [Markdown 围栏代码块输入问题](https://github.com/siyuan-note/siyuan/issues/5552)
|
||||
* [图片调整大小后光标在图片后面显示异常 ](https://github.com/siyuan-note/siyuan/issues/5553)
|
||||
* [查询嵌入块多层嵌套导出不完整](https://github.com/siyuan-note/siyuan/issues/5558)
|
||||
|
||||
## v2.1.4 / 2022-07-30
|
||||
|
||||
### 改进功能
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<Identity Name="89C2A984.SiYuan"
|
||||
ProcessorArchitecture="x64"
|
||||
Publisher='CN=087C656E-C1D9-42D8-8807-CED45A74FC0F'
|
||||
Version="2.1.4.0"/>
|
||||
Version="2.1.5.0"/>
|
||||
<Properties>
|
||||
<DisplayName>SiYuan</DisplayName>
|
||||
<PublisherDisplayName>云南链滴科技有限公司</PublisherDisplayName>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "SiYuan",
|
||||
"version": "2.1.4",
|
||||
"version": "2.1.5",
|
||||
"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.1.4"
|
||||
Ver = "2.1.5"
|
||||
IsInsider = false
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue