mirror of
https://github.com/netbirdio/netbird.git
synced 2026-07-17 03:59:56 +00:00
Add Version service exposing GUI version to frontend
This commit is contained in:
26
client/ui/services/version.go
Normal file
26
client/ui/services/version.go
Normal file
@@ -0,0 +1,26 @@
|
||||
//go:build !android && !ios && !freebsd && !js
|
||||
|
||||
package services
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/netbirdio/netbird/version"
|
||||
)
|
||||
|
||||
// Version is the Wails-bound facade exposing build/version metadata to the
|
||||
// frontend. Today it only reports the GUI's own version (the daemon version is
|
||||
// surfaced separately through the status feed's DaemonVersion field).
|
||||
type Version struct{}
|
||||
|
||||
// NewVersion constructs the Version service.
|
||||
func NewVersion() *Version {
|
||||
return &Version{}
|
||||
}
|
||||
|
||||
// GUI returns the version of the running UI binary, baked in at build time via
|
||||
// the version package's ldflags. Falls back to "development" for un-stamped
|
||||
// builds (see version.NetbirdVersion).
|
||||
func (v *Version) GUI(_ context.Context) string {
|
||||
return version.NetbirdVersion()
|
||||
}
|
||||
Reference in New Issue
Block a user