feat(workspace): make directory paths clickable and rename "Today's Note" to "Add Memory"

Add open_workspace_directory Tauri command to open workspace/memory dirs
in the system file manager. Rename dailyMemory.createToday across all locales.
This commit is contained in:
Jason
2026-02-24 09:45:10 +08:00
parent a8dbea1398
commit c380528a27
8 changed files with 49 additions and 6 deletions
+4
View File
@@ -49,4 +49,8 @@ export const workspaceApi = {
query,
});
},
async openDirectory(subdir: "workspace" | "memory"): Promise<void> {
await invoke("open_workspace_directory", { subdir });
},
};