feat: SFTP file transfer progress bar + auto-refresh

- Progress bar: [████████░░░░] 67% 12.3MB/18.5MB
- progressWriter wraps io.Writer, reports bytes via callback
- Footer shows live progress during upload/download
- Auto-refresh destination pane after transfer completes
- Success message shown for 1 second before clearing
This commit is contained in:
swanadiva
2026-06-24 14:25:11 +07:00
parent a597ea5291
commit 6b95385094
2 changed files with 74 additions and 10 deletions
+7
View File
@@ -46,6 +46,13 @@
- `R` key now clears cache for current directory and forces re-read
- Cache is per-path: navigating to a previously visited folder is instant
### SFTP File Transfer Progress Bar
- Added progress bar during upload/download: `[████████░░░░] 67% 12.3MB/18.5MB`
- `progressWriter` wraps `io.Writer` and reports bytes transferred
- Footer shows live progress during transfer
- Auto-refresh destination pane after transfer completes
- Success message shown for 1 second before clearing
## v1.0.0 (2025-01-30)
### Added