diff --git a/daily_notifier.nim b/daily_notifier.nim index 88822a2..0e64c4f 100644 --- a/daily_notifier.nim +++ b/daily_notifier.nim @@ -1,4 +1,4 @@ -import cliutils, docopt, json, logging, os, re, random, sequtils, +import cliutils, docopt, json, logging, os, nre, random, sequtils, times, timeutils from posix import SIGTERM, SIGHUP, signal, kill @@ -11,7 +11,7 @@ type DPConfig = tuple[planDir, dateFmt, pidfile, logfile, errfile: string, notificationSecs: int] -const VERSION = "0.3.0" +const VERSION = "0.3.1" const NOTE_TITLE = "Daily Notifier v" & VERSION const timeFmt = "HH:mm" @@ -19,7 +19,7 @@ var args: Table[string, Value] var cfg: DPConfig let appName = getAppFilename() let soundsDir: string = appName[0..(appName.len-15)] & "sounds/navi" -let soundFiles = toSeq(walkFiles(soundsDir & "/*")) +let soundFiles = seqUtils.toSeq(walkFiles(soundsDir & "/*")) randomize() proc parseDailyPlan(filename: string): seq[PlanItem] = @@ -40,22 +40,10 @@ proc parseDailyPlan(filename: string): seq[PlanItem] = if line.strip.startsWith("## Timeline"): parseState = ReadingPlans of ReadingPlans: - # TODO: This is the better code using the nre module: - # let match = line.find(planItemRe) - # if match.isSome(): result.add(( - # time: parse(match.get().captures[0], timeFmt), - # note: match.get().captures[1])) - # else: parseState = AfterPlans - # - # Curently there is an incompatibility between the os and nre modules - # (see https://github.com/nim-lang/Nim/issues/4996) so the following code - # is used to avoid using nre until the bug is fixed. - - if line.match(planItemRe): - let stripped = line.strip - result.add(( - time: parse(stripped[0..4], timeFmt), - note: stripped.substr(5))) + let match = line.find(planItemRe) + if match.isSome(): result.add(( + time: parse(match.get().captures[0], timeFmt), + note: match.get().captures[1])) else: parseState = AfterPlans of AfterPlans: break diff --git a/daily_notifier.nimble b/daily_notifier.nimble index f62bde1..6b5d8bd 100644 --- a/daily_notifier.nimble +++ b/daily_notifier.nimble @@ -1,6 +1,6 @@ # Package -version = "0.3.0" +version = "0.3.1" author = "Jonathan Bernard" description = "Little programs that reads my daily plan and notifies me of upcoming events." license = "MIT"