Try to re-read the plan file if we have no items.

This commit is contained in:
Jonathan Bernard 2016-11-02 22:27:17 -05:00
parent 2748a3e8ce
commit 050d11362c
2 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ proc getVal(cfg: CombinedConfig, key, default: string): string =
elif cfg.json.hasKey(jsonKey): return cfg.json[jsonKey].getStr
else: return default
const VERSION = "0.2.0"
const VERSION = "0.2.1"
const timeFmt = "HH:mm"
var args: Table[string, Value]
@ -111,7 +111,7 @@ proc mainLoop(args: Table[string, Value]): void =
var today = startOfDay(now)
# Load today's plan items
if today != curDay:
if today != curDay or todaysItems.len == 0:
curDay = today
let todaysPlanFile =
cfg.planDir & "/" & today.format(cfg.dateFmt) & "-plan.md"

View File

@ -1,6 +1,6 @@
# Package
version = "0.2.0"
version = "0.2.1"
author = "Jonathan Bernard"
description = "Little programs that reads my daily plan and notifies me of upcoming events."
license = "MIT"