Try to re-read the plan file if we have no items.
This commit is contained in:
parent
2748a3e8ce
commit
050d11362c
@ -23,7 +23,7 @@ proc getVal(cfg: CombinedConfig, key, default: string): string =
|
|||||||
elif cfg.json.hasKey(jsonKey): return cfg.json[jsonKey].getStr
|
elif cfg.json.hasKey(jsonKey): return cfg.json[jsonKey].getStr
|
||||||
else: return default
|
else: return default
|
||||||
|
|
||||||
const VERSION = "0.2.0"
|
const VERSION = "0.2.1"
|
||||||
const timeFmt = "HH:mm"
|
const timeFmt = "HH:mm"
|
||||||
|
|
||||||
var args: Table[string, Value]
|
var args: Table[string, Value]
|
||||||
@ -111,7 +111,7 @@ proc mainLoop(args: Table[string, Value]): void =
|
|||||||
var today = startOfDay(now)
|
var today = startOfDay(now)
|
||||||
|
|
||||||
# Load today's plan items
|
# Load today's plan items
|
||||||
if today != curDay:
|
if today != curDay or todaysItems.len == 0:
|
||||||
curDay = today
|
curDay = today
|
||||||
let todaysPlanFile =
|
let todaysPlanFile =
|
||||||
cfg.planDir & "/" & today.format(cfg.dateFmt) & "-plan.md"
|
cfg.planDir & "/" & today.format(cfg.dateFmt) & "-plan.md"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Package
|
# Package
|
||||||
|
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
author = "Jonathan Bernard"
|
author = "Jonathan Bernard"
|
||||||
description = "Little programs that reads my daily plan and notifies me of upcoming events."
|
description = "Little programs that reads my daily plan and notifies me of upcoming events."
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user