Skip to content

Releases: TLINDEN/tablizer

v1.2.3

13 Dec 09:40
Compare
Choose a tag to compare

Full Changelog: v1.2.2...v1.2.3

Fixes

  • fix #29: when trying to open a config file with a filename longer than 255 chars, a crash happened. Now an appropriate error message is printed.

v1.2.2

04 Nov 10:17
Compare
Choose a tag to compare

Full Changelog: v1.2.1...v1.2.2

*Bugfixes:

  • fix bug #27: if after parsing the number of columns and headers do not match, print an error.

v1.2.1

25 Sep 16:59
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.2.0...v1.2.1

v1.2.0

07 May 16:43
Compare
Choose a tag to compare

What's Changed

  • Refactored and cleaned up the code, made linter happier
  • Fixed bug where using -v w/o a pattern lead to zero output #12
  • Added -F feature to filter by [multiple] columns #13
  • Added highlight lines feature (-L). The colors can be configured in a config file:
    tablizer-hl
    Place the config file to ~/.config/tablizer/config or specify with -f path. Example config:
# supported  colors:
# black, blue,  cyan, darkGray, default, green,  lightBlue, lightCyan,
# lightGreen,   lightMagenta,   lightRed,   lightWhite,   lightYellow,
# magenta, red, white, yellow
BG             = "lightGreen"
FG             = "white"
HighlightBG    = "lightGreen"
HighlightFG    = "white"
NoHighlightBG  = "white"
NoHighlightFG  = "lightGreen"
HighlightHdrBG = "red"
HighlightHdrFG = "white"

The config file is HCL formatted.

Full Changelog: v1.1.0...v1.2.0

v1.1.0

22 Nov 13:20
6fccd12
Compare
Choose a tag to compare

What's Changed

  • add color table support (using alternating colorization of rows) using new flag -L
  • add config file support (HCL format) using ~/.config/tablizer/config or -f <file> so the user can customize colors
  • removed golang 1.17 support

Full Changelog: v1.0.17...v1.1.0

v1.0.17

02 Oct 16:20
9eadb94
Compare
Choose a tag to compare

What's Changed

  • added --no-headers (short: -H) flag to disable header display in tabular modes
  • added lisp plugin infrastructure (more docs still required though) using zygo, try:
    tablizer -l t/plugintest.zy < t/testtable2
  • added fuzzy match support (experimental)

Full Changelog: v1.0.16...v1.0.17

v1.0.16

03 May 16:39
Compare
Choose a tag to compare

v1.0.16 https://github.com/TLINDEN/tablizer/tree/v1.0.16 - 2023-05-03

Full Changelog: v1.0.15...v1.0.16

Fixed

  • --no-headers had no shortcut, added -H for it

v1.0.15

21 Apr 08:22
Compare
Choose a tag to compare

v1.0.15 https://github.com/TLINDEN/tablizer/tree/v1.0.15 - 2023-04-21

Full Changelog v1.0.14...v1.0.15

Fixed

  • fixed version generation

Added

  • added --no-headers flag to disable header display in tabular modes

v1.0.14

23 Jan 11:41
Compare
Choose a tag to compare

v1.0.14 - 2023-01-23

Full Changelog

Fixed

  • The -D parameter could not be used together with -a.

  • Fixed invalid argv handling: when the user wanted to read from stdin
    but gave an argument which was meant as a pattern, but also existed
    as a filename, then tablizer opened the file, ignored stdin.

  • Makefile indentation

Added

  • added licens notes about dependencies

  • using hard coded uniseq version, see actions#3396457307

  • updated dependencies (go module versions)

v1.0.13

03 Nov 18:33
Compare
Choose a tag to compare

v1.0.12 - 2022-11-03

Full Changelog

Added

  • Added command line flag to generate shell completion code

  • Added an animated demo gif to the README to demonstrate the tool

Fixed

  • The -A flag wasn't implemented (default output mode).

  • Fixed building from source on systems w/o perls pod tools,
    which is not requrired anyway since I always commit the latest
    manpage.