summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-10-18 09:36:52 +0300
committerPaul Buetow <paul@buetow.org>2025-10-18 09:36:52 +0300
commit12f92a552437ced57f1b98c2a8e6c59356f8f6e8 (patch)
tree9dca46575ee82e2ad32aa2cfe310127f79b5eb68
parenta42d68e15754ae67d24dd4e76731e937b57e23f9 (diff)
add cont
-rw-r--r--cmd/timr/main.go2
-rw-r--r--internal/version.go2
2 files changed, 3 insertions, 1 deletions
diff --git a/cmd/timr/main.go b/cmd/timr/main.go
index d5b3004..0c4df06 100644
--- a/cmd/timr/main.go
+++ b/cmd/timr/main.go
@@ -40,6 +40,8 @@ func runCommand(args []string) (string, error) {
return "", err
}
output, err = timer.StartTimer(status > 0)
+ case "cont":
+ fallthrough
case "continue":
rawStatus, err := timer.GetRawStatus()
if err != nil {
diff --git a/internal/version.go b/internal/version.go
index 10a66c4..f85f296 100644
--- a/internal/version.go
+++ b/internal/version.go
@@ -1,3 +1,3 @@
package internal
-const Version = "v0.1.1"
+const Version = "v0.2.0"