rework version slightly

This commit is contained in:
Ted Unangst 2019-11-08 21:15:40 -05:00
parent a5db27531f
commit 02f73018ab
2 changed files with 3 additions and 3 deletions

View File

@ -28,7 +28,7 @@ import (
"time" "time"
) )
var honkVersion = "honk 0.8.1-dev" var softwareVersion = "develop"
func init() { func init() {
notrand.Seed(time.Now().Unix()) notrand.Seed(time.Now().Unix())
@ -213,7 +213,7 @@ func main() {
case "upgrade": case "upgrade":
upgradedb() upgradedb()
case "version": case "version":
fmt.Println(honkVersion) fmt.Println(softwareVersion)
os.Exit(0) os.Exit(0)
} }
db := opendatabase() db := opendatabase()

2
web.go
View File

@ -1901,7 +1901,7 @@ func servehtml(w http.ResponseWriter, r *http.Request) {
templinfo := getInfo(r) templinfo := getInfo(r)
templinfo["AboutMsg"] = aboutMsg templinfo["AboutMsg"] = aboutMsg
templinfo["LoginMsg"] = loginMsg templinfo["LoginMsg"] = loginMsg
templinfo["HonkVersion"] = honkVersion templinfo["HonkVersion"] = softwareVersion
if r.URL.Path == "/about" { if r.URL.Path == "/about" {
templinfo["Sensors"] = getSensors() templinfo["Sensors"] = getSensors()
} }