Explorar el Código

:art:编辑器动态加载块数由定值改为可配置 https://github.com/siyuan-note/siyuan/issues/6415

Liang Ding hace 2 años
padre
commit
0b31e72779
Se han modificado 2 ficheros con 7 adiciones y 1 borrados
  1. 1 1
      kernel/api/setting.go
  2. 6 0
      kernel/model/conf.go

+ 1 - 1
kernel/api/setting.go

@@ -204,7 +204,7 @@ func setSearch(c *gin.Context) {
 	}
 
 	if 1 > s.Limit {
-		s.Limit = 32
+		s.Limit = 64
 	}
 
 	oldCaseSensitive := model.Conf.Search.CaseSensitive

+ 6 - 0
kernel/model/conf.go

@@ -257,10 +257,16 @@ func InitConf() {
 	if 1 > Conf.Editor.HistoryRetentionDays {
 		Conf.Editor.HistoryRetentionDays = 7
 	}
+	if 1 > Conf.Editor.DynamicLoadBlocks {
+		Conf.Editor.DynamicLoadBlocks = 128
+	}
 
 	if nil == Conf.Search {
 		Conf.Search = conf.NewSearch()
 	}
+	if 1 > Conf.Search.Limit {
+		Conf.Search.Limit = 64
+	}
 
 	if nil == Conf.Stat {
 		Conf.Stat = conf.NewStat()