rtfm-filemanager 7.3.6 → 7.4.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 +174 -0
- data/README.md +633 -628
- data/bin/rtfm +1 -1
- data/docs/configuration.md +397 -0
- data/docs/faq.md +436 -0
- data/docs/getting-started.md +276 -0
- data/docs/keyboard-reference.md +387 -0
- data/docs/plugins.md +649 -0
- data/docs/remote-browsing.md +425 -0
- data/docs/troubleshooting.md +639 -0
- data/examples/rtfm.conf +280 -0
- data/man/rtfm.1 +361 -0
- metadata +13 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3f6bc5298e93ba60c9624f256fb1682476a581e6fdfb80f3995beba600ea20eb
|
|
4
|
+
data.tar.gz: 36deb1eeacea20c36d354b6c221a41efb7d8f9ee3f093ae8a2905d730e6ad5ca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ccf76a6e2c2f7c2f3760a042a1a445619f2fa6688edd0f506b74c215b98feddcd63af8ef98c2f0d9f914af2339d24336b250718af86b205f60e9e2077eedac23
|
|
7
|
+
data.tar.gz: d350f3eca6a275a5afb052306a3ac15e45f492bda2b47a12b52be9b3b5e11e4ba19b00a73980a5d9be2cd6cff6ad59cd11f624b713fb1d22cb26b3ab24bf6c06
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to RTFM will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [7.4.0] - 2025-11-03
|
|
9
|
+
|
|
10
|
+
### Documentation
|
|
11
|
+
- **Man page added** - Professional Unix-style documentation (man rtfm)
|
|
12
|
+
- **Restructured README** - Better organization, TOC, quick start guide
|
|
13
|
+
- **Comprehensive guides** created in docs/ directory:
|
|
14
|
+
- Getting Started guide
|
|
15
|
+
- Configuration reference
|
|
16
|
+
- Remote browsing guide
|
|
17
|
+
- Keyboard reference
|
|
18
|
+
- Plugin development guide
|
|
19
|
+
- Troubleshooting guide
|
|
20
|
+
- FAQ
|
|
21
|
+
- **Example configuration** - Well-commented rtfm.conf template
|
|
22
|
+
- **CONTRIBUTING.md** - Guidelines for contributors
|
|
23
|
+
- **Documentation badge** added to README
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
- All documentation files now distributed with gem
|
|
27
|
+
- gemspec includes man page, docs/, and examples/
|
|
28
|
+
|
|
29
|
+
## [7.3.6] - 2025-11-03
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
- Preview toggle ('-') now properly clears displayed images
|
|
33
|
+
- Image preview toggle ('_') now properly clears displayed images
|
|
34
|
+
- Image/PDF metadata only fetched when preview is ON (eliminates lag with preview OFF)
|
|
35
|
+
|
|
36
|
+
### Performance
|
|
37
|
+
- No identify/pdfinfo calls when preview is disabled
|
|
38
|
+
- Faster navigation through directories when preview OFF
|
|
39
|
+
- Benefits from termpix 0.2.1 conditional auto-orient
|
|
40
|
+
|
|
41
|
+
## [7.3.5] - 2025-10-27
|
|
42
|
+
|
|
43
|
+
### Fixed
|
|
44
|
+
- Images now properly clear when navigating to different directories
|
|
45
|
+
- Added image clearing to: jump_to_mark ('), move_left/up (h/LEFT), go_home (~), follow_symlink (>), and directory entry
|
|
46
|
+
|
|
47
|
+
## [7.3.4] - 2025-10-27
|
|
48
|
+
|
|
49
|
+
### Fixed
|
|
50
|
+
- Critical bug: Undefined variable 'esc' in permanent delete operation (when trash is disabled)
|
|
51
|
+
- Permanent deletion now works correctly
|
|
52
|
+
|
|
53
|
+
## [7.3.3] - 2025-10-27
|
|
54
|
+
|
|
55
|
+
### Performance
|
|
56
|
+
- Image redraw checking now only runs when idle (no keypress)
|
|
57
|
+
- Eliminates delay during active use with large images displayed
|
|
58
|
+
- UP/DOWN/? and other keys now instant even with large images
|
|
59
|
+
|
|
60
|
+
### Added
|
|
61
|
+
- UTF-16 file support (both LE and BE) for opening in $EDITOR
|
|
62
|
+
- Files with UTF-16 encoding now properly detected as text
|
|
63
|
+
|
|
64
|
+
### Fixed
|
|
65
|
+
- Added clear_image helper function to reduce code duplication
|
|
66
|
+
- Image clearing for help, delete, config, git, system info, compare, tagged operations
|
|
67
|
+
|
|
68
|
+
## [7.3.2] - 2025-10-27
|
|
69
|
+
|
|
70
|
+
### Added
|
|
71
|
+
- C-Y now copies image files to clipboard when viewing images (can paste into GIMP, etc.)
|
|
72
|
+
- MIME type detection for image clipboard copy (PNG, JPEG, GIF, BMP, WebP)
|
|
73
|
+
|
|
74
|
+
### Fixed
|
|
75
|
+
- Images now persist during operations (copy path, change permissions, etc.)
|
|
76
|
+
- Image display no longer cleared unnecessarily during key operations
|
|
77
|
+
|
|
78
|
+
### Improved
|
|
79
|
+
- Removed aggressive image clearing in key handler
|
|
80
|
+
- Images only clear when content actually changes
|
|
81
|
+
|
|
82
|
+
## [7.3.1] - 2025-10-27
|
|
83
|
+
|
|
84
|
+
### Fixed
|
|
85
|
+
- Image positioning now uses correct absolute row positioning (row 2)
|
|
86
|
+
- Images with EXIF orientation metadata display correctly (via termpix 0.2.0)
|
|
87
|
+
- Pane borders no longer cleared when displaying images
|
|
88
|
+
|
|
89
|
+
### Changed
|
|
90
|
+
- Updated termpix dependency to ~> 0.2 for EXIF auto-orient support
|
|
91
|
+
|
|
92
|
+
## [7.3.0] - 2025-10-26
|
|
93
|
+
|
|
94
|
+
### Added
|
|
95
|
+
- Modern image display using termpix gem with multi-protocol support
|
|
96
|
+
- Sixel protocol support for mlterm and compatible terminals
|
|
97
|
+
- Protocol detection shown in version display (press 'v')
|
|
98
|
+
|
|
99
|
+
### Changed
|
|
100
|
+
- Refactored image display to use termpix gem instead of direct w3m calls
|
|
101
|
+
- Cleaner, more maintainable image handling code
|
|
102
|
+
- Better terminal compatibility across different emulators
|
|
103
|
+
|
|
104
|
+
### Improved
|
|
105
|
+
- Image display now supports multiple protocols (Sixel, w3m)
|
|
106
|
+
- Reduced code complexity in showimage function (~50 lines to ~20)
|
|
107
|
+
- Better separation of concerns (image protocols in dedicated gem)
|
|
108
|
+
|
|
109
|
+
## [7.2.1] - 2025-10-25
|
|
110
|
+
|
|
111
|
+
### Performance
|
|
112
|
+
- Window title update optimization: Use direct print instead of system spawn
|
|
113
|
+
- Eliminates process spawn overhead (~2-5ms) on every directory change
|
|
114
|
+
- Snappier directory navigation experience
|
|
115
|
+
|
|
116
|
+
---
|
|
117
|
+
|
|
118
|
+
## [7.2.0] - 2025-10-21
|
|
119
|
+
|
|
120
|
+
### BREAKING CHANGES
|
|
121
|
+
**Batch Operation Behavior Change:**
|
|
122
|
+
- All batch operations now use a consistent "tagged OR selected" logic
|
|
123
|
+
- When items are tagged: operations work ONLY on tagged items (selected item is NOT included unless also tagged)
|
|
124
|
+
- When NO items are tagged: operations work on the currently selected item only
|
|
125
|
+
- This affects: delete, copy, move, symlink, bulk rename, change permissions, change ownership, and open operations
|
|
126
|
+
- **Migration**: If you previously relied on operations affecting "tagged + selected", you must now explicitly tag the selected item if you want it included
|
|
127
|
+
|
|
128
|
+
### Why This Change
|
|
129
|
+
This change provides consistent, predictable behavior across all batch operations and eliminates confusion about which items will be affected by an operation.
|
|
130
|
+
|
|
131
|
+
### Added
|
|
132
|
+
- Permission modification syntax: Use `+x`, `-w`, `+rw`, etc. to add/remove permissions incrementally
|
|
133
|
+
- Undo support for permission changes (C-P)
|
|
134
|
+
- Undo support for ownership changes (C-O)
|
|
135
|
+
- Persistent selection: After delete/move operations, the previously selected item remains selected if it still exists
|
|
136
|
+
|
|
137
|
+
### Improved
|
|
138
|
+
- Bulk rename now works on single selected item when no items are tagged (consistent with other operations)
|
|
139
|
+
|
|
140
|
+
## [7.1.4] - 2025-10-21
|
|
141
|
+
|
|
142
|
+
### Fixed
|
|
143
|
+
- Terminal resizing now works properly in window managers like i3-wm
|
|
144
|
+
- Added error handling to WINCH signal handler to prevent crashes on resize
|
|
145
|
+
- Manual refresh ('r' key) now re-reads and applies new terminal size
|
|
146
|
+
- Terminal size validation prevents invalid dimensions from being applied
|
|
147
|
+
|
|
148
|
+
## [7.1.3] - 2025-10-21
|
|
149
|
+
|
|
150
|
+
### Fixed
|
|
151
|
+
- Permission change (C-P) now properly updates file colors in the display by invalidating the directory cache
|
|
152
|
+
- Broken symlinks can now be deleted or moved to trash without errors
|
|
153
|
+
|
|
154
|
+
## [7.1.2] - 2025-10-19
|
|
155
|
+
|
|
156
|
+
### Fixed
|
|
157
|
+
- Text file preview now works for all text-encoded files using `file` command MIME type detection
|
|
158
|
+
|
|
159
|
+
## [7.1.1] - 2025-10-18
|
|
160
|
+
|
|
161
|
+
### Fixed
|
|
162
|
+
- 'A' key toggle_long now properly shows ls -l format
|
|
163
|
+
- Cache invalidation when toggling long file info display
|
|
164
|
+
|
|
165
|
+
## [7.1.0] - 2025-10-17
|
|
166
|
+
|
|
167
|
+
### Added
|
|
168
|
+
- Compressed archive viewer support for .zip, .tar, .gz, .bz2, .xz, .rar, and .7z files
|
|
169
|
+
- Archive contents preview in right pane
|
|
170
|
+
|
|
171
|
+
## [7.0.14] - 2025-10-16
|
|
172
|
+
|
|
173
|
+
### Fixed
|
|
174
|
+
- Regex error when using '*' to mark all files with C-T
|