From 0268a942435997f081ec77868bb71f035e1e00ac Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Fri, 10 Mar 2023 10:44:20 +0800 Subject: [PATCH] =?UTF-8?q?:bookmark:=20=E5=8F=91=E5=B8=83=20v2.7.9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dockerimage.yml | 2 +- CHANGELOG.md | 25 +++++++++++++++++++++++++ app/appx/AppxManifest.xml | 2 +- app/package.json | 2 +- kernel/util/working.go | 2 +- 5 files changed, 29 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dockerimage.yml b/.github/workflows/dockerimage.yml index efa363a86..dddb81721 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,linux/arm/v8 -t b3log/siyuan:latest -t b3log/siyuan:v2.7.8 . \ No newline at end of file + docker buildx build --push --platform linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v8 -t b3log/siyuan:latest -t b3log/siyuan:v2.7.9 . \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index c78db1ce9..62430c4a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,28 @@ +## v2.7.9 / 2023-03-10 + +### 改进功能 + +* [加入针对内容块的人工智能辅助支持](https://github.com/siyuan-note/siyuan/issues/7566) +* [鼠标划选没有选中块时不应划选所有块](https://github.com/siyuan-note/siyuan/issues/7580) +* [Android 端长按弹出内容操作菜单后底栏需滑动](https://github.com/siyuan-note/siyuan/issues/7591) +* [移动端底部工具栏移除删除按钮](https://github.com/siyuan-note/siyuan/issues/7595) +* [改进任务列表项完成后的样式](https://github.com/siyuan-note/siyuan/pull/7599) +* [Android 端块菜单返回支持左右滑动](https://github.com/siyuan-note/siyuan/issues/7600) +* [OpenAI API 接入增加环境变量 `SIYUAN_OPENAI_API_BASE_URL`](https://github.com/siyuan-note/siyuan/issues/7604) +* [批量插入文件时每个文件占一个块](https://github.com/siyuan-note/siyuan/issues/7607) +* [鼠标移动到页签上时 `&` 不显示为 `&`](https://github.com/siyuan-note/siyuan/issues/7609) +* [移动端复习过闪卡后顶部需出现同步按钮](https://github.com/siyuan-note/siyuan/issues/7610) +* [引用搜索命名空格未显示](https://github.com/siyuan-note/siyuan/issues/7613) +* [改进内核只读模式](https://github.com/siyuan-note/siyuan/issues/7615) + +### 修复缺陷 + +* [斜杆菜单缺失 `AI Chat`](https://github.com/siyuan-note/siyuan/issues/7592) +* [Android 端某些系统上界面显示不全](https://github.com/siyuan-note/siyuan/issues/7593) +* [移动端块引用、嵌入无法使用](https://github.com/siyuan-note/siyuan/issues/7594) +* [图片无法设定宽度百分比](https://github.com/siyuan-note/siyuan/issues/7606) +* [浏览器剪藏扩展丢失部分元素](https://github.com/siyuan-note/siyuan/issues/7608) + ## v2.7.8 / 2023-03-07 ### 改进功能 diff --git a/app/appx/AppxManifest.xml b/app/appx/AppxManifest.xml index c34ef173d..cf266da50 100644 --- a/app/appx/AppxManifest.xml +++ b/app/appx/AppxManifest.xml @@ -9,7 +9,7 @@ + Version="2.7.9.0"/> SiYuan 云南链滴科技有限公司 diff --git a/app/package.json b/app/package.json index e57919eb2..9508b914b 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "SiYuan", - "version": "2.7.8", + "version": "2.7.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 b46323410..9c0217b4f 100644 --- a/kernel/util/working.go +++ b/kernel/util/working.go @@ -43,7 +43,7 @@ import ( var Mode = "prod" const ( - Ver = "2.7.8" + Ver = "2.7.9" IsInsider = false )