diff --git a/daily_notifier.nim b/daily_notifier.nim index 667b7df..188a008 100644 --- a/daily_notifier.nim +++ b/daily_notifier.nim @@ -11,7 +11,7 @@ type DPConfig = tuple[planDir, dateFmt, pidfile, logfile, errfile: string, notificationSecs: int] -const VERSION = "0.3.1" +const VERSION = "0.3.2" const NOTE_TITLE = "Daily Notifier v" & VERSION const timeFmt = "HH:mm" @@ -77,7 +77,7 @@ proc loadConfig(s: cint): void {. exportc, noconv .} = # Find and parse the .dailynotificationrc file let rcLocations = @[ - if args["--config"]: $args[""] else:"", + if args["--config"]: $args["--config"] else:"", ".dailynotificationrc", $getEnv("DAILY_NOTIFICATION_RC"), $getEnv("HOME") & "/.dailynotificationrc"] diff --git a/daily_notifier.nimble b/daily_notifier.nimble index 6b5d8bd..8e009cc 100644 --- a/daily_notifier.nimble +++ b/daily_notifier.nimble @@ -1,6 +1,6 @@ # Package -version = "0.3.1" +version = "0.3.2" author = "Jonathan Bernard" description = "Little programs that reads my daily plan and notifies me of upcoming events." license = "MIT"