Releases: alt-romes/programmer-calculator
v3.0
Release v2.2
Added coloured interface through the flag --colors
(-c
)
pcalc v2.1
Additionally support x
as hex notation (i.e. x2A
== 0x2A
)
Fix resizing issues
Fix to also allow uppercase characters in hex notation
Programmer Calculator v2.0.1
Minor patch
Programmer Calculator v2.0
This is a big update! This release:
Adds expressions with priorities (2+2*3
now equals 8
)
Adds parenthesis for grouping expressions ((2+2)*3 works and is now equal to
12`)
Adds ability to navigate input left and right to edit
Adds negative numbers ((-1)
is now a valid input, and so is 2+(-1)
or even 2+-1
)
- however, note if a
-
is the first character of the input, it's assumed to be a subtraction from the current amount. (If the current value is5
and you input-1
the result will be4
)
Fixes other bugs :)
Programmer Calculator v1.8
Fix severe compile bug
Programmer Calculator v1.7
Fix bug with change bits
Programmer Calculator v1.6
This release allows you to input inline math (without priorities) (i.e. 0x13+135-0b101 < 1)
It also adds a command to exit the calculator.
It also fixes minor bugs, and memory leaks
Programmer Calculator v1.5
This update brings history scrolling with the arrow keys
Programmer Calculator v1.4
Fix mistakes