فهرست منبع

成功优化掉了半个月的工作量, 我超爱您

nandHyf 1 سال پیش
والد
کامیت
36e36f9d35
2فایلهای تغییر یافته به همراه48 افزوده شده و 5 حذف شده
  1. 12 5
      ReleaseNote.md
  2. 36 0
      dev.toml

+ 12 - 5
ReleaseNote.md

@@ -1,8 +1,15 @@
-[v 1.0]
+[Backlog]
+- Dart version
+- Support MongoDB
+- C# version
+- Export to .csv
 
 
-[v 2.0]
-1. 支持多重输入的命令结构
+[v2.0]
+- Multiple input
 
-[backlog]
-1. 数据库支持mogoDB
+[v1.1]
+- Export to .toml/.md/.txt
+
+[v1.0]
+- Basic functions

+ 36 - 0
dev.toml

@@ -0,0 +1,36 @@
+# ----- DB Configuration -----
+# Just a better reference for dev.db, no functional use(yet)
+[KB]
+c1_pk = "id INTEGER PRIMARY KEY ASC"
+c2 = "type"
+c3 = "name"
+c4 = "dscrp"
+c5 = "creator"
+c6 = "createdTime"
+c7 = "classCreated"
+c8 = "classCurrent"
+c9 = "status"
+
+
+# ----- App Configuration -----
+StrictMode = false
+LLM_callable = false
+
+DBType = "sqlite3"
+DBPath = "dev.db"
+
+Lang = "en"
+ListStyle = "tree"
+DisplayTimeZone = "utc+8"
+
+
+# ----- Some Notes -----
+# Set integer prime key: <columnName> INTEGER PRIMARY KEY ASC
+# status: alive/deleted/unclassified(event only)
+#                                           ↓ Don't foget to write the method(s) for it
+# ListStyle: tree/md_table/LLM_md_table/<customName>
+# [todo 4] StrickMode: 1. Have to be full length commands; 2. err when not exist
+
+
+# Explanation of abbreviations
+#