You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add recent files dropdown and bump version to 0.7.0
- Recent files stored in ~/.logan/recent-files.json (capped at 20)
- Updated on every successful file open with dedupe
- New chevron button next to Open File button shows dropdown
- Each entry shows filename, directory, and relative time
- "Clear history" button to wipe the list
- Filters out files that no longer exist on disk
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: src/renderer/index.html
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -27,9 +27,13 @@
27
27
<!-- Toolbar -->
28
28
<divclass="toolbar">
29
29
<divclass="toolbar-left">
30
-
<buttonid="btn-open-file" class="toolbar-btn" title="Open file" data-help="Open a log file for analysis. Supports text logs, JSON logs, CSV, and large files (100K+ lines). Drag & drop also works.">
31
-
<spanclass="icon">📂</span> Open File
32
-
</button>
30
+
<divclass="open-file-wrapper">
31
+
<buttonid="btn-open-file" class="toolbar-btn" title="Open file" data-help="Open a log file for analysis. Supports text logs, JSON logs, CSV, and large files (100K+ lines). Drag & drop also works.">
32
+
<spanclass="icon">📂</span> Open File
33
+
</button>
34
+
<buttonid="btn-recent-files" class="toolbar-btn small recent-files-chevron" title="Recent files">▾</button>
0 commit comments