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