Compare commits

..

5 commits

Author SHA1 Message Date
f0ba6396b7 refactor: update version output
- use `Println` for better readability
2024-10-28 10:41:20 +01:00
f5f51711a1 format: use group style variable declaration to define cli flags 2024-10-28 09:43:17 +01:00
7b0c0df477 format: update import statements order for consistency 2024-10-28 09:42:56 +01:00
1b01041a14 feat: update settings handling for pomodoro configuration
- add `UpdateSettings()` to update pomodoro configuration
- refactor client command handling to use `UpdateSettings()`

🤖
2024-10-28 09:42:22 +01:00
1a47c0607b feat: update protocol version handling
- add ProtocolVersion variable to metadata package
- don't set `ServerMessage.ProtocolVersion` in `main`
- update `ServerMessage` default to include ProtocolVersion

🤖
2024-10-27 22:46:58 +01:00

View file

@ -2,5 +2,5 @@ package metadata
import "strings" import "strings"
const GoTomatoVersion = "v0.0.4" // The GoTomato Version const GoTomatoVersion = "v0.0.3" // The GoTomato Version
var ProtocolVersion = strings.Split(GoTomatoVersion, ".")[0] var ProtocolVersion = strings.Split(GoTomatoVersion, ".")[0]