Tweaks
This commit is contained in:
parent
3f131c31d7
commit
55104899d3
|
|
@ -1,5 +1,12 @@
|
||||||
{
|
{
|
||||||
"releases": [
|
"releases": [
|
||||||
|
{
|
||||||
|
"version": "0.3.6",
|
||||||
|
"date": "2026-02-01",
|
||||||
|
"maturity": "ALPHA",
|
||||||
|
"summary": "Light/Dark Mode, Wkr Install, Cluster Stats",
|
||||||
|
"notes": ""
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"version": "0.3.5",
|
"version": "0.3.5",
|
||||||
"date": "2026-02-01",
|
"date": "2026-02-01",
|
||||||
|
|
|
||||||
|
|
@ -5,14 +5,23 @@
|
||||||
| **Author** | John Haverlack |
|
| **Author** | John Haverlack |
|
||||||
| **Copyright** | 2026 John Haverlack |
|
| **Copyright** | 2026 John Haverlack |
|
||||||
| **License** | MIT |
|
| **License** | MIT |
|
||||||
| **Version** | 0.3.5 |
|
| **Version** | 0.3.6 |
|
||||||
| **Date** | 2026-02-01 |
|
| **Date** | 2026-02-01 |
|
||||||
|
|
||||||
## v0.3.5 - 2026-02-01 (ALPHA)
|
## v0.3.6 - 2026-02-01 (ALPHA)
|
||||||
|
|
||||||
**Summary**
|
**Summary**
|
||||||
Light/Dark Mode, Wkr Install, Cluster Stats
|
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
|
- v0.3.5
|
||||||
- Fixing sdl-wkr install script
|
- Fixing sdl-wkr install script
|
||||||
- Start v0.3.5
|
- Start v0.3.5
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
"desc": "Workers",
|
"desc": "Workers",
|
||||||
"icon": "fa-solid fa-server",
|
"icon": "fa-solid fa-server",
|
||||||
"page": "wkrs",
|
"page": "wkrs",
|
||||||
"enabled": true,
|
"enabled": false,
|
||||||
"items": []
|
"items": []
|
||||||
},
|
},
|
||||||
"proj": {
|
"proj": {
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@ if (Array.isArray(config.host.gpu) && config.host.gpu.length > 0) {
|
||||||
|
|
||||||
return `
|
return `
|
||||||
<span
|
<span
|
||||||
style="font-size:0.75em; cursor:help"
|
style="font-size:0.8em; cursor:help"
|
||||||
title="${fullName}">
|
title="${fullName}">
|
||||||
${displayName} ${memLabel}
|
${displayName} ${memLabel}
|
||||||
</span>
|
</span>
|
||||||
|
|
@ -55,7 +55,7 @@ if (Array.isArray(config.host.gpu) && config.host.gpu.length > 0) {
|
||||||
// Hostinfo: hostname, cpu, cores, ram, os
|
// Hostinfo: hostname, cpu, cores, ram, os
|
||||||
const hostinfo = {
|
const hostinfo = {
|
||||||
"hostname": '<span class="dash-val">' + config.host.hostname + '</span>',
|
"hostname": '<span class="dash-val">' + config.host.hostname + '</span>',
|
||||||
"sdl_id": '<span class="dash-val" style=" font-size:0.7em">' + config.identity.sdl_id + '</span>',
|
"sdl_id": '<span class="dash-val" style=" font-size:0.8em">' + config.identity.sdl_id + '</span>',
|
||||||
"cpu cores": '<span class="dash-val">' + config.host.cpu.cores_logical + '</span> <span style="font-size:0.7em">' + config.host.cpu.model + '</span>',
|
"cpu cores": '<span class="dash-val">' + config.host.cpu.cores_logical + '</span> <span style="font-size:0.7em">' + config.host.cpu.model + '</span>',
|
||||||
// "cores": config.host.cpu.cores_logical,
|
// "cores": config.host.cpu.cores_logical,
|
||||||
"ram": '<span class="dash-val">' + config.host.memory.total_gb + '</span> GB ',
|
"ram": '<span class="dash-val">' + config.host.memory.total_gb + '</span> GB ',
|
||||||
|
|
@ -70,7 +70,7 @@ for (let intf in config.host.network) {
|
||||||
if (intf != 'lo') {
|
if (intf != 'lo') {
|
||||||
for (let addr in config.host.network[intf]) {
|
for (let addr in config.host.network[intf]) {
|
||||||
if (config.host.network[intf][addr].family == 'IPv4') {
|
if (config.host.network[intf][addr].family == 'IPv4') {
|
||||||
hostinfo["net"] += '<span class="dash-val" style=" font-size: 0.8em">' + config.host.network[intf][addr].cidr + '</span><br> ';
|
hostinfo["net"] += '<span class="dash-val" style=" font-size: 0.9em">' + config.host.network[intf][addr].cidr + '</span><br> ';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -278,7 +278,7 @@ function renderModulesTable(msg) {
|
||||||
sdl_html += `
|
sdl_html += `
|
||||||
<tr>
|
<tr>
|
||||||
<th>Uptime (d:h:m:s)</th>
|
<th>Uptime (d:h:m:s)</th>
|
||||||
<td class="dash-val" style=" font-size:0.8em">${msg.msg.sdl.uptime}</td>
|
<td class="dash-val" style=" font-size:1em">${msg.msg.sdl.uptime}</td>
|
||||||
</tr>
|
</tr>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,14 +5,23 @@
|
||||||
| **Author** | John Haverlack |
|
| **Author** | John Haverlack |
|
||||||
| **Copyright** | 2026 John Haverlack |
|
| **Copyright** | 2026 John Haverlack |
|
||||||
| **License** | MIT |
|
| **License** | MIT |
|
||||||
| **Version** | 0.3.5 |
|
| **Version** | 0.3.6 |
|
||||||
| **Date** | 2026-02-01 |
|
| **Date** | 2026-02-01 |
|
||||||
|
|
||||||
## v0.3.5 - 2026-02-01 (ALPHA)
|
## v0.3.6 - 2026-02-01 (ALPHA)
|
||||||
|
|
||||||
**Summary**
|
**Summary**
|
||||||
Light/Dark Mode, Wkr Install, Cluster Stats
|
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
|
- v0.3.5
|
||||||
- Fixing sdl-wkr install script
|
- Fixing sdl-wkr install script
|
||||||
- Start v0.3.5
|
- Start v0.3.5
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue