🔖 Release v2.6.0
This commit is contained in:
parent
33e9fd0ba9
commit
277da4da31
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,linux/arm/v8 -t b3log/siyuan:latest -t b3log/siyuan:v2.5.5 .
|
||||
docker buildx build --push --platform linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v8 -t b3log/siyuan:latest -t b3log/siyuan:v2.6.0 .
|
33
CHANGELOG.md
33
CHANGELOG.md
|
@ -1,3 +1,36 @@
|
|||
## v2.6.0 / 2022-12-27
|
||||
|
||||
### 引入特性
|
||||
|
||||
* [支持间隔复习](https://github.com/siyuan-note/siyuan/issues/6710)
|
||||
|
||||
### 改进功能
|
||||
|
||||
* [改进块引计数浮窗显示逻辑](https://github.com/siyuan-note/siyuan/issues/6853)
|
||||
* [新建表格时移除表头 col1 col2 col3](https://github.com/siyuan-note/siyuan/issues/6864)
|
||||
* [PDF 页签移动后阅读位置保留](https://github.com/siyuan-note/siyuan/issues/6890)
|
||||
* [改进数据同步算法](https://github.com/siyuan-note/siyuan/issues/6898)
|
||||
* [数据快照对比加入时间标识](https://github.com/siyuan-note/siyuan/issues/6899)
|
||||
* [为搜索添加 `移除命名查询` 功能](https://github.com/siyuan-note/siyuan/issues/6901)
|
||||
* [按文档分组搜索结果时文档 title 属性丢失](https://github.com/siyuan-note/siyuan/pull/6904)
|
||||
* [导出 Markdown 文件日期元数据字段变更](https://github.com/siyuan-note/siyuan/issues/6905)
|
||||
* [编辑器过窄时引用数被滚动条遮挡](https://github.com/siyuan-note/siyuan/issues/6914)
|
||||
* [官方数据同步使用加速域名](https://github.com/siyuan-note/siyuan/issues/6915)
|
||||
* [ECharts 图表块支持 loose-json](https://github.com/siyuan-note/siyuan/pull/6917)
|
||||
* [命名查询不再持久化布局](https://github.com/siyuan-note/siyuan/issues/6919)
|
||||
* [iOS 端题头图删除按钮不易被点中](https://github.com/siyuan-note/siyuan/issues/6926)
|
||||
|
||||
### 修复缺陷
|
||||
|
||||
* [不存在 `云端标记的快照` 时界面一直转圈](https://github.com/siyuan-note/siyuan/issues/6896)
|
||||
* [搜索界面报错](https://github.com/siyuan-note/siyuan/issues/6902)
|
||||
* [数据同步报错 `file exists`](https://github.com/siyuan-note/siyuan/issues/6906)
|
||||
* [导入 Markdown 时转换 Base64 图片失效](https://github.com/siyuan-note/siyuan/issues/6909)
|
||||
* [搜索内容编辑后面包屑不可见](https://github.com/siyuan-note/siyuan/issues/6916)
|
||||
* [Windows 端设置开机启动失效](https://github.com/siyuan-note/siyuan/issues/6920)
|
||||
* [设置块引静态锚文本转义问题](https://github.com/siyuan-note/siyuan/issues/6924)
|
||||
* [文档导出为图片时图片地址不正确](https://github.com/siyuan-note/siyuan/issues/6925)
|
||||
|
||||
## v2.5.5 / 2022-12-20
|
||||
|
||||
### 改进功能
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<Identity Name="89C2A984.SiYuan"
|
||||
ProcessorArchitecture="x64"
|
||||
Publisher='CN=087C656E-C1D9-42D8-8807-CED45A74FC0F'
|
||||
Version="2.5.5.0"/>
|
||||
Version="2.6.0.0"/>
|
||||
<Properties>
|
||||
<DisplayName>SiYuan</DisplayName>
|
||||
<PublisherDisplayName>云南链滴科技有限公司</PublisherDisplayName>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "SiYuan",
|
||||
"version": "2.5.5",
|
||||
"version": "2.6.0",
|
||||
"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.5.5"
|
||||
Ver = "2.6.0"
|
||||
IsInsider = false
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue