Add task management: aggregated Tasks view (list + calendar) with inline due/priority, check off, set from row, and drag-to-reschedule (#62)

This commit is contained in:
Yuri Karamian
2026-06-08 02:34:19 +02:00
parent e2702bdd51
commit 26fa22afaa
9 changed files with 1130 additions and 8 deletions
+13 -1
View File
@@ -164,4 +164,16 @@ export type ViewMode =
| "trash"
| "search"
| "quickaccess"
| "daily";
| "daily"
| "tasks";
export interface TaskItem {
note_path: string;
note_title: string;
line: number;
raw_line: string;
text: string;
completed: boolean;
due: string | null;
priority: string | null;
}