diff options
| -rw-r--r-- | cmd/timr/main.go | 2 | ||||
| -rw-r--r-- | internal/version.go | 2 |
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" |
