rtfm-filemanager 7.0.11 → 7.0.12
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 +6 -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: 7c936aa089f19d7eab63bb507c4405e8ab06ff6edf4d10f29995f45b108b224f
|
4
|
+
data.tar.gz: 16d500cab0353f09330b818af27b6930f8e71c433c11d19153336a2367bccaeb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 48d191cbc07c69e5d4bd293fc9e75ec6952d72c8da2e11e5ef9312072d055a137172e1b87e6088f8076dcefc5a6d24d2ff0966a5f1322c0ba15255b48a574d95
|
7
|
+
data.tar.gz: 277886019de3d3502c7d5577117a46e7936f8f8faeea9615cefa4602175d7f0cfa43d17076f52416aac1df3f64352e9c67d69ea435dd1ddb7552ff2c9475778e
|
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 = '7.0.
|
21
|
+
@version = '7.0.12' # Fixed escape code residue in bottom pane during rapid key presses
|
22
22
|
|
23
23
|
# SAVE & STORE TERMINAL {{{1
|
24
24
|
ORIG_STTY = `stty -g`.chomp
|
@@ -4758,7 +4758,11 @@ def render # RENDER ALL PANES {{{2
|
|
4758
4758
|
info = " Showing only file types '#{@lsfiles}'".fg(129).u if @lsfiles =~ /,/
|
4759
4759
|
info += " and only files matching '#{@lsmatch}'".fg(129).u if @lsfiles != '' && @lsmatch != ''
|
4760
4760
|
@pB.text = info
|
4761
|
-
|
4761
|
+
# Ensure screen output is complete before continuing
|
4762
|
+
if @pB.text != bottomtext
|
4763
|
+
@pB.refresh
|
4764
|
+
STDOUT.flush
|
4765
|
+
end
|
4762
4766
|
end
|
4763
4767
|
end
|
4764
4768
|
|
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: 7.0.
|
4
|
+
version: 7.0.12
|
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-
|
11
|
+
date: 2025-09-02 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 v7.0.
|
56
|
+
RTFM v7.0.12: Fixed escape code residue in bottom pane during rapid key presses.
|
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:
|