From bdd99d8eb03bbe41ba894e84c628a8454f458393 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Tue, 17 Dec 2024 10:07:07 +0800 Subject: [PATCH 1/2] :arrow_up: Improve data synchronization stability https://github.com/siyuan-note/siyuan/issues/13503 --- kernel/go.mod | 2 +- kernel/go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/go.mod b/kernel/go.mod index 0ca3a37db..ac493967b 100644 --- a/kernel/go.mod +++ b/kernel/go.mod @@ -57,7 +57,7 @@ require ( github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06 github.com/sashabaranov/go-openai v1.29.1 github.com/shirou/gopsutil/v3 v3.24.5 - github.com/siyuan-note/dejavu v0.0.0-20241212013736-f1a4428c07cc + github.com/siyuan-note/dejavu v0.0.0-20241217020112-965399e9b276 github.com/siyuan-note/encryption v0.0.0-20231219001248-1e028a4d13b4 github.com/siyuan-note/eventbus v0.0.0-20240627125516-396fdb0f0f97 github.com/siyuan-note/filelock v0.0.0-20241212013445-c66518cdacfa diff --git a/kernel/go.sum b/kernel/go.sum index 386311fda..1eba2a013 100644 --- a/kernel/go.sum +++ b/kernel/go.sum @@ -341,8 +341,8 @@ github.com/shopspring/decimal v1.4.0/go.mod h1:gawqmDU56v4yIKSwfBSFip1HdCCXN8/+D github.com/shurcooL/gofontwoff v0.0.0-20181114050219-180f79e6909d h1:lvCTyBbr36+tqMccdGMwuEU+hjux/zL6xSmf5S9ITaA= github.com/shurcooL/gofontwoff v0.0.0-20181114050219-180f79e6909d/go.mod h1:05UtEgK5zq39gLST6uB0cf3NEHjETfB4Fgr3Gx5R9Vw= github.com/simplereach/timeutils v1.2.0/go.mod h1:VVbQDfN/FHRZa1LSqcwo4kNZ62OOyqLLGQKYB3pB0Q8= -github.com/siyuan-note/dejavu v0.0.0-20241212013736-f1a4428c07cc h1:QT2xfpSFChSdvw7uzY9S46pnKtsFkWKS0OOFfyjOtmA= -github.com/siyuan-note/dejavu v0.0.0-20241212013736-f1a4428c07cc/go.mod h1:ytDHT/FQKl1SuGEsnI2YQbhirlswQiiwc0rSW3nnnFo= +github.com/siyuan-note/dejavu v0.0.0-20241217020112-965399e9b276 h1:4eKdOod31DeNCf6n8FEBqSsoigXjfaSDL3tZTltIF+Q= +github.com/siyuan-note/dejavu v0.0.0-20241217020112-965399e9b276/go.mod h1:ytDHT/FQKl1SuGEsnI2YQbhirlswQiiwc0rSW3nnnFo= github.com/siyuan-note/encryption v0.0.0-20231219001248-1e028a4d13b4 h1:kJaw5L/evyW6LcB9IQT8PR4ppx8JVqOFP9Ix3rfwSrc= github.com/siyuan-note/encryption v0.0.0-20231219001248-1e028a4d13b4/go.mod h1:UYcCCY+0wh+GmUoDOaO63j1sV5lgy7laLAk1XhEiUis= github.com/siyuan-note/eventbus v0.0.0-20240627125516-396fdb0f0f97 h1:lM5v8BfNtbOL5jYwhCdMYBcYtr06IYBKjjSLAPMKTM8= From 8a87999f25360dff5636f1968324b7c78eb82a0b Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Tue, 17 Dec 2024 10:10:22 +0800 Subject: [PATCH 2/2] :memo: Update changelogs --- app/changelogs/v3.1.16/v3.1.16.md | 2 ++ app/changelogs/v3.1.16/v3.1.16_zh_CHT.md | 2 ++ app/changelogs/v3.1.16/v3.1.16_zh_CN.md | 2 ++ 3 files changed, 6 insertions(+) diff --git a/app/changelogs/v3.1.16/v3.1.16.md b/app/changelogs/v3.1.16/v3.1.16.md index da953d1f6..11ed11a4e 100644 --- a/app/changelogs/v3.1.16/v3.1.16.md +++ b/app/changelogs/v3.1.16/v3.1.16.md @@ -13,6 +13,7 @@ Below are the detailed changes in this version. * [Improve font family and emoji ](https://github.com/siyuan-note/siyuan/pull/13241) * [Improve database select field color and layout](https://github.com/siyuan-note/siyuan/issues/13263) * [Improve cursor positioning after pasting images](https://github.com/siyuan-note/siyuan/issues/13336) +* [The database primary key field displays the icon of the bound doc](https://github.com/siyuan-note/siyuan/issues/13378) * [Supports find-replace and asset file history on the mobile](https://github.com/siyuan-note/siyuan/issues/13415) * [Improve inline elements parsing](https://github.com/siyuan-note/siyuan/issues/13420) * [Allow stickTab icon in Panels to be used in a browser environment](https://github.com/siyuan-note/siyuan/pull/13421) @@ -26,6 +27,7 @@ Below are the detailed changes in this version. * [Add Arabic support](https://github.com/siyuan-note/siyuan/pull/13475) * [Improve exporting data](https://github.com/siyuan-note/siyuan/issues/13500) * [Improve serving assets performance](https://github.com/siyuan-note/siyuan/issues/13501) +* [Improve data synchronization stability](https://github.com/siyuan-note/siyuan/issues/13503) ### Bugfix diff --git a/app/changelogs/v3.1.16/v3.1.16_zh_CHT.md b/app/changelogs/v3.1.16/v3.1.16_zh_CHT.md index d8c381763..121d3ea28 100644 --- a/app/changelogs/v3.1.16/v3.1.16_zh_CHT.md +++ b/app/changelogs/v3.1.16/v3.1.16_zh_CHT.md @@ -13,6 +13,7 @@ * [改進字體系列和表情符號](https://github.com/siyuan-note/siyuan/pull/13241) * [改進資料庫選擇欄位的顏色和佈局](https://github.com/siyuan-note/siyuan/issues/13263) * [改進貼上圖片後的遊標定位](https://github.com/siyuan-note/siyuan/issues/13336) +* [資料庫主鍵欄位顯示綁定文件區塊圖示](https://github.com/siyuan-note/siyuan/issues/13378) * [支援在行動裝置上尋找替換和資源檔案歷史](https://github.com/siyuan-note/siyuan/issues/13415) * [改進行級元素解析](https://github.com/siyuan-note/siyuan/issues/13420) * [允許在瀏覽器環境中使用面板中的 stickTab 圖示](https://github.com/siyuan-note/siyuan/pull/13421) @@ -26,6 +27,7 @@ * [新增阿拉伯語支援](https://github.com/siyuan-note/siyuan/pull/13475) * [改進匯出資料](https://github.com/siyuan-note/siyuan/issues/13500) * [改進資源檔案載入效能](https://github.com/siyuan-note/siyuan/issues/13501) +* [改善資料同步穩定性](https://github.com/siyuan-note/siyuan/issues/13503) ### 修復缺陷 diff --git a/app/changelogs/v3.1.16/v3.1.16_zh_CN.md b/app/changelogs/v3.1.16/v3.1.16_zh_CN.md index e4d06d485..86ebcaedf 100644 --- a/app/changelogs/v3.1.16/v3.1.16_zh_CN.md +++ b/app/changelogs/v3.1.16/v3.1.16_zh_CN.md @@ -13,6 +13,7 @@ * [改进字体系列和表情符号](https://github.com/siyuan-note/siyuan/pull/13241) * [改进数据库选择字段的颜色和布局](https://github.com/siyuan-note/siyuan/issues/13263) * [改进粘贴图片后的光标定位](https://github.com/siyuan-note/siyuan/issues/13336) +* [数据库主键字段显示绑定文档块图标](https://github.com/siyuan-note/siyuan/issues/13378) * [支持在移动设备上查找替换和资源文件历史](https://github.com/siyuan-note/siyuan/issues/13415) * [改进行级元素解析](https://github.com/siyuan-note/siyuan/issues/13420) * [允许在浏览器环境中使用面板中的 stickTab 图标](https://github.com/siyuan-note/siyuan/pull/13421) @@ -26,6 +27,7 @@ * [添加阿拉伯语支持](https://github.com/siyuan-note/siyuan/pull/13475) * [改进导出数据](https://github.com/siyuan-note/siyuan/issues/13500) * [改进资源文件加载性能](https://github.com/siyuan-note/siyuan/issues/13501) +* [改进数据同步稳定性](https://github.com/siyuan-note/siyuan/issues/13503) ### 修复缺陷