v1.2.5 - calendar view for daily notes, trash notebook restore, attachment/link fixes

This commit is contained in:
Yuri Karamian
2026-03-12 00:12:45 +01:00
parent 0b17a7c458
commit 7be1b56b7c
15 changed files with 572 additions and 59 deletions
+14 -1
View File
@@ -14,6 +14,18 @@ export interface NoteEntry {
preview: string;
}
export interface TrashNotebookEntry {
name: string;
path: string;
note_count: number;
modified: string;
}
export interface TrashContents {
notes: NoteEntry[];
notebooks: TrashNotebookEntry[];
}
export interface NotebookEntry {
name: string;
path: string;
@@ -131,4 +143,5 @@ export type ViewMode =
| "tag"
| "trash"
| "search"
| "quickaccess";
| "quickaccess"
| "daily";