Skip to content

v4.5.0

Compare
Choose a tag to compare
@bornova bornova released this 09 Feb 06:07
· 156 commits to master since this release
9ee7142
  • Added option to choose output notation format. This replaces the "Always to use exponential" notation option. New options are:
    • 'auto' (default) Regular number notation for numbers having an absolute value between lower and upper bounds, and uses exponential notation elsewhere. Lower bound is included, upper bound is excluded. For example '123.4' and '1.4e7'.
    • 'exponential' - Always use exponential notation. For example '1.234e+2' and '1.4e+7'
    • 'engineering' - Always use engineering notation: always have exponential notation, and select the exponent to be a multiple of 3. For example '123.4e+0' and '14.0e+6'
    • 'fixed' - Always use regular number notation regardless of the exponential limits.
    • 'bin', 'oct', or 'hex' - Format the number using binary, octal, or hexadecimal notation. For example '0b1101' and '0x10fe'.
  • Deprecate web installer in favor of NSIS installer for Windows.
  • Minor bug fixes and UI improvements.