diff --git a/changelog.json b/changelog.json
index bf1e67e..1428b1b 100644
--- a/changelog.json
+++ b/changelog.json
@@ -1,5 +1,12 @@
{
"releases": [
+ {
+ "version": "0.3.6",
+ "date": "2026-02-01",
+ "maturity": "ALPHA",
+ "summary": "Light/Dark Mode, Wkr Install, Cluster Stats",
+ "notes": ""
+ },
{
"version": "0.3.5",
"date": "2026-02-01",
diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md
index 17bdf31..6bd59fd 100644
--- a/docs/CHANGELOG.md
+++ b/docs/CHANGELOG.md
@@ -5,14 +5,23 @@
| **Author** | John Haverlack |
| **Copyright** | 2026 John Haverlack |
| **License** | MIT |
-| **Version** | 0.3.5 |
+| **Version** | 0.3.6 |
| **Date** | 2026-02-01 |
-## v0.3.5 - 2026-02-01 (ALPHA)
+## v0.3.6 - 2026-02-01 (ALPHA)
**Summary**
Light/Dark Mode, Wkr Install, Cluster Stats
+- Start v0.3.6
+- CP Updates
+- Dash: Total Cluster Stats
+- Publishing to cluster/workers
+- Light/Dark Mode Toggle
+- Added light/dark theme CSS
+
+## v0.3.5 - 2026-02-01 (ALPHA)
+
- v0.3.5
- Fixing sdl-wkr install script
- Start v0.3.5
diff --git a/sdl-mgr/html/conf/nav-sidepanel.json b/sdl-mgr/html/conf/nav-sidepanel.json
index e8fa3c0..cd19180 100644
--- a/sdl-mgr/html/conf/nav-sidepanel.json
+++ b/sdl-mgr/html/conf/nav-sidepanel.json
@@ -20,7 +20,7 @@
"desc": "Workers",
"icon": "fa-solid fa-server",
"page": "wkrs",
- "enabled": true,
+ "enabled": false,
"items": []
},
"proj": {
diff --git a/sdl-mgr/html/js/dash.js b/sdl-mgr/html/js/dash.js
index e6cc551..286b49e 100644
--- a/sdl-mgr/html/js/dash.js
+++ b/sdl-mgr/html/js/dash.js
@@ -44,7 +44,7 @@ if (Array.isArray(config.host.gpu) && config.host.gpu.length > 0) {
return `
${displayName} ${memLabel}
@@ -55,7 +55,7 @@ if (Array.isArray(config.host.gpu) && config.host.gpu.length > 0) {
// Hostinfo: hostname, cpu, cores, ram, os
const hostinfo = {
"hostname": '' + config.host.hostname + '',
- "sdl_id": '' + config.identity.sdl_id + '',
+ "sdl_id": '' + config.identity.sdl_id + '',
"cpu cores": '' + config.host.cpu.cores_logical + ' ' + config.host.cpu.model + '',
// "cores": config.host.cpu.cores_logical,
"ram": '' + config.host.memory.total_gb + ' GB ',
@@ -70,7 +70,7 @@ for (let intf in config.host.network) {
if (intf != 'lo') {
for (let addr in config.host.network[intf]) {
if (config.host.network[intf][addr].family == 'IPv4') {
- hostinfo["net"] += '' + config.host.network[intf][addr].cidr + '
';
+ hostinfo["net"] += '' + config.host.network[intf][addr].cidr + '
';
}
}
}
@@ -278,7 +278,7 @@ function renderModulesTable(msg) {
sdl_html += `