feat: 添加历史记录和配置管理命令及相关测试

fix(project_rules): 修正文档中的中文支持说明

chore: 更新版本号至0.3.8

feat: 新增history命令用于查看和管理命令历史记录
feat: 新增config命令用于管理系统配置
feat: 新增find命令用于文件搜索
docs: 添加新命令建议文档
test: 添加history、config和find命令的测试脚本
This commit is contained in:
2025-09-02 22:22:25 +08:00
parent 27d32e99ed
commit 7e07e1636f
10 changed files with 896 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
_G._HOST = _G._HOST .. " (LeonOS 0.3.7)"
_G._HOST = _G._HOST .. " (LeonOS 0.3.8)"
local fs = rawget(_G, "fs")
_G._RC_ROM_DIR = _RC_ROM_DIR or (...) and fs.exists("/leonos") and "/leonos" or "/rom"
@@ -32,7 +32,7 @@ local rc = {
_VERSION = {
major = 0,
minor = 3,
patch = 7
patch = 8
},
queueEvent = pull(os, "queueEvent"),
startTimer = pull(os, "startTimer"),