feat: update protocol version handling
- add ProtocolVersion variable to metadata package
- don't set `ServerMessage.ProtocolVersion` in `main`
- update `ServerMessage` default to include ProtocolVersion
🤖
This commit is contained in:
parent
f8ab1375d1
commit
f0d7dc80fc
3 changed files with 12 additions and 9 deletions
|
@ -10,7 +10,6 @@ import (
|
|||
"github.com/charmbracelet/log"
|
||||
"net/http"
|
||||
"os"
|
||||
"strings"
|
||||
)
|
||||
|
||||
func Start() {
|
||||
|
@ -21,10 +20,9 @@ func Start() {
|
|||
showVersionFlag := flag.Bool("version", false, "Output version")
|
||||
flag.Parse()
|
||||
|
||||
shared.Message.ProtocolVersion = strings.Split(metadata.GoTomatoVersion, ".")[0]
|
||||
if *showVersionFlag {
|
||||
fmt.Printf("App-Version: %s\n", metadata.GoTomatoVersion)
|
||||
fmt.Printf("Protocol-Version: %s\n", shared.Message.ProtocolVersion)
|
||||
fmt.Printf("Protocol-Version: %s\n", metadata.ProtocolVersion)
|
||||
os.Exit(0)
|
||||
}
|
||||
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
package metadata
|
||||
|
||||
import "strings"
|
||||
|
||||
const GoTomatoVersion = "v0.0.4" // The GoTomato Version
|
||||
var ProtocolVersion = strings.Split(GoTomatoVersion, ".")[0]
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package shared
|
||||
|
||||
import (
|
||||
"git.smsvc.net/pomodoro/GoTomato/internal/metadata"
|
||||
"git.smsvc.net/pomodoro/GoTomato/pkg/models"
|
||||
)
|
||||
|
||||
|
@ -11,6 +12,7 @@ var Message = models.ServerMessage{
|
|||
TimeLeft: DefaultPomodoroConfig.Work,
|
||||
Ongoing: false,
|
||||
Paused: false,
|
||||
ProtocolVersion: metadata.ProtocolVersion,
|
||||
}
|
||||
|
||||
var PomodoroPassword string
|
||||
|
|
Loading…
Reference in a new issue