Changed Default GUI Mode to Electron

This commit is contained in:
2026-05-04 00:54:39 +02:00
parent cd3d9043fe
commit a593cf6ad0
5 changed files with 104 additions and 19 deletions

View File

@@ -0,0 +1,10 @@
package version
// Version and BuildTime are set at build time using -ldflags. Defaults are provided
// for development builds.
var Version = "dev"
var BuildTime = "unknown"
func String() string {
return Version + " (" + BuildTime + ")"
}