From 09e64d4859d29e19b751f70bc19991d3cb305947 Mon Sep 17 00:00:00 2001 From: Jokul Date: Sun, 19 Jul 2026 17:32:17 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E5=90=8C=E6=AD=A5=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E7=BB=93=E6=9E=84=E5=9B=BE=EF=BC=8C=E8=A1=A5=E5=85=85=20compon?= =?UTF-8?q?ents/AboutWindow.qml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AGENTS.md | 4 +++- README.md | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 52903a7..f82f5ba 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -73,7 +73,9 @@ then restart `dde-shell` (it discovers applets by scanning the install dir for │ └── networkmonitorapplet.cpp # C++ backend implementation ├── package/ │ ├── metadata.json.in # Plugin metadata 模板(由 CMake 生成 metadata.json) -│ └── networkview.qml # QML UI +│ ├── networkview.qml # QML UI 主入口 +│ └── components/ # 拆分出的子组件 +│ └── AboutWindow.qml # 关于窗口组件 ├── docs/ # Design docs and implementation plans └── AGENTS.md # This file ``` diff --git a/README.md b/README.md index 47fe945..5af073c 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,9 @@ bash build-deb.sh │ └── networkmonitorapplet.cpp # C++ 后端实现 ├── package/ │ ├── metadata.json.in # 插件元数据模板(由 CMake 生成 metadata.json) -│ └── networkview.qml # QML 界面 +│ ├── networkview.qml # QML 界面主入口 +│ └── components/ # 拆分出的子组件 +│ └── AboutWindow.qml # 关于窗口组件 ├── docs/ # 设计文档与实现计划 ├── README.md # 本文件 └── AGENTS.md # AI 代理工作指引