From 2cb4e6d3b23c86b9085ce7069ad97f77a836454f Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Wed, 11 Mar 2026 16:23:56 -0400 Subject: [PATCH] Add version footer, task history UI, and note version retention policy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - App.vue: quiet version footer (fetches /api/version, 0.45 opacity) - TaskEditorView: History button + HistoryPanel integration (mirrors NoteEditorView) - note_versions.py: raise MAX_VERSIONS 20→50; add 5-min minimum interval gate to prevent autosave exhausting history slots Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/App.vue | 23 ++++++++++++++- frontend/src/views/TaskEditorView.vue | 28 +++++++++++++++++++ src/fabledassistant/services/note_versions.py | 28 +++++++++++++++++-- 3 files changed, 76 insertions(+), 3 deletions(-) diff --git a/frontend/src/App.vue b/frontend/src/App.vue index ca39dc3..00db060 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -1,5 +1,5 @@