From 210a3ac5472245eed820a7c76aadb09d50029bb0 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Wed, 11 Oct 2023 10:04:39 +0800 Subject: [PATCH 1/5] :art: Improve handling of database column filters containing empty values Fix https://github.com/siyuan-note/siyuan/issues/9394 --- kernel/av/table.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kernel/av/table.go b/kernel/av/table.go index 536de5cd7..72ddaf67b 100644 --- a/kernel/av/table.go +++ b/kernel/av/table.go @@ -578,6 +578,10 @@ func (table *Table) FilterRows() { case FilterOperatorIsNotEmpty: pass = false } + + if KeyTypeText != row.Cells[index].ValueType { + pass = false + } break } From 65adab61c9f63ab0d692890ff977c567d1628845 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Wed, 11 Oct 2023 10:48:29 +0800 Subject: [PATCH 2/5] :art: Adding row overwriting data after enabling filter in database https://github.com/siyuan-note/siyuan/issues/9395 --- kernel/av/av.go | 11 ++++++----- kernel/av/table.go | 16 ++++++++++++++++ kernel/model/attribute_view.go | 15 +++------------ 3 files changed, 25 insertions(+), 17 deletions(-) diff --git a/kernel/av/av.go b/kernel/av/av.go index e689a8db7..9c7c708a8 100644 --- a/kernel/av/av.go +++ b/kernel/av/av.go @@ -99,11 +99,12 @@ type KeySelectOption struct { } type Value struct { - ID string `json:"id,omitempty"` - KeyID string `json:"keyID,omitempty"` - BlockID string `json:"blockID,omitempty"` - Type KeyType `json:"type,omitempty"` - IsDetached bool `json:"isDetached,omitempty"` + ID string `json:"id,omitempty"` + KeyID string `json:"keyID,omitempty"` + BlockID string `json:"blockID,omitempty"` + Type KeyType `json:"type,omitempty"` + IsDetached bool `json:"isDetached,omitempty"` + IsInitialized bool `json:"isInitialized,omitempty"` Block *ValueBlock `json:"block,omitempty"` Text *ValueText `json:"text,omitempty"` diff --git a/kernel/av/table.go b/kernel/av/table.go index 72ddaf67b..a829dec2a 100644 --- a/kernel/av/table.go +++ b/kernel/av/table.go @@ -508,6 +508,16 @@ type TableRow struct { Cells []*TableCell `json:"cells"` } +func (row *TableRow) GetBlockValue() (ret *Value) { + for _, cell := range row.Cells { + if KeyTypeBlock == cell.ValueType { + ret = cell.Value + break + } + } + return +} + func (table *Table) GetType() LayoutType { return LayoutTypeTable } @@ -569,6 +579,12 @@ func (table *Table) FilterRows() { rows := []*TableRow{} for _, row := range table.Rows { + block := row.GetBlockValue() + if !block.IsInitialized && nil != block.Block && "" == block.Block.Content && block.IsDetached { + rows = append(rows, row) + continue + } + pass := true for j, index := range colIndexes { operator := table.Filters[j].Operator diff --git a/kernel/model/attribute_view.go b/kernel/model/attribute_view.go index afe6667ce..0f14c3c22 100644 --- a/kernel/model/attribute_view.go +++ b/kernel/model/attribute_view.go @@ -430,7 +430,7 @@ func renderAttributeViewTable(attrView *av.AttributeView, view *av.View) (ret *a ial := GetBlockAttrs(row.ID) updatedStr := ial["updated"] if "" == updatedStr { - block := getTableRowBlockValue(row) + block := row.GetBlockValue() cell.Value.Updated = av.NewFormattedValueUpdated(block.Block.Updated, 0, av.UpdatedFormatNone) cell.Value.Updated.IsNotEmpty = true } else { @@ -475,16 +475,6 @@ func getRowBlockValue(keyValues []*av.KeyValues) (ret *av.Value) { return } -func getTableRowBlockValue(row *av.TableRow) (ret *av.Value) { - for _, cell := range row.Cells { - if av.KeyTypeBlock == cell.ValueType { - ret = cell.Value - break - } - } - return -} - func (tx *Transaction) doSetAttrViewName(operation *Operation) (ret *TxErr) { err := setAttributeViewName(operation) if nil != err { @@ -693,7 +683,7 @@ func addAttributeViewBlock(blockID string, operation *Operation, tree *parse.Tre content = getNodeRefText(node) } now := time.Now().UnixMilli() - value := &av.Value{ID: ast.NewNodeID(), KeyID: blockValues.Key.ID, BlockID: blockID, Type: av.KeyTypeBlock, IsDetached: operation.IsDetached, Block: &av.ValueBlock{ID: blockID, Content: content, Created: now, Updated: now}} + value := &av.Value{ID: ast.NewNodeID(), KeyID: blockValues.Key.ID, BlockID: blockID, Type: av.KeyTypeBlock, IsDetached: operation.IsDetached, IsInitialized: false, Block: &av.ValueBlock{ID: blockID, Content: content, Created: now, Updated: now}} blockValues.Values = append(blockValues.Values, value) if !operation.IsDetached { @@ -1301,6 +1291,7 @@ func UpdateAttributeViewCell(tx *Transaction, avID, keyID, rowID, cellID string, for _, v := range kv.Values { if rowID == v.Block.ID { v.Block.Updated = time.Now().UnixMilli() + v.IsInitialized = true break } } From d4a3226a566421d01a0bcf9e9ad00cac1cb38ae3 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Wed, 11 Oct 2023 10:48:40 +0800 Subject: [PATCH 3/5] :memo: Update changelogs --- app/changelogs/v2.10.10/v2.10.9.md | 35 ++++++++++++++ app/changelogs/v2.10.10/v2.10.9_zh_CHT.md | 56 +++++++++++++++++++++++ app/changelogs/v2.10.10/v2.10.9_zh_CN.md | 35 ++++++++++++++ 3 files changed, 126 insertions(+) create mode 100644 app/changelogs/v2.10.10/v2.10.9.md create mode 100644 app/changelogs/v2.10.10/v2.10.9_zh_CHT.md create mode 100644 app/changelogs/v2.10.10/v2.10.9_zh_CN.md diff --git a/app/changelogs/v2.10.10/v2.10.9.md b/app/changelogs/v2.10.10/v2.10.9.md new file mode 100644 index 000000000..4042a1f99 --- /dev/null +++ b/app/changelogs/v2.10.10/v2.10.9.md @@ -0,0 +1,35 @@ +## Overview + +This is an emergency bug fix version, which mainly solves the compatibility issues of some plugins. + +Advertisement: Currently, `PRO Features` are in the early bird price stage, welcome to [learn more](https://b3log.org/siyuan/en/pricing.html). + +Note: The annual `Subscription` includes `Pro features`. If you are an annual subscriber, you do not need to buy PRO Features separately. + +## Changelogs + +Below are the detailed changes in this version. + +### Enhancement + +* [Improve PDF annotation color](https://github.com/siyuan-note/siyuan/issues/9206) +* [Add plugin CSS and custom CSS to the export PDF page](https://github.com/siyuan-note/siyuan/issues/9376) +* [Code snippet settings use a fixed-width font](https://github.com/siyuan-note/siyuan/issues/9385) +* [Add --b3-font-family to --b3-font-family-code](https://github.com/siyuan-note/siyuan/issues/9386) +* [Authenticate requests of assets other than 127.0.0.1](https://github.com/siyuan-note/siyuan/issues/9388) +* [Rename the .sya annotation file when renaming a PDF asset](https://github.com/siyuan-note/siyuan/issues/9390) +* [Add `Copy block hyperlink (Markdown)` hotkey](https://github.com/siyuan-note/siyuan/issues/9392) +* [Improve toolbar position for select text popup on the mobile](https://github.com/siyuan-note/siyuan/issues/9393) +* [Improve default selection of language hints in code blocks](https://github.com/siyuan-note/siyuan/issues/9396) + +### Bugfix + +* [Exporting Data failed](https://github.com/siyuan-note/siyuan/issues/9389) +* [Fix some plugin compatibility issues](https://github.com/siyuan-note/siyuan/issues/9397) + +### Development + +* [The block in the editor shows the database icon](https://github.com/siyuan-note/siyuan/issues/8894) +* [Improve event bus `open-siyuan-url-plugin`](https://github.com/siyuan-note/siyuan/pull/9256) +* [Improve database created and updated column values](https://github.com/siyuan-note/siyuan/issues/9391) +* [Improve handling of database column filters containing empty values](https://github.com/siyuan-note/siyuan/issues/9394) diff --git a/app/changelogs/v2.10.10/v2.10.9_zh_CHT.md b/app/changelogs/v2.10.10/v2.10.9_zh_CHT.md new file mode 100644 index 000000000..af115ddd0 --- /dev/null +++ b/app/changelogs/v2.10.10/v2.10.9_zh_CHT.md @@ -0,0 +1,56 @@ +## 概述 + +此版本修復了一些缺陷,建議升級。 + +廣告: 目前 `功能特性` 正處於早鳥價階段,歡迎[了解](https://b3log.org/siyuan/pricing.html)。 + +註:`年付訂閱` 包含 `功能特性`,如果你是訂閱會員,則無需單獨購買功能特性。 + +## 變更記錄 + +以下是此版本中的詳細變更。 + +### 改進功能 + +* [支援標題區塊製作閃卡](https://github.com/siyuan-note/siyuan/issues/9005) +* [移除浮窗中文件選單大綱、反鍊與關係圖選單項目](https://github.com/siyuan-note/siyuan/issues/9341) +* [移動大量文件時在背景執行索引](https://github.com/siyuan-note/siyuan/issues/9356) +* [改進一些介面細節](https://github.com/siyuan-note/siyuan/issues/9359) +* [改進書籤面板渲染](https://github.com/siyuan-note/siyuan/issues/9361) +* [改進區塊級複製](https://github.com/siyuan-note/siyuan/issues/9362) +* [區塊引錨文本不再包含行級備註內容](https://github.com/siyuan-note/siyuan/issues/9363) +* [支援設定文件等級新卡/複習卡上限](https://github.com/siyuan-note/siyuan/issues/9365) +* [僅開放功能特性的帳號顯示其開啟狀態](https://github.com/siyuan-note/siyuan/issues/9367) +* [文件匯出 .sy.zip 時關聯匯出相關閃卡](https://github.com/siyuan-note/siyuan/issues/9372) +* [微軟商店版不再顯示開機自動啟動設定項目](https://github.com/siyuan-note/siyuan/issues/9373) +* [區塊引搜尋結果清單中顯示筆記本路徑](https://github.com/siyuan-note/siyuan/issues/9378) +* [複製時替換不間斷空格為普通空格](https://github.com/siyuan-note/siyuan/issues/9382) + +### 修復缺陷 + +* [程式碼區塊行號錯位](https://github.com/siyuan-note/siyuan/issues/9337) +* [在新視窗載入某些 PDF 失敗](https://github.com/siyuan-note/siyuan/issues/9343) +* [行動端 APP 不顯示存取授權碼設定項目](https://github.com/siyuan-note/siyuan/issues/9346) +* [在部分 Linux 桌面發行版上無法啟動](https://github.com/siyuan-note/siyuan/issues/9347) +* [多重選擇清單項目剪切異常](https://github.com/siyuan-note/siyuan/issues/9349) +* [無法在表格中輸入自訂表情](https://github.com/siyuan-note/siyuan/issues/9358) +* [無法在行級程式碼中貼上](https://github.com/siyuan-note/siyuan/issues/9369) +* [行級元素中的自訂表情輸入後遺失](https://github.com/siyuan-note/siyuan/issues/9370) +* [無法取消網路代理設定](https://github.com/siyuan-note/siyuan/issues/9374) +* [流雲資料中心帳號登入驗證碼無法顯示](https://github.com/siyuan-note/siyuan/issues/9375) +* [Ctrl+Alt+F 無法在間隔重複中使用](https://github.com/siyuan-note/siyuan/issues/9384) + +### 開發重構 + +* [重建內核模型層事務機制](https://github.com/siyuan-note/siyuan/issues/9338) +* [升級 Electron](https://github.com/siyuan-note/siyuan/issues/9342) +* [使用 ipcRenderer 取代 @electron/remote](https://github.com/siyuan-note/siyuan/issues/9368) + +### 開發者 + +* [改進一些資料庫細節](https://github.com/siyuan-note/siyuan/issues/9274) +* [資料庫列圖示](https://github.com/siyuan-note/siyuan/issues/9304) +* [支援透過視圖標題搜尋資料庫區塊](https://github.com/siyuan-note/siyuan/issues/9348) +* [新增外掛事件匯流排 `open-menu-doctree`](https://github.com/siyuan-note/siyuan/issues/9351) +* [資料庫範本列支援 `created` 和 `updated` 內建變數](https://github.com/siyuan-note/siyuan/issues/9364) +* [資料庫支援建立時間和更新時間列](https://github.com/siyuan-note/siyuan/issues/9371) diff --git a/app/changelogs/v2.10.10/v2.10.9_zh_CN.md b/app/changelogs/v2.10.10/v2.10.9_zh_CN.md new file mode 100644 index 000000000..1a065c75f --- /dev/null +++ b/app/changelogs/v2.10.10/v2.10.9_zh_CN.md @@ -0,0 +1,35 @@ +## 概述 + +这是一个缺陷紧急修复版,主要解决部分插件的兼容性问题。 + +广告: 目前 `功能特性` 正处于早鸟价阶段,欢迎[了解](https://b3log.org/siyuan/pricing.html)。 + +注:`年付订阅` 包含 `功能特性`,如果你是订阅会员,则无需单独购买功能特性。 + +## 变更记录 + +以下是此版本中的详细变更。 + +### 改进功能 + +* [改进 PDF 标注颜色](https://github.com/siyuan-note/siyuan/issues/9206) +* [导出 PDF 时支持插件 CSS 和代码片段 CSS](https://github.com/siyuan-note/siyuan/issues/9376) +* [代码片段设置使用等宽字体](https://github.com/siyuan-note/siyuan/issues/9385) +* [在 --b3-font-family-code 中添加 --b3-font-family](https://github.com/siyuan-note/siyuan/issues/9386) +* [非 127.0.0.1 请求 assets 进行鉴权](https://github.com/siyuan-note/siyuan/issues/9388) +* [重命名 PDF 时关联重命名 .sya 标注文件](https://github.com/siyuan-note/siyuan/issues/9390) +* [添加 `复制块引超链接(Markdown)` 快捷键](https://github.com/siyuan-note/siyuan/issues/9392) +* [改进移动端文本选择后的工具栏位置](https://github.com/siyuan-note/siyuan/issues/9393) +* [改进代码块语言默认选择](https://github.com/siyuan-note/siyuan/issues/9396) + +### 修复缺陷 + +* [导出数据 Data 失败](https://github.com/siyuan-note/siyuan/issues/9389) +* [修复一些插件的兼容性问题](https://github.com/siyuan-note/siyuan/issues/9397) + +### 开发者 + +* [编辑器中的块显示数据库角标](https://github.com/siyuan-note/siyuan/issues/8894) +* [改进事件总线 `open-siyuan-url-plugin`](https://github.com/siyuan-note/siyuan/pull/9256) +* [改进数据库创建时间和更新时间列值](https://github.com/siyuan-note/siyuan/issues/9391) +* [改进数据库列过滤器包含空值时的处理](https://github.com/siyuan-note/siyuan/issues/9394) From b30cb0984aec2ae2248863f056bbef4f701980d5 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Wed, 11 Oct 2023 10:49:04 +0800 Subject: [PATCH 4/5] :memo: Update changelogs --- app/changelogs/v2.10.10/v2.10.9_zh_CHT.md | 53 +++++++---------------- 1 file changed, 16 insertions(+), 37 deletions(-) diff --git a/app/changelogs/v2.10.10/v2.10.9_zh_CHT.md b/app/changelogs/v2.10.10/v2.10.9_zh_CHT.md index af115ddd0..3be34ce0c 100644 --- a/app/changelogs/v2.10.10/v2.10.9_zh_CHT.md +++ b/app/changelogs/v2.10.10/v2.10.9_zh_CHT.md @@ -1,6 +1,6 @@ ## 概述 -此版本修復了一些缺陷,建議升級。 +這是一個缺陷緊急修復版,主要解決部分插件的相容性問題。 廣告: 目前 `功能特性` 正處於早鳥價階段,歡迎[了解](https://b3log.org/siyuan/pricing.html)。 @@ -12,45 +12,24 @@ ### 改進功能 -* [支援標題區塊製作閃卡](https://github.com/siyuan-note/siyuan/issues/9005) -* [移除浮窗中文件選單大綱、反鍊與關係圖選單項目](https://github.com/siyuan-note/siyuan/issues/9341) -* [移動大量文件時在背景執行索引](https://github.com/siyuan-note/siyuan/issues/9356) -* [改進一些介面細節](https://github.com/siyuan-note/siyuan/issues/9359) -* [改進書籤面板渲染](https://github.com/siyuan-note/siyuan/issues/9361) -* [改進區塊級複製](https://github.com/siyuan-note/siyuan/issues/9362) -* [區塊引錨文本不再包含行級備註內容](https://github.com/siyuan-note/siyuan/issues/9363) -* [支援設定文件等級新卡/複習卡上限](https://github.com/siyuan-note/siyuan/issues/9365) -* [僅開放功能特性的帳號顯示其開啟狀態](https://github.com/siyuan-note/siyuan/issues/9367) -* [文件匯出 .sy.zip 時關聯匯出相關閃卡](https://github.com/siyuan-note/siyuan/issues/9372) -* [微軟商店版不再顯示開機自動啟動設定項目](https://github.com/siyuan-note/siyuan/issues/9373) -* [區塊引搜尋結果清單中顯示筆記本路徑](https://github.com/siyuan-note/siyuan/issues/9378) -* [複製時替換不間斷空格為普通空格](https://github.com/siyuan-note/siyuan/issues/9382) +* [改良 PDF 標註顏色](https://github.com/siyuan-note/siyuan/issues/9206) +* [匯出 PDF 時支援外掛 CSS 與程式碼片段 CSS](https://github.com/siyuan-note/siyuan/issues/9376) +* [程式碼片段設定使用等寬字體](https://github.com/siyuan-note/siyuan/issues/9385) +* [在 --b3-font-family-code 中新增 --b3-font-family](https://github.com/siyuan-note/siyuan/issues/9386) +* [非 127.0.0.1 請求 assets 進行鑑權](https://github.com/siyuan-note/siyuan/issues/9388) +* [重命名 PDF 時關聯重命名 .sya 標註檔](https://github.com/siyuan-note/siyuan/issues/9390) +* [新增 `複製區塊引超連結(Markdown)` 快捷鍵](https://github.com/siyuan-note/siyuan/issues/9392) +* [改進行動端文字選擇後的工具列位置](https://github.com/siyuan-note/siyuan/issues/9393) +* [改進程式碼區塊語言預設選擇](https://github.com/siyuan-note/siyuan/issues/9396) ### 修復缺陷 -* [程式碼區塊行號錯位](https://github.com/siyuan-note/siyuan/issues/9337) -* [在新視窗載入某些 PDF 失敗](https://github.com/siyuan-note/siyuan/issues/9343) -* [行動端 APP 不顯示存取授權碼設定項目](https://github.com/siyuan-note/siyuan/issues/9346) -* [在部分 Linux 桌面發行版上無法啟動](https://github.com/siyuan-note/siyuan/issues/9347) -* [多重選擇清單項目剪切異常](https://github.com/siyuan-note/siyuan/issues/9349) -* [無法在表格中輸入自訂表情](https://github.com/siyuan-note/siyuan/issues/9358) -* [無法在行級程式碼中貼上](https://github.com/siyuan-note/siyuan/issues/9369) -* [行級元素中的自訂表情輸入後遺失](https://github.com/siyuan-note/siyuan/issues/9370) -* [無法取消網路代理設定](https://github.com/siyuan-note/siyuan/issues/9374) -* [流雲資料中心帳號登入驗證碼無法顯示](https://github.com/siyuan-note/siyuan/issues/9375) -* [Ctrl+Alt+F 無法在間隔重複中使用](https://github.com/siyuan-note/siyuan/issues/9384) - -### 開發重構 - -* [重建內核模型層事務機制](https://github.com/siyuan-note/siyuan/issues/9338) -* [升級 Electron](https://github.com/siyuan-note/siyuan/issues/9342) -* [使用 ipcRenderer 取代 @electron/remote](https://github.com/siyuan-note/siyuan/issues/9368) +* [匯出資料 Data 失敗](https://github.com/siyuan-note/siyuan/issues/9389) +* [修復一些插件的相容性問題](https://github.com/siyuan-note/siyuan/issues/9397) ### 開發者 -* [改進一些資料庫細節](https://github.com/siyuan-note/siyuan/issues/9274) -* [資料庫列圖示](https://github.com/siyuan-note/siyuan/issues/9304) -* [支援透過視圖標題搜尋資料庫區塊](https://github.com/siyuan-note/siyuan/issues/9348) -* [新增外掛事件匯流排 `open-menu-doctree`](https://github.com/siyuan-note/siyuan/issues/9351) -* [資料庫範本列支援 `created` 和 `updated` 內建變數](https://github.com/siyuan-note/siyuan/issues/9364) -* [資料庫支援建立時間和更新時間列](https://github.com/siyuan-note/siyuan/issues/9371) +* [編輯器中的區塊顯示資料庫角標](https://github.com/siyuan-note/siyuan/issues/8894) +* [改進事件匯流排 `open-siyuan-url-plugin`](https://github.com/siyuan-note/siyuan/pull/9256) +* [改進資料庫建立時間和更新時間列值](https://github.com/siyuan-note/siyuan/issues/9391) +* [改進資料庫列過濾器包含空值時的處理](https://github.com/siyuan-note/siyuan/issues/9394) \ No newline at end of file From e43cf4cf55de73c37a5dc603017b957b15a34499 Mon Sep 17 00:00:00 2001 From: Daniel <845765@qq.com> Date: Wed, 11 Oct 2023 10:52:10 +0800 Subject: [PATCH 5/5] :memo: Update changelogs --- app/changelogs/v2.10.10/v2.10.9.md | 1 + app/changelogs/v2.10.10/v2.10.9_zh_CHT.md | 3 ++- app/changelogs/v2.10.10/v2.10.9_zh_CN.md | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/app/changelogs/v2.10.10/v2.10.9.md b/app/changelogs/v2.10.10/v2.10.9.md index 4042a1f99..8475cdb7d 100644 --- a/app/changelogs/v2.10.10/v2.10.9.md +++ b/app/changelogs/v2.10.10/v2.10.9.md @@ -33,3 +33,4 @@ Below are the detailed changes in this version. * [Improve event bus `open-siyuan-url-plugin`](https://github.com/siyuan-note/siyuan/pull/9256) * [Improve database created and updated column values](https://github.com/siyuan-note/siyuan/issues/9391) * [Improve handling of database column filters containing empty values](https://github.com/siyuan-note/siyuan/issues/9394) +* [Adding row overwriting data after enabling filter in database](https://github.com/siyuan-note/siyuan/issues/9395) \ No newline at end of file diff --git a/app/changelogs/v2.10.10/v2.10.9_zh_CHT.md b/app/changelogs/v2.10.10/v2.10.9_zh_CHT.md index 3be34ce0c..5cb1c060e 100644 --- a/app/changelogs/v2.10.10/v2.10.9_zh_CHT.md +++ b/app/changelogs/v2.10.10/v2.10.9_zh_CHT.md @@ -32,4 +32,5 @@ * [編輯器中的區塊顯示資料庫角標](https://github.com/siyuan-note/siyuan/issues/8894) * [改進事件匯流排 `open-siyuan-url-plugin`](https://github.com/siyuan-note/siyuan/pull/9256) * [改進資料庫建立時間和更新時間列值](https://github.com/siyuan-note/siyuan/issues/9391) -* [改進資料庫列過濾器包含空值時的處理](https://github.com/siyuan-note/siyuan/issues/9394) \ No newline at end of file +* [改進資料庫列過濾器包含空值時的處理](https://github.com/siyuan-note/siyuan/issues/9394) +* [資料庫啟用過濾器後新增行覆蓋資料](https://github.com/siyuan-note/siyuan/issues/9395) diff --git a/app/changelogs/v2.10.10/v2.10.9_zh_CN.md b/app/changelogs/v2.10.10/v2.10.9_zh_CN.md index 1a065c75f..96ed9f4fe 100644 --- a/app/changelogs/v2.10.10/v2.10.9_zh_CN.md +++ b/app/changelogs/v2.10.10/v2.10.9_zh_CN.md @@ -33,3 +33,4 @@ * [改进事件总线 `open-siyuan-url-plugin`](https://github.com/siyuan-note/siyuan/pull/9256) * [改进数据库创建时间和更新时间列值](https://github.com/siyuan-note/siyuan/issues/9391) * [改进数据库列过滤器包含空值时的处理](https://github.com/siyuan-note/siyuan/issues/9394) +* [数据库启用过滤器后添加行覆盖数据](https://github.com/siyuan-note/siyuan/issues/9395)