rtfm-filemanager 7.4.1 → 7.4.2

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: b14592985e916f098fa5cd315891cbfe528408b206dde1a2bf38ca30f7c61f2d
4
- data.tar.gz: 96757864620b16e89a965cca06635d428fdfa16d290c4c366fd0a1c0e602a41c
3
+ metadata.gz: '018b8cadf670850bb5da46914425bf65bed256bf533619cde79a86981fedd86d'
4
+ data.tar.gz: 8108aecb15519303db63c76ff43fbf4cf3bedc328ddfb5feaaed9f976cbdb109
5
5
  SHA512:
6
- metadata.gz: ef0b6f71dadfa936491fc8974e2ed57256276592de9e48fd52be80f5d4d2d35084fb42e9a718a52e22a3020573fd19296d714ef2ee3355cb2ea4b46688ce73a3
7
- data.tar.gz: 3cd2798f1d8aba4016150914be9936fb052b30dc10fb2727f48edf3cf88ae096e633f790dc7d7855fc9005244b828e8990ae42989303d3b35071248da0000dd1
6
+ metadata.gz: 8b2bf86a29246f99523f33a4d0ce2350acf541eae64dcdfe98be8f0623ec0869b3f534df0e6dda28c9e22f762c395ccfaba5d212ea2abe256b791c1c330422f3
7
+ data.tar.gz: 149c13f402fd5a757d427cd5c93dc450baaf9a5bf002cc40594a09a48c721ad076b3ffca56308cf0731d35ba713e9c429ed4853e38db1631becf751e3cd56ada
data/README.md CHANGED
@@ -29,6 +29,16 @@ After first run, use `r` command to launch RTFM and exit into your current direc
29
29
 
30
30
  ---
31
31
 
32
+ ## Screenshots
33
+
34
+ | OpenAI File Analysis | Interactive AI Chat |
35
+ |:---:|:---:|
36
+ | ![AI analyzing a PDF](img/screenshot-ai-file.png) | ![AI chat mode](img/screenshot-ai-chat.png) |
37
+ | **Syntax Highlighting** | **System Information** |
38
+ | ![Ruby code highlighting](img/screenshot-syntax.png) | ![System stats (press S)](img/screenshot-system.png) |
39
+
40
+ ---
41
+
32
42
  ## Table of Contents
33
43
 
34
44
  - [Key Features](#key-features)
@@ -105,6 +115,17 @@ sudo apt install ruby-full x11-utils xdotool bat pandoc poppler-utils \
105
115
  gem install rtfm-filemanager
106
116
  ```
107
117
 
118
+ #### ArchLinux/derivatives
119
+ ```bash
120
+ sudo pacman -Syu ruby bat pandoc poppler odt2txt docx2txt unzip gnumeric catdoc w3m imagemagick ffmpegthumbnailer p7zip libreoffice-fresh
121
+ gem install rtfm-filemanager
122
+ ```
123
+
124
+ Note: catppt is not available in official repos, but RTFM will fall back to using LibreOffice's soffice for .ppt files. For xls2csv, use an AUR helper:
125
+ ```
126
+ yay -Syu perl-xls2csv
127
+ ```
128
+
108
129
  #### macOS:
109
130
  ```bash
110
131
  brew install ruby imagemagick w3m bat pandoc poppler
@@ -390,16 +411,11 @@ RTFM includes built-in AI features powered by OpenAI's API for intelligent file
390
411
 
391
412
  ### Setup
392
413
 
393
- 1. **Install the ruby-openai gem:**
394
- ```bash
395
- gem install ruby-openai
396
- ```
397
-
398
- 2. **Get an API key:**
414
+ 1. **Get an API key:**
399
415
  - Sign up at https://platform.openai.com/
400
416
  - Generate an API key from your account settings
401
417
 
402
- 3. **Configure RTFM:**
418
+ 2. **Configure RTFM:**
403
419
  Add your API key to `~/.rtfm/conf`:
404
420
  ```ruby
405
421
  @ai = "sk-your-actual-api-key-here"
@@ -407,6 +423,8 @@ RTFM includes built-in AI features powered by OpenAI's API for intelligent file
407
423
  @aicolor = 17 # Optional: chat pane background color
408
424
  ```
409
425
 
426
+ The `ruby-openai` gem is already included as a dependency when you install RTFM.
427
+
410
428
  ### Features
411
429
 
412
430
  #### File Description (Press `I`)
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.4.0' # Comprehensive documentation release
21
+ @version = '7.4.2' # LibreOffice soffice fallback for legacy MS Office formats + ArchLinux support
22
22
 
23
23
  # SAVE & STORE TERMINAL {{{1
24
24
  ORIG_STTY = `stty -g`.chomp
@@ -456,7 +456,7 @@ def display_welcome_message # {{{2
456
456
  • docx2txt - Viewing MS Word docx files
457
457
  • unzip - Viewing MS PowerPoint pptx files
458
458
  • ssconvert (from gnumeric) - Viewing MS Excel xlsx files
459
- • catdoc, xls2csv, catppt - Viewing older MS Office formats
459
+ • catdoc/xls2csv/catppt (with soffice fallback) - Viewing older MS Office formats
460
460
  • w3m, ImageMagick - Viewing images
461
461
  • ffmpegthumbnailer - Video thumbnails\n".fg(195)
462
462
  @firstrun += "
@@ -464,11 +464,15 @@ def display_welcome_message # {{{2
464
464
  @firstrun += "
465
465
  • Linux (Debian/Ubuntu): Use apt
466
466
  • Linux (Fedora/RHEL): Use dnf/yum
467
+ • Linux (ArchLinux): Use pacman
467
468
  • macOS: Use Homebrew (brew)
468
469
  • BSD: Use pkg or ports
469
470
 
470
471
  For Ubuntu/Debian users, install all dependencies with:
471
472
  sudo apt install ruby-full git libncurses-dev x11-utils xdotool bat pandoc poppler-utils odt2txt docx2txt unzip gnumeric catdoc w3m imagemagick ffmpegthumbnailer
473
+
474
+ For users of ArchLinux and derivatives, install all dependencies available outside of AUR with:
475
+ sudo pacman -Syu ruby git ncurses xdotool bat pandoc poppler odt2txt docx2txt unzip gnumeric catdoc w3m imagemagick ffmpegthumbnailer
472
476
 
473
477
  Note: Package names may vary between platforms. The 'libncurses-dev' package is Linux-specific.".b.fg(87)
474
478
  @firstrun += "\n\n
@@ -835,9 +839,9 @@ preview_specs = {
835
839
  'docx' => "docx2txt @s -",
836
840
  'xlsx' => "ssconvert -O 'separator= ' -T Gnumeric_stf:stf_assistant @s fd://1",
837
841
  'pptx' => "unzip -qc @s | ruby -e '$stdin.each_line{ |i| i.force_encoding(\"ISO-8859-1\").scan(/<a:t>(.+?)<\\/a:t>/).each{ |j| puts j } }'",
838
- 'doc' => "catdoc @s 2>/dev/null",
839
- 'xls' => "xls2csv @s 2>/dev/null",
840
- 'ppt' => "catppt @s 2>/dev/null",
842
+ 'doc' => "catdoc @s 2>/dev/null || soffice --headless --cat @s 2>/dev/null",
843
+ 'xls' => "xls2csv @s 2>/dev/null || soffice --headless --cat @s 2>/dev/null",
844
+ 'ppt' => "catppt @s 2>/dev/null || soffice --headless --cat @s 2>/dev/null",
841
845
  # compressed archives
842
846
  'zip' => "unzip -l @s",
843
847
  'tar' => "tar -tvf @s",
@@ -21,6 +21,14 @@ sudo apt install ruby-full x11-utils xdotool bat pandoc poppler-utils \
21
21
  gem install rtfm-filemanager
22
22
  ```
23
23
 
24
+ #### ArchLinux/derivatives
25
+ ```bash
26
+ sudo pacman -Syu ruby xdotool bat pandoc poppler odt2txt docx2txt unzip \
27
+ gnumeric catdoc w3m imagemagick ffmpegthumbnailer tar gzip bzip2 xz unrar p7zip libreoffice-fresh
28
+
29
+ gem install rtfm-filemanager
30
+ ```
31
+
24
32
  ### macOS
25
33
 
26
34
  ```bash
@@ -40,10 +40,13 @@ ruby --version
40
40
  # Update Ruby (Ubuntu)
41
41
  sudo apt install ruby-full
42
42
 
43
+ # Update Ruby (ArchLinux)
44
+ sudo pacman -Syu ruby
45
+
43
46
  # Update Ruby (macOS)
44
47
  brew install ruby
45
48
 
46
- # Or use rbenv/rvm for version management
49
+ # Or use rbenv/rvm/asdf for version management
47
50
  ```
48
51
 
49
52
  ## Display Issues
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.4.1
4
+ version: 7.4.2
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-04 00:00:00.000000000 Z
11
+ date: 2025-11-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rcurses
@@ -67,7 +67,7 @@ dependencies:
67
67
  - !ruby/object:Gem::Version
68
68
  version: '7.4'
69
69
  description: |-
70
- RTFM v7.4.1: Fixed directory cache not updating when files added/deleted externally.
70
+ RTFM v7.4.2: Added LibreOffice soffice fallback for legacy MS Office formats (.doc/.xls/.ppt) and comprehensive ArchLinux installation support.
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: