rtfm-filemanager 7.5.2 → 8.0
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/bin/rtfm +920 -109
- 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: a7a4b89db4d1b51d0fd284d272a38e984464001c59ba56073573a9970f368c2d
|
|
4
|
+
data.tar.gz: 28fb1c3993d2bd7a5bfc37963af077ebb902cd36b6afea714aee5e8392b995f3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5949e6579609b8c5680d2d808f0f7c7df263560ec1c740105712189de44b20b6b6140daba57ef80b366f5556ec7b702f0a98ee85a39e1481e07c4b66d2297736
|
|
7
|
+
data.tar.gz: e48903d3b30df3318d1327eda8ae7150e3e40e7d27b081e190a8a8088c44eb0af400d501550844ac52e5f9a687759b22bed82231e339f857af1f238db7d77e41
|
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] - 2026-03-07
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **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.
|
|
12
|
+
- **Archive write operations** - Full read/write support for archives: extract entries (`d`), delete entries (`D`), add local files (`p`), and move out (`P` = extract + delete). Tag multiple entries with `t` for bulk operations. Supports zip, tar.gz, tar.bz2, tar.xz, rar, and 7z formats.
|
|
13
|
+
- **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.
|
|
14
|
+
- **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.
|
|
15
|
+
|
|
16
|
+
## [7.5.3] - 2026-03-05
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
- **Stale display on external file removal** - When another program deletes the currently selected file, RTFM now detects this and refreshes all panes within ~1 second
|
|
20
|
+
|
|
8
21
|
## [7.5.2] - 2026-01-23
|
|
9
22
|
|
|
10
23
|
### Fixed
|