rtfm-filemanager 7.5.3 → 8.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/README.md +15 -1
- data/bin/rtfm +911 -116
- data/docs/keyboard-reference.md +15 -3
- data/docs/remote-browsing.md +4 -4
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 34e1069fa8b9c2a587f6216f06a98ae9a68feb1290898bf45a8a991063cef65f
|
|
4
|
+
data.tar.gz: d90988e37f5bd7910929e66207d8862af8ba2307b2ab0abc214f5317faf3907a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2096032a084f6851ae1ffdd87a72a96469b3239e605af345f8a8e4a4aa08e8b781640a25465518c1139127e764b9d78e504b581e137810124a6d952739a3a5e0
|
|
7
|
+
data.tar.gz: 6a07bab823af11d303d7ef8ff92699f6145f68350dcf0471107c9f9ffb4e844614485d4e80c573680533c3800b0018712c8a6c2e4692aba30232ff24cf567a63
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ All notable changes to RTFM will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [8.0.1] - 2026-03-07
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- **Harmonized key mappings** - `d` now consistently means delete across all modes (normal, archive, remote). `D` = extract (archive mode) or download (remote mode). Removed `P` move-out shortcut from archive mode.
|
|
12
|
+
|
|
13
|
+
## [8.0] - 2026-03-07
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
- **Browse archives as virtual directories** - Press Enter on .zip, .tar.gz, .tar.bz2, .tar.xz, .rar, .7z files to browse their contents as if they were directories. Navigate with normal keys, press LEFT at root to exit. Yellow-green visual indicator distinguishes archive mode. Supports nested directories within archives. Press `x` to open archive with external program instead.
|
|
17
|
+
- **Archive write operations** - Full read/write support for archives: delete entries (`d`), extract entries (`D`), add local files (`p`). Tag multiple entries with `t` for bulk operations. Supports zip, tar.gz, tar.bz2, tar.xz, rar, and 7z formats.
|
|
18
|
+
- **Async background file operations** - Copy and move operations on multiple items or directories now run in a background thread with progress displayed in the bottom pane. The UI remains responsive during large operations. Single-file operations and symlinks remain synchronous for instant feedback.
|
|
19
|
+
- **Scrollable diff viewer** - File comparison (`X`) now shows the full unified diff with scrollable navigation (j/k, PgUp/PgDn, Home/End). Press `s` to toggle between unified diff and side-by-side view. No more truncation at 15 lines.
|
|
20
|
+
|
|
8
21
|
## [7.5.3] - 2026-03-05
|
|
9
22
|
|
|
10
23
|
### Fixed
|
data/README.md
CHANGED
|
@@ -324,13 +324,27 @@ user@server.com:/path # Production server
|
|
|
324
324
|
|-----|--------|
|
|
325
325
|
| `←` / `h` | Parent directory |
|
|
326
326
|
| `→` / `ENTER` | Enter dir / show file info |
|
|
327
|
-
| `
|
|
327
|
+
| `D` | Download file |
|
|
328
328
|
| `u` | Upload tagged files |
|
|
329
329
|
| `s` | Open SSH shell |
|
|
330
330
|
| `Ctrl-e` | Exit remote mode |
|
|
331
331
|
|
|
332
332
|
**Visual indicator:** Red background when in remote mode
|
|
333
333
|
|
|
334
|
+
### Archive Browsing
|
|
335
|
+
|
|
336
|
+
Press `Enter` on any archive file (.zip, .tar.gz, .tar.bz2, .tar.xz, .rar, .7z) to browse its contents as a virtual directory.
|
|
337
|
+
|
|
338
|
+
| Key | Action |
|
|
339
|
+
|-----|--------|
|
|
340
|
+
| `d` | Delete entry from archive |
|
|
341
|
+
| `D` | Extract entry to origin directory |
|
|
342
|
+
| `p` | Add pre-tagged local files into archive |
|
|
343
|
+
| `t` | Tag/untag for bulk operations |
|
|
344
|
+
| `LEFT` | Parent directory / exit archive |
|
|
345
|
+
|
|
346
|
+
**Visual indicator:** Yellow-green background when in archive mode
|
|
347
|
+
|
|
334
348
|
---
|
|
335
349
|
|
|
336
350
|
## Configuration
|