new todos

This commit is contained in:
2026-03-05 15:54:13 +01:00
parent 31a235763b
commit b429f884c4
10 changed files with 1042 additions and 1399 deletions

View File

@@ -1,4 +1,8 @@
[
(
name: "P5 rückmelden",
pattern: MonthlyOpt(dom: 10, months: ["March"]),
),
(
name: "Morello updaten",
pattern: Weekly(dow: "Monday"),
@@ -11,6 +15,10 @@
name: "Rechnung Gertrudenhof",
pattern: Monthly(dom: 1),
),
(
name: "Rechnung Remagen",
pattern: Monthly(dom: 1),
),
(
name: "Rechnung Sholti",
pattern: Monthly(dom: 1),

View File

@@ -168,7 +168,6 @@ fn update_notes(notes_path: &PathBuf, patterns_path: Option<PathBuf>) {
}
}
Pattern::Weekly { dow } => {
dbg!(dow, today);
let mut date_idx = latest_date.clone() + Duration::days(1);
while date_idx <= today {
dbg!(date_idx);