docs: update CHANGELOG.md and PROJECT_STATE.md with all fixes

This commit is contained in:
swanadiva
2026-06-23 18:49:07 +07:00
parent 7d41391e13
commit a6850b577c
2 changed files with 10 additions and 0 deletions
+5
View File
@@ -6,10 +6,15 @@
- TUI host list footer now includes `Ctrl+E:edit` - TUI host list footer now includes `Ctrl+E:edit`
- New hosts/keys/snippets created via TUI form now get UUID + timestamps (`CreatedAt`, `UpdatedAt`) - New hosts/keys/snippets created via TUI form now get UUID + timestamps (`CreatedAt`, `UpdatedAt`)
- Storage layer auto-generates UUID + timestamps on save if empty (defense-in-depth) - Storage layer auto-generates UUID + timestamps on save if empty (defense-in-depth)
- **host_form_tab.go**: Space/Left/Right keys now passthrough to text input when not on auth type field (fixes typing spaces and cursor navigation)
- **tui.go**: Key and snippet list tabs now properly refresh after save/delete (mirrors host flow)
- **tabs.go**: WindowSizeMsg now forwarded to ALL tabs, not just the active one (fixes stale dimensions after resize)
### Changed ### Changed
- All tab footers are now context-specific (no global status bar) - All tab footers are now context-specific (no global status bar)
- SFTP browser uses full-width panes (`t.width/2`) - SFTP browser uses full-width panes (`t.width/2`)
- **sftp_browser_tab.go footer**: Added `Enter/→:open`, `←/Backspace:up`
- **form tabs footer**: Added `Shift+Tab:prev`, `↑↓:nav`
## v1.0.0 (2025-01-30) ## v1.0.0 (2025-01-30)
+5
View File
@@ -46,6 +46,11 @@
✅ UUID + timestamps auto-generated in TUI form `submit()` methods ✅ UUID + timestamps auto-generated in TUI form `submit()` methods
✅ UUID + timestamps auto-generated in storage layer (`SaveHost`, `SaveKeyPair`, `SaveSnippet`) ✅ UUID + timestamps auto-generated in storage layer (`SaveHost`, `SaveKeyPair`, `SaveSnippet`)
✅ Git history cleaned of committed binary; `.gitignore` fixed ✅ Git history cleaned of committed binary; `.gitignore` fixed
**host_form_tab.go**: Space/Left/Right passthrough to text input (fixes typing spaces + cursor nav)
**tui.go**: Key + snippet list refresh on save/delete
**tabs.go**: WindowSizeMsg forwarded to all tabs on resize
**sftp_browser_tab.go footer**: Added `Enter/→:open`, `←/Backspace:up`
**Form tab footers**: Added `Shift+Tab:prev`, `↑↓:nav`
--- ---