rtfm-filemanager 7.3.0 → 7.3.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 +4 -4
- data/bin/rtfm +6 -6
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '093129751d7817064ef4574c62f9c13e2c37f16e8cd33b4460348106f0539873'
|
|
4
|
+
data.tar.gz: f5d75638cf2cda6d05941a0d57644dbe65253ba9493afc6abc78812e5c755474
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4b77c9557d19bb63de13048e2f03a991e26b692bd1f24cea7cc3383899e6c14816e624f211f05f54903d662ce932640b0afc19fc9cc09e71321dd8d772b9dc97
|
|
7
|
+
data.tar.gz: 1971e0a8861185de393dc51f717729b3d70650c9dd670565aee8d6279d7bb6f4e5d75c8db15f5154c70fc29839c8d5cde498b4747b85b6fa4662c8df2cd405f2
|
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.3.
|
|
21
|
+
@version = '7.3.1' # Fixed image positioning and EXIF orientation
|
|
22
22
|
|
|
23
23
|
# SAVE & STORE TERMINAL {{{1
|
|
24
24
|
ORIG_STTY = `stty -g`.chomp
|
|
@@ -5641,18 +5641,18 @@ def showimage(image) # SHOW THE SELECTED IMAGE IN THE RIGHT WINDOW {{{2
|
|
|
5641
5641
|
if image == 'clear'
|
|
5642
5642
|
@termpix.clear(
|
|
5643
5643
|
x: @pR.x,
|
|
5644
|
-
y:
|
|
5645
|
-
width: @pR.w,
|
|
5646
|
-
height: @pR.h,
|
|
5644
|
+
y: 2,
|
|
5645
|
+
width: @pR.w - 1,
|
|
5646
|
+
height: @pR.h - 1,
|
|
5647
5647
|
term_width: @w,
|
|
5648
5648
|
term_height: @h)
|
|
5649
5649
|
@current_image_path = nil
|
|
5650
5650
|
else
|
|
5651
|
-
# Display image using termpix
|
|
5651
|
+
# Display image using termpix (use original absolute row 2)
|
|
5652
5652
|
img_path = File.absolute_path(image)
|
|
5653
5653
|
@termpix.show(img_path,
|
|
5654
5654
|
x: @pR.x,
|
|
5655
|
-
y:
|
|
5655
|
+
y: 2,
|
|
5656
5656
|
max_width: @pR.w - 2,
|
|
5657
5657
|
max_height: @pR.h - 1)
|
|
5658
5658
|
@current_image_path = img_path
|
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.3.
|
|
4
|
+
version: 7.3.1
|
|
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-10-
|
|
11
|
+
date: 2025-10-27 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rcurses
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '0.
|
|
33
|
+
version: '0.2'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '0.
|
|
40
|
+
version: '0.2'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: bootsnap
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -67,7 +67,7 @@ dependencies:
|
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '7.4'
|
|
69
69
|
description: |-
|
|
70
|
-
RTFM v7.3.
|
|
70
|
+
RTFM v7.3.1: Fixed image positioning and EXIF orientation handling via termpix 0.2.0.
|
|
71
71
|
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.
|
|
72
72
|
email: g@isene.com
|
|
73
73
|
executables:
|