diff --git a/ui/general/docker.html b/ui/general/docker.html new file mode 100644 index 0000000..1f5e05d --- /dev/null +++ b/ui/general/docker.html @@ -0,0 +1,25 @@ + + + + + Docker Configuration + + + + + + + +
+
+
+

Docker Configuration

+

Docker Configuration page.

+
+
+
+ + + + + \ No newline at end of file diff --git a/ui/general/docker.js b/ui/general/docker.js new file mode 100644 index 0000000..8f3dacd --- /dev/null +++ b/ui/general/docker.js @@ -0,0 +1,9 @@ + +// Elements + +// Load initial settings +document.onload = initPage(); + +// Function to initialize the page +function initPage() { +} diff --git a/ui/general/health.html b/ui/general/health.html new file mode 100644 index 0000000..86b6d5a --- /dev/null +++ b/ui/general/health.html @@ -0,0 +1,25 @@ + + + + + Health Status + + + + + + + +
+
+
+

Health Status

+

At a glance view of the status of the drone.

+
+
+
+ + + + + \ No newline at end of file diff --git a/ui/general/health.js b/ui/general/health.js new file mode 100644 index 0000000..8f3dacd --- /dev/null +++ b/ui/general/health.js @@ -0,0 +1,9 @@ + +// Elements + +// Load initial settings +document.onload = initPage(); + +// Function to initialize the page +function initPage() { +} diff --git a/ui/general/manifest.json b/ui/general/manifest.json index 640ba50..0fb44b0 100644 --- a/ui/general/manifest.json +++ b/ui/general/manifest.json @@ -5,12 +5,42 @@ "MAVLink": { "label": "MAVLink Telemtry", "path": "mavlink.html", - "order": 1 + "order": 1, + "keywords": [ + { + "matches": ["mavlink", "telemetry", "fcu", "flight control unit", "udp", "tcp", "serial", "usb"] + } + ] }, "SpiriLink": { "label": "SpiriLink", "path": "spirilink.html", - "order": 2 + "order": 2, + "keywords": [ + { + "matches": ["wifi", "temperature", "rtsp", "video", "streaming", "camera", "mavlink"] + } + ] + }, + "Docker": { + "label": "Docker", + "path": "docker.html", + "order": 3, + "keywords": [ + { + "matches": ["docker", "compose", "container"] + } + ] + }, + "Health": { + "label": "Health", + "path": "health.html", + "order": 4, + "keywords": [ + { + "matches": ["checklist"] + } + ] } } }