From 8cd8679512f7fd47401e54edbe34944a4eee1b87 Mon Sep 17 00:00:00 2001 From: Chris Titus Date: Mon, 13 Jul 2026 11:37:52 -0500 Subject: [PATCH] chore: Update generated dev docs (#4837) --- .../features/Legacy-Windows-Panels/Computer.md | 2 +- .../features/Legacy-Windows-Panels/Control.md | 2 +- .../features/Legacy-Windows-Panels/Firewall.md | 16 ++++++++++++++++ .../dev/features/Legacy-Windows-Panels/Mouse.md | 16 ++++++++++++++++ .../features/Legacy-Windows-Panels/Network.md | 2 +- .../dev/features/Legacy-Windows-Panels/Power.md | 2 +- .../features/Legacy-Windows-Panels/Printer.md | 2 +- .../features/Legacy-Windows-Panels/Programs.md | 16 ++++++++++++++++ .../dev/features/Legacy-Windows-Panels/Region.md | 2 +- .../features/Legacy-Windows-Panels/Restore.md | 2 +- .../features/Legacy-Windows-Panels/Security.md | 16 ++++++++++++++++ .../dev/features/Legacy-Windows-Panels/Sound.md | 2 +- .../dev/features/Legacy-Windows-Panels/System.md | 2 +- .../features/Legacy-Windows-Panels/Timedate.md | 2 +- 14 files changed, 74 insertions(+), 10 deletions(-) create mode 100644 docs/content/dev/features/Legacy-Windows-Panels/Firewall.md create mode 100644 docs/content/dev/features/Legacy-Windows-Panels/Mouse.md create mode 100644 docs/content/dev/features/Legacy-Windows-Panels/Programs.md create mode 100644 docs/content/dev/features/Legacy-Windows-Panels/Security.md diff --git a/docs/content/dev/features/Legacy-Windows-Panels/Computer.md b/docs/content/dev/features/Legacy-Windows-Panels/Computer.md index 3d47258b..4aa6f849 100644 --- a/docs/content/dev/features/Legacy-Windows-Panels/Computer.md +++ b/docs/content/dev/features/Legacy-Windows-Panels/Computer.md @@ -3,7 +3,7 @@ title: "Computer Management" description: "" --- -```json {filename="config/feature.json",linenos=inline,linenostart=193} +```json {filename="config/feature.json",linenos=inline,linenostart=182} "WPFPanelComputer": { "Content": "Computer Management", "category": "Legacy Windows Panels", diff --git a/docs/content/dev/features/Legacy-Windows-Panels/Control.md b/docs/content/dev/features/Legacy-Windows-Panels/Control.md index d79af6c7..bc6cfe98 100644 --- a/docs/content/dev/features/Legacy-Windows-Panels/Control.md +++ b/docs/content/dev/features/Legacy-Windows-Panels/Control.md @@ -3,7 +3,7 @@ title: "Control Panel" description: "" --- -```json {filename="config/feature.json",linenos=inline,linenostart=182} +```json {filename="config/feature.json",linenos=inline,linenostart=193} "WPFPanelControl": { "Content": "Control Panel", "category": "Legacy Windows Panels", diff --git a/docs/content/dev/features/Legacy-Windows-Panels/Firewall.md b/docs/content/dev/features/Legacy-Windows-Panels/Firewall.md new file mode 100644 index 00000000..f7c17eba --- /dev/null +++ b/docs/content/dev/features/Legacy-Windows-Panels/Firewall.md @@ -0,0 +1,16 @@ +--- +title: "Windows Defender Firewall" +description: "" +--- + +```json {filename="config/feature.json",linenos=inline,linenostart=314} + "WPFPanelFirewall": { + "Content": "Windows Defender Firewall", + "category": "Legacy Windows Panels", + "panel": "2", + "Type": "Button", + "ButtonWidth": "300", + "InvokeScript": [ + "firewall.cpl" + ], +``` diff --git a/docs/content/dev/features/Legacy-Windows-Panels/Mouse.md b/docs/content/dev/features/Legacy-Windows-Panels/Mouse.md new file mode 100644 index 00000000..6f54d745 --- /dev/null +++ b/docs/content/dev/features/Legacy-Windows-Panels/Mouse.md @@ -0,0 +1,16 @@ +--- +title: "Mouse Properties" +description: "" +--- + +```json {filename="config/feature.json",linenos=inline,linenostart=204} + "WPFPanelMouse": { + "Content": "Mouse Properties", + "category": "Legacy Windows Panels", + "panel": "2", + "Type": "Button", + "ButtonWidth": "300", + "InvokeScript": [ + "main.cpl" + ], +``` diff --git a/docs/content/dev/features/Legacy-Windows-Panels/Network.md b/docs/content/dev/features/Legacy-Windows-Panels/Network.md index ae0f23ca..fbd5af48 100644 --- a/docs/content/dev/features/Legacy-Windows-Panels/Network.md +++ b/docs/content/dev/features/Legacy-Windows-Panels/Network.md @@ -3,7 +3,7 @@ title: "Network Connections" description: "" --- -```json {filename="config/feature.json",linenos=inline,linenostart=204} +```json {filename="config/feature.json",linenos=inline,linenostart=215} "WPFPanelNetwork": { "Content": "Network Connections", "category": "Legacy Windows Panels", diff --git a/docs/content/dev/features/Legacy-Windows-Panels/Power.md b/docs/content/dev/features/Legacy-Windows-Panels/Power.md index 6e6eb55d..cf902a2e 100644 --- a/docs/content/dev/features/Legacy-Windows-Panels/Power.md +++ b/docs/content/dev/features/Legacy-Windows-Panels/Power.md @@ -3,7 +3,7 @@ title: "Power Panel" description: "" --- -```json {filename="config/feature.json",linenos=inline,linenostart=215} +```json {filename="config/feature.json",linenos=inline,linenostart=226} "WPFPanelPower": { "Content": "Power Panel", "category": "Legacy Windows Panels", diff --git a/docs/content/dev/features/Legacy-Windows-Panels/Printer.md b/docs/content/dev/features/Legacy-Windows-Panels/Printer.md index 1b6a733a..77b4436d 100644 --- a/docs/content/dev/features/Legacy-Windows-Panels/Printer.md +++ b/docs/content/dev/features/Legacy-Windows-Panels/Printer.md @@ -3,7 +3,7 @@ title: "Printer Panel" description: "" --- -```json {filename="config/feature.json",linenos=inline,linenostart=226} +```json {filename="config/feature.json",linenos=inline,linenostart=237} "WPFPanelPrinter": { "Content": "Printer Panel", "category": "Legacy Windows Panels", diff --git a/docs/content/dev/features/Legacy-Windows-Panels/Programs.md b/docs/content/dev/features/Legacy-Windows-Panels/Programs.md new file mode 100644 index 00000000..74bcd5fa --- /dev/null +++ b/docs/content/dev/features/Legacy-Windows-Panels/Programs.md @@ -0,0 +1,16 @@ +--- +title: "Programs and Features" +description: "" +--- + +```json {filename="config/feature.json",linenos=inline,linenostart=248} + "WPFPanelPrograms": { + "Content": "Programs and Features", + "category": "Legacy Windows Panels", + "panel": "2", + "Type": "Button", + "ButtonWidth": "300", + "InvokeScript": [ + "appwiz.cpl" + ], +``` diff --git a/docs/content/dev/features/Legacy-Windows-Panels/Region.md b/docs/content/dev/features/Legacy-Windows-Panels/Region.md index 8e9b424a..0b22cf3d 100644 --- a/docs/content/dev/features/Legacy-Windows-Panels/Region.md +++ b/docs/content/dev/features/Legacy-Windows-Panels/Region.md @@ -3,7 +3,7 @@ title: "Region" description: "" --- -```json {filename="config/feature.json",linenos=inline,linenostart=237} +```json {filename="config/feature.json",linenos=inline,linenostart=259} "WPFPanelRegion": { "Content": "Region", "category": "Legacy Windows Panels", diff --git a/docs/content/dev/features/Legacy-Windows-Panels/Restore.md b/docs/content/dev/features/Legacy-Windows-Panels/Restore.md index fe8588c5..4150356a 100644 --- a/docs/content/dev/features/Legacy-Windows-Panels/Restore.md +++ b/docs/content/dev/features/Legacy-Windows-Panels/Restore.md @@ -3,7 +3,7 @@ title: "Windows Restore" description: "" --- -```json {filename="config/feature.json",linenos=inline,linenostart=248} +```json {filename="config/feature.json",linenos=inline,linenostart=325} "WPFPanelRestore": { "Content": "Windows Restore", "category": "Legacy Windows Panels", diff --git a/docs/content/dev/features/Legacy-Windows-Panels/Security.md b/docs/content/dev/features/Legacy-Windows-Panels/Security.md new file mode 100644 index 00000000..cfcd78f6 --- /dev/null +++ b/docs/content/dev/features/Legacy-Windows-Panels/Security.md @@ -0,0 +1,16 @@ +--- +title: "Security and Maintenance" +description: "" +--- + +```json {filename="config/feature.json",linenos=inline,linenostart=270} + "WPFPanelSecurity": { + "Content": "Security and Maintenance", + "category": "Legacy Windows Panels", + "panel": "2", + "Type": "Button", + "ButtonWidth": "300", + "InvokeScript": [ + "wscui.cpl" + ], +``` diff --git a/docs/content/dev/features/Legacy-Windows-Panels/Sound.md b/docs/content/dev/features/Legacy-Windows-Panels/Sound.md index aa9e8975..1dfd0bac 100644 --- a/docs/content/dev/features/Legacy-Windows-Panels/Sound.md +++ b/docs/content/dev/features/Legacy-Windows-Panels/Sound.md @@ -3,7 +3,7 @@ title: "Sound Settings" description: "" --- -```json {filename="config/feature.json",linenos=inline,linenostart=259} +```json {filename="config/feature.json",linenos=inline,linenostart=281} "WPFPanelSound": { "Content": "Sound Settings", "category": "Legacy Windows Panels", diff --git a/docs/content/dev/features/Legacy-Windows-Panels/System.md b/docs/content/dev/features/Legacy-Windows-Panels/System.md index 35390851..31e2b3c5 100644 --- a/docs/content/dev/features/Legacy-Windows-Panels/System.md +++ b/docs/content/dev/features/Legacy-Windows-Panels/System.md @@ -3,7 +3,7 @@ title: "System Properties" description: "" --- -```json {filename="config/feature.json",linenos=inline,linenostart=270} +```json {filename="config/feature.json",linenos=inline,linenostart=292} "WPFPanelSystem": { "Content": "System Properties", "category": "Legacy Windows Panels", diff --git a/docs/content/dev/features/Legacy-Windows-Panels/Timedate.md b/docs/content/dev/features/Legacy-Windows-Panels/Timedate.md index 40c31fc1..2f281556 100644 --- a/docs/content/dev/features/Legacy-Windows-Panels/Timedate.md +++ b/docs/content/dev/features/Legacy-Windows-Panels/Timedate.md @@ -3,7 +3,7 @@ title: "Time and Date" description: "" --- -```json {filename="config/feature.json",linenos=inline,linenostart=281} +```json {filename="config/feature.json",linenos=inline,linenostart=303} "WPFPanelTimedate": { "Content": "Time and Date", "category": "Legacy Windows Panels",