rtfm-filemanager 7.3.3 → 7.3.4
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 +3 -1
- 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: b7fda1f5461bae4662b7ede88c67251c73e959dc480a3568d53e1f11cc061ee7
         | 
| 4 | 
            +
              data.tar.gz: 51d4cf06be62c4c8dcc301acf1374b9f9c258df78291818213d3f9539f8b036d
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 9b5fdf8dd7cc1bdba3b43eae0f9c1dc1beeaa14541c8647f90370a3440b8e3b73fa56a08b8030c9af22e694df7dde4dea9cee5a382736ef92004b475d52a02bf
         | 
| 7 | 
            +
              data.tar.gz: 6bb8bdb7c7fa5157e080ac3e718255570a7ac42bb8525576484d654d3b52dfd47016a24c5bf57f1dab90f897c48de043ed56c4cf59156d9c6f433e785c186ae7
         | 
    
        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.4' # Critical bugfix for permanent delete
         | 
| 22 22 |  | 
| 23 23 | 
             
            # SAVE & STORE TERMINAL {{{1
         | 
| 24 24 | 
             
            ORIG_STTY = `stty -g`.chomp
         | 
| @@ -3332,6 +3332,8 @@ def delete_items # {{{3 | |
| 3332 3332 | 
             
                    # Only add to undo history if operation succeeded and we can undo it
         | 
| 3333 3333 | 
             
                    add_undo_operation(undo_info)
         | 
| 3334 3334 | 
             
                  else
         | 
| 3335 | 
            +
                    # Permanent deletion
         | 
| 3336 | 
            +
                    esc = paths.map { |p| Shellwords.escape(p) }.join(' ')
         | 
| 3335 3337 | 
             
                    command("rm -rf #{esc}")
         | 
| 3336 3338 | 
             
                    # Cannot undo permanent deletion, so don't add to undo history
         | 
| 3337 3339 | 
             
                  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: 7.3. | 
| 4 | 
            +
              version: 7.3.4
         | 
| 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-28 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.3. | 
| 70 | 
            +
              RTFM v7.3.4: Critical bugfix for permanent delete operation.
         | 
| 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:
         |