Skip to content

Commit

Permalink
prepare version 2.08
Browse files Browse the repository at this point in the history
  • Loading branch information
wofr06 committed Jun 26, 2023
1 parent 0cf95c9 commit 0d71d52
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
****************************************************************************
# ChangeLog for lesspipe.sh #
****************************************************************************
Version 2.08 Jun 26 2023
- protect file names in tar from being used as options
- support the device tree blob file format
- many changes for colored output
- fix template for creating a lesspipe rpm
- fix vimcolor hang due to wrong vim CLI arguments
- increase the file portion to read from STDIN to recognize its type
- do not call mediainfo on STDIN input
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# lesspipe.sh, a preprocessor for less

Version: 2.07
Version: 2.08
Author : Wolfgang Friebel [[email protected]](mailto://[email protected])
License: GPL

Expand Down
4 changes: 2 additions & 2 deletions lesspipe.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# lesspipe.sh, a preprocessor for less
lesspipe_version=2.07
lesspipe_version=2.08
# Author: Wolfgang Friebel (wp.friebel AT gmail.com)
#( [[ -n 1 && -n 2 ]] ) > /dev/null 2>&1 || exec zsh -y --ksh-arrays -- "$0" ${1+"$@"}

Expand Down Expand Up @@ -626,7 +626,7 @@ isarchive () {
tar|bsdtar)
[[ "$2" =~ ^[a-z_-]*:.* ]] && echo "$2: remote operation tar host:file not allowed" && return
if [[ "$3" =~ --* ]]; then
$prog Oxf "$2" "\\$3" 2>/dev/null
$prog Oxf "$2" "--" "$3" 2>/dev/null
else
$prog Oxf "$2" "$3" 2>/dev/null
fi
Expand Down

0 comments on commit 0d71d52

Please sign in to comment.