Skip to content

Releases: sharkdp/hexyl

v0.14.0

11 Dec 22:33
7a9234c
Compare
Choose a tag to compare

Features

Bugfixes

Full Changelog: v0.13.1...v0.14.0

v0.13.1

26 Jul 06:59
Compare
Choose a tag to compare

Bugfixes

v0.13.0

10 May 20:40
Compare
Choose a tag to compare

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

v0.12.0

07 Dec 22:50
Compare
Choose a tag to compare

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.

v0.11.0

05 Dec 09:01
Compare
Choose a tag to compare

Features

  • Significantly improved performance, see #173 and #176 (@sharifhsn)
  • Added variable panels through the --panels and --terminal-width flags, see #13 and #164 (@sharifhsn)
  • Added new --group-bytes/-g option, see #104 and #170 (@RinHizakura)
  • Added new --base B option (where B can be binary, octal, decimal or hexadecimal), see #147 and #178 (@sharifhsn)
  • Show actual zero bytes as in the character panel (previously: 0), in order not to confuse them with ASCII
    0 bytes if colors are deactivated. Closes #166 (@sharkdp)

hexyl as a library

  • Breaking change: Printer::new is deprecated as a part of the public API. Alternatively, you can now construct a Printer using the PrinterBuilder builder API, see #168. (@sharifhsn)

Other

Thank you

Special thanks go to @sharifhsn, not just for the new features,
bugfixes and performance improvements. But also for many internal
improvements of the code base and other maintenance tasks.

v0.10.0

22 May 20:35
Compare
Choose a tag to compare

Features

  • Added new --plain, --no-characters, and --no-position flags, see #154 (@mkatychev)
  • Allow hex numbers and units for --block-size argument, see #111 and #144 (@merkrafter)

Other

v0.9.0

11 Jul 18:10
Compare
Choose a tag to compare

Changes

  • Breaking change (binary): setting the -o/--display-offset flag no longer overrides the value set by --skip #115. The first displayed address is now the sum of the two values - this matches the behaviour of xxd.

Features

  • Allow relative and negative byte offsets (e.g. hexyl --skip=-1block), see #99 (@ErichDonGubler)
  • Added -l as another alias for '-n/--length' (xxd compatibility), see #121 and #135 (@TheDoctor314)

Bugfixes

  • Argument --length silently takes precedence over --bytes, see #105
  • Print warning on empty content, see #107 and #108
  • Disallow block sizes of zero, see #110
  • Fix newline appearing in --version output, see #131 and #133 (@scimas)

Other

Packaging

v0.8.0

07 Jun 13:31
Compare
Choose a tag to compare

Features

  • A new --skip <N> / -s <N> option can be used to skip the first N bytes of the input, see #16, #88 (@Tarnadas, @MaxJohansen, @ErichDonGubler)
  • The --length/--bytes/--skip/--display-offset options can now take units for their value argument, for example:
    hexyl /dev/random --length=1KiB
    hexyl $(which hexyl) --skip=1MiB --length=10KiB
    Both decimal SI prefixes (kB, MB, …) as well as binary IEC prefixes (KiB, MiB, …) are supported.
    In addition, there is a new --block-size <SIZE> option that can be used to control the size of the block unit:
    hexyl /dev/random --block-size=4kB --length=2block
    See: #44 (@ErichDonGubler and @aswild)

Other

Packaging

  • hexyl is now available on Void Linux, see #91 (@notramo)

v0.7.0

09 Mar 20:17
692ff64
Compare
Choose a tag to compare

Bugfixes

  • hexyl can now be closed with Ctrl-C when reading input from STDIN, see #84

Changes

v0.6.0

08 Oct 18:46
Compare
Choose a tag to compare

Features

  • hexyl can now be used as a library, see #67 (@tommilligan)

  • Added a new -o/--display-offset option to add a certain offset to the
    reported file positions, see #57 (@tommilligan)

Bugfixes

Other

  • Performance improvements, see #73 and #66