rtfm-filemanager 6.0.8 → 6.0.9
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/bin/rtfm +8 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3ab0c62999b31e35023b07ee5d03f4d76902f7cc0c6eda5787c45a90fd479b9a
|
4
|
+
data.tar.gz: 63bcd01728eeb40c448370b25396fbd6f081e6e8923117e8a6e1d944cf3528b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9fbab9227b727d0de460099d65b94de1c285b4f8a085ee8e98d4b55125e720c62d54c49e830e82d061d7192c0e927e61347f343b95951e0fedd8581ad0129ca2
|
7
|
+
data.tar.gz: f7f412f3fa7b6586fa942e7ca63e3620e09d2ab254d2dcbf8ea9ee5bd7805502c94db6f6bd009836c73a330d773bbca3d5123d24f32c07ce61315c57e4b24219
|
data/bin/rtfm
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
# get a great understanding of the code itself by simply sending
|
19
19
|
# or pasting this whole file into you favorite AI for coding with
|
20
20
|
# a prompt like this: "Help me understand every part of this code".
|
21
|
-
@version = '6.0.
|
21
|
+
@version = '6.0.9' # Fixed timeout issue for GUI applications launched via command mode
|
22
22
|
|
23
23
|
# SAVE & STORE TERMINAL {{{1
|
24
24
|
ORIG_STTY = `stty -g`.chomp
|
@@ -4118,7 +4118,13 @@ def command_mode # {{{3
|
|
4118
4118
|
refresh
|
4119
4119
|
render
|
4120
4120
|
else
|
4121
|
-
|
4121
|
+
# Check if it's a GUI application that should run without timeout
|
4122
|
+
gui_apps = ['evince', 'xdg-open', 'firefox', 'chrome', 'chromium', 'eog', 'nautilus', 'thunar', 'gedit', 'code', 'subl']
|
4123
|
+
prog_base = File.basename(prog.to_s)
|
4124
|
+
is_gui = gui_apps.include?(prog_base)
|
4125
|
+
|
4126
|
+
# Use nil timeout (wait forever) for GUI apps, 10 seconds for others
|
4127
|
+
shellexec(cmd, timeout: is_gui ? nil : 10)
|
4122
4128
|
@pR.refresh
|
4123
4129
|
@pR.update = false
|
4124
4130
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rtfm-filemanager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.0.
|
4
|
+
version: 6.0.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Geir Isene
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-07-
|
11
|
+
date: 2025-07-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rcurses
|
@@ -53,7 +53,7 @@ dependencies:
|
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '7.4'
|
55
55
|
description: |-
|
56
|
-
RTFM v6.0.
|
56
|
+
RTFM v6.0.9: Fixed timeout issue for GUI applications launched via command mode (e.g., evince, xdg-open).
|
57
57
|
A full featured terminal browser with syntax highlighted files, images shown in the terminal, videos thumbnailed, etc. Features include remote SSH/SFTP browsing, interactive SSH shell, comprehensive undo system, bookmarks, and much more. You can bookmark and jump around easily, delete, rename, copy, symlink and move files. RTFM is one of the most feature-packed terminal file managers.
|
58
58
|
email: g@isene.com
|
59
59
|
executables:
|