Add plasmoid scaffold: metadata.json + config schema

Plasma/Applet package metadata (tray applet, id sk.houmeres.synologynas)
and the KConfigXT schema (hosts JSON, mount root, SMB version, options).
Passwords are never stored in config — they live in KWallet.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Jaroslav Beneš
2026-07-15 14:18:32 +02:00
parent 4f477bfe70
commit a462d8ab4f
3 changed files with 72 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import QtQuick
import org.kde.plasma.configuration
ConfigModel {
ConfigCategory {
name: i18n("NAS Hosts")
icon: "network-server"
source: "config/ConfigHosts.qml"
}
ConfigCategory {
name: i18n("General")
icon: "configure"
source: "config/ConfigGeneral.qml"
}
}