./sysutils/hexyl, Command-line hex viewer

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: CURRENT, Version: 0.16.0, Package name: hexyl-0.16.0, Maintainer: pin

hexyl is a simple hex viewer for the terminal. It uses a colored output
to distinguish different categories of bytes (NULL bytes, printable
ASCII characters, ASCII whitespace characters, other ASCII characters
and non-ASCII).


Master sites:

Filesize: 41.822 KB

Version history: (Expand)


CVS history: (Expand)


   2024-12-27 22:25:14 by pin | Files touched by this commit (3) | Package updated
Log message:
sysutils/hexyl: update to 0.16.0

Features

    New --print-color-table option, see #229 (@sahinfalcon)

Bugfixes

    Throw an error when try to view a directory, see #234 (@Integral-Tech)
   2024-10-30 19:49:29 by pin | Files touched by this commit (3) | Package updated
Log message:
sysutils/hexyl: update to 0.15.0

Features
    Add codepage 1047 for EBCDIC, see #226 (@v1gnesh)

Other
    Rewrite CLI using the derive API, see #225 (@sorairolake)
   2023-12-17 07:58:48 by pin | Files touched by this commit (3) | Package updated
Log message:
sysutils/hexyl: update to 0.14.0

Features
 - New --character-table option, with the ability to use codepage 437,
   see #194 and #195 (@sharifhsn)
 - New --character-table=ascii option for a ASCII-only character table,
   see #212 and #36 (@sharkdp)

Bugfixes
 - Show output when doing hexyl /dev/zero, see #211 (@sharifhsn)
 - Respect NO_COLOR environment variable, see #210 (@sharkdp)
   2023-09-13 10:10:40 by pin | Files touched by this commit (2)
Log message:
sysutils/hexyl: generate manpage when building
   2023-09-10 20:34:07 by pin | Files touched by this commit (3)
Log message:
sysutils/hexyl: install man page
   2023-07-26 21:37:47 by pin | Files touched by this commit (3) | Package updated
Log message:
sysutils/hexyl: update to 0.13.1

v0.13.1
Bugfixes
 - Correctly handle discontinuous input (stdin), see #196 and #197 (@sharifhsn)
   2023-05-11 11:43:25 by pin | Files touched by this commit (2) | Package updated
Log message:
sysutils/hexyl: update to 0.13.0

Features
 - Support both little and big Endian dumps using --endianness={little,big},
 see #189 and #104 (@RinHizakura)

Changes
 - Breaking: Changed the meaning of the short flag -C to be consistent with
 hexdump -C. Previously, this would hide the character panel, but now -C shows
 the character panel, in case it has been previously (e.g. in an alias)
 disabled with --no-characters, see #187 (@sharkdp)

hexyl as a library
 - New endianness method for PrinterBuilder
   2022-12-08 11:55:17 by pin | Files touched by this commit (3) | Package updated
Log message:
sysutils/hexyl: update to 0.12.0

Features
 - Only show one panel by default if the terminal width is not wide enough for
   two panels, see #182 (@sharkdp)
 - Respect the NO_COLOR environment variable, see #179 (@sharifhsn)

Bugfixes
 - Do not fail with an error if --panels=auto is used and the output is piped,
   see #184 (@sharkdp)

Changes
 - Breaking: For xxd-compatibility reasons, --group_bytes has been renamed
   to --group-size (with an --groupsize alias), see #121 (@sharkdp)

hexyl as a library
 - Breaking: num_group_bytes has been renamed to group_size.