rtfm-filemanager 3.30 → 3.32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b639327d67faed186b2ec530f4bb665ef85fdec299bbdbaabb599d2b74ea7f67
4
- data.tar.gz: 6dc2a2c89f7feab66434c378aadcb34c0cf94d83cddf5354045389c238a7e7e2
3
+ metadata.gz: e993983d6be7d6b0356d33ebce27d69fb5c1c631d5fa44da8037c69d6b30cbdd
4
+ data.tar.gz: 9cb4e04034f71a64ec2cbc12e0b441316f22211eef2b312bca8da7c6f1fa956d
5
5
  SHA512:
6
- metadata.gz: d2b8c1691faab4720727b5fe0bcd695651e19b265a7a0ea8530df08eb1dcf6d86fd8b27ff7bcc11f892731a170c4bb458ecda15cd9a145226813b3dcb873ede1
7
- data.tar.gz: 5ffa3ba36e7c965831961aefb7ef5ae869e228db26464b07d7c81c7fdeebe3985daf5dd56bfc435c253a62da107b90ad45413fc05e10780c2dc6d860573e6129
6
+ metadata.gz: ad63a0f9c1758410a9a878ab4e8814b17d0556507448b1f83228121580a5bd704110d0480f4cbd7927689257bb1456fa90262951ac9f8f3b246a7d20c2262859
7
+ data.tar.gz: 2ec5a0f594b9bd8d174d875ca7bc489b64a87fe6a62718410bdaac7fe3c4f630af4ea21b0510f4f01ca2e24dae07534cfc972dac8c4ad65e2cadf9712a626e9d
data/README.md CHANGED
@@ -4,16 +4,18 @@
4
4
 
5
5
  What other features can I cram into this file manager?
6
6
 
7
- ## What?
8
- RTFM is a file manager for the terminal written in Ruby. It lets you browse
9
- directories and view the content of directories and files. Files are syntax
10
- highlighted, images are shown in the terminal, videos are thumbnailed, etc.
11
- You can bookmark and jump around easily, delete, rename, copy, symlink and
12
- move files. RTFM has a a wide range of other features. Read on for what it can
13
- do. RTFM consists of just one executable file and thereby easily ported across
14
- systems.
15
-
16
- Note: RTFM works best with the (u)rxvt, xterm and Eterm terminal emulators.
7
+ ## What?
8
+
9
+ <img src="img/logo.jpg" align="left" width="150" height="150"> RTFM is a
10
+ terminal file manager jam packed with features.
11
+
12
+ Apart from viewing and manipulating directories, you get syntax highlighting
13
+ of file content, image and video thumbnailing in the terminal, OpenAI
14
+ integration, system info panel, git status, fzf and navi integration and much,
15
+ much more.
16
+
17
+ Note: RTFM (Ruby Terminal File Manager) works best with the (u)rxvt, xterm and
18
+ Eterm terminal emulators.
17
19
 
18
20
  ## Features
19
21
 
data/bin/rtfm CHANGED
@@ -14,7 +14,7 @@
14
14
  # for any damages resulting from its use. Further, I am under no
15
15
  # obligation to maintain or extend this software. It is provided
16
16
  # on an 'as is' basis without any expressed or implied warranty.
17
- @version = "3.3"
17
+ @version = "3.32" # Fixed forking upon opening external apps
18
18
 
19
19
  # PRELIMINARIES
20
20
  @help = <<HELPTEXT
@@ -1152,10 +1152,10 @@ def open_selected(html = nil) # OPEN SELECTED ITEM (when pressing RIGHT)
1152
1152
  else
1153
1153
  if @runmailcap
1154
1154
  #Thread.new { system("run-mailcap #{@selected_safe} 2>/dev/null") }
1155
- system("run-mailcap #{@selected_safe} 2>/dev/null")
1155
+ system("run-mailcap #{@selected_safe} & 2>/dev/null")
1156
1156
  else
1157
1157
  #Thread.new { system("xdg-open #{@selected_safe} 2>/dev/null") }
1158
- system("xdg-open #{@selected_safe} 2>/dev/null")
1158
+ system("xdg-open #{@selected_safe} & 2>/dev/null")
1159
1159
  end
1160
1160
  end
1161
1161
  @break = true
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: '3.30'
4
+ version: '3.32'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Geir Isene
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-27 00:00:00.000000000 Z
11
+ date: 2024-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: curses
@@ -47,8 +47,7 @@ dependencies:
47
47
  description: 'A full featured terminal browser with syntax highlighted files, images
48
48
  shown in the terminal, videos thumbnailed, etc. You can bookmark and jump around
49
49
  easily, delete, rename, copy, symlink and move files. RTFM has a a wide range of
50
- other features. New in 3.30: Updated default OpenAI model and adding the option
51
- to add own by setting @aimodel in .rtfm.conf.'
50
+ other features. New in 3.32: Fixed forking upon opening external apps.'
52
51
  email: g@isene.com
53
52
  executables:
54
53
  - rtfm
@@ -57,7 +56,7 @@ extra_rdoc_files: []
57
56
  files:
58
57
  - README.md
59
58
  - bin/rtfm
60
- - rtfm-kb.png
59
+ - img/rtfm-kb.png
61
60
  homepage: https://isene.com/
62
61
  licenses:
63
62
  - Unlicense
File without changes