rework version slightly
Ted Unangst tedu@tedunangst.com
Fri, 08 Nov 2019 21:15:40 -0500
M
honk.go
→
honk.go
@@ -28,7 +28,7 @@ "strings"
"time" ) -var honkVersion = "honk 0.8.1-dev" +var softwareVersion = "develop" func init() { notrand.Seed(time.Now().Unix())@@ -213,7 +213,7 @@ initdb()
case "upgrade": upgradedb() case "version": - fmt.Println(honkVersion) + fmt.Println(softwareVersion) os.Exit(0) } db := opendatabase()
M
web.go
→
web.go
@@ -1901,7 +1901,7 @@ u := login.GetUserInfo(r)
templinfo := getInfo(r) templinfo["AboutMsg"] = aboutMsg templinfo["LoginMsg"] = loginMsg - templinfo["HonkVersion"] = honkVersion + templinfo["HonkVersion"] = softwareVersion if r.URL.Path == "/about" { templinfo["Sensors"] = getSensors() }