Skip to content

Releases: clarketm/ncalc

v1.2.3

16 Aug 06:08
Compare
Choose a tag to compare
  • add support for octal and hexadecimal literals.

Example:

# Hexadecimal literal
$ ncalc --input hexadecimal --output decimal "0xff"
# decimal: 255

```bash
# Octal literal
$ ncalc --input octal --output decimal "010"
# decimal: 8

v1.1.3

07 Feb 23:17
Compare
Choose a tag to compare

Bug fix

  • fix broken tests in ascii package.

v1.1.2

02 Dec 10:56
Compare
Choose a tag to compare

Features

  • New option: -q | --quiet – suppress printing of output format type(s)

v1.0.2

01 Dec 23:19
Compare
Choose a tag to compare

Bug fix

v1.0.1

11 Nov 04:06
Compare
Choose a tag to compare

Bug fix

  • #1 Support for negative number conversions

v1.0.0

01 Aug 02:41
Compare
Choose a tag to compare

Features

  • Add (a)scii input/output format (default: alpha)
  • Add (b)inary input/output format
  • Add (o)ctal input/output format
  • Add (d)ecimal input/output format (default: numeric)
  • Add (h)exadecimal input/output format