From 050d11362ccffc27eb800cf45e0b0db5468dc634 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Wed, 2 Nov 2016 22:27:17 -0500 Subject: [PATCH] Try to re-read the plan file if we have no items. --- daily_notifier.nim | 4 ++-- daily_notifier.nimble | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/daily_notifier.nim b/daily_notifier.nim index 05b6688..09feb6a 100644 --- a/daily_notifier.nim +++ b/daily_notifier.nim @@ -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" diff --git a/daily_notifier.nimble b/daily_notifier.nimble index 20cb0bd..8e58303 100644 --- a/daily_notifier.nimble +++ b/daily_notifier.nimble @@ -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"