Private
Public Access
1
0

发布:版本 0.3.0

- Markdown Mermaid 图表支持(10+ 种图表类型)
- 代码语法高亮(20+ 种常用编程语言)
- 文件列表优化(文件夹优先显示)
- 文件系统模块化重构
- 新增内部更新日志 CHANGELOG.internal.md
- 更新作者邮箱
This commit is contained in:
2026-02-04 11:12:24 +08:00
parent 1708c65c34
commit d7de60b02c
8 changed files with 199 additions and 31 deletions

View File

@@ -41,12 +41,11 @@ type TabConfig struct {
// 默认 Tab 配置
var defaultTabConfig = TabConfig{
AvailableTabs: []TabDefinition{
{Key: "db-cli", Title: "数据库", Enabled: true},
{Key: "file-system", Title: "文件管理", Enabled: true},
{Key: "device", Title: "设备调用测试", Enabled: true},
{Key: "db-cli", Title: "数据库", Enabled: true},
},
VisibleTabs: []string{"db-cli", "file-system", "device"},
DefaultTab: "db-cli",
VisibleTabs: []string{"file-system", "db-cli"},
DefaultTab: "file-system",
}
const (