hub v0.3.4: Rename version labels for clarity

"Current version" → "Controller version", "Latest version" → "Registry latest"
to avoid confusion when running version is ahead of registry cache.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-20 21:29:04 +01:00
parent 6dd72f1408
commit 9048e1adad
5 changed files with 10 additions and 6 deletions
+4
View File
@@ -1,5 +1,9 @@
# Felhom Hub — Changelog # Felhom Hub — Changelog
## v0.3.4 (2026-02-20)
- Rename version labels: "Current version" → "Controller version", "Latest version" → "Registry latest".
## v0.3.3 (2026-02-20) ## v0.3.3 (2026-02-20)
**Bugfixes** **Bugfixes**
+1 -1
View File
@@ -4,7 +4,7 @@
A lightweight Go service that receives periodic reports and structured events from felhom-controller instances, stores them in SQLite, and provides a web dashboard for fleet monitoring. Also serves as the infrastructure backup store for disaster recovery, event-based dead man's switch monitoring, and notification dispatch. A lightweight Go service that receives periodic reports and structured events from felhom-controller instances, stores them in SQLite, and provides a web dashboard for fleet monitoring. Also serves as the infrastructure backup store for disaster recovery, event-based dead man's switch monitoring, and notification dispatch.
**Current version: v0.3.3** **Current version: v0.3.4**
--- ---
+2 -2
View File
@@ -192,12 +192,12 @@
<h2>Controller Update</h2> <h2>Controller Update</h2>
<div class="info-grid"> <div class="info-grid">
<div class="info-item"> <div class="info-item">
<span class="label">Current version</span> <span class="label">Controller version</span>
<span class="value">{{.Customer.ControllerVersion}}</span> <span class="value">{{.Customer.ControllerVersion}}</span>
</div> </div>
{{if .LatestVersion}} {{if .LatestVersion}}
<div class="info-item"> <div class="info-item">
<span class="label">Latest version</span> <span class="label">Registry latest</span>
<span class="value"> <span class="value">
v{{.LatestVersion}} v{{.LatestVersion}}
{{if .UpdateAvailable}} {{if .UpdateAvailable}}
@@ -347,12 +347,12 @@
<h2>Controller Update</h2> <h2>Controller Update</h2>
<div class="info-grid"> <div class="info-grid">
<div class="info-item"> <div class="info-item">
<span class="label">Current version</span> <span class="label">Controller version</span>
<span class="value">{{.Customer.ControllerVersion}}</span> <span class="value">{{.Customer.ControllerVersion}}</span>
</div> </div>
{{if .LatestVersion}} {{if .LatestVersion}}
<div class="info-item"> <div class="info-item">
<span class="label">Latest version</span> <span class="label">Registry latest</span>
<span class="value"> <span class="value">
v{{.LatestVersion}} v{{.LatestVersion}}
{{if .UpdateAvailable}} {{if .UpdateAvailable}}
+1 -1
View File
@@ -117,7 +117,7 @@ spec:
spec: spec:
containers: containers:
- name: hub - name: hub
image: gitea.dooplex.hu/admin/felhom-hub:v0.3.3 image: gitea.dooplex.hu/admin/felhom-hub:v0.3.4
ports: ports:
- containerPort: 8080 - containerPort: 8080
name: http name: http