Releases: TabulateJarl8/ti842py
Improve non-quote matching
Improve matching things that are not inside of quotes, i.e. a string.
Rule: toString -> str
X = toString(3) -> X = str(3)
Disp "toString(3)" -> Disp "toString(3)"
More bug fixes
v0.4.10 version
Bug fix
Initialize l1
-l6
lists with [None for _ in range(0, 999)]
Bug fix
v0.4.8 edge case fix
List subscripting
Add list subscripting. Example: l1(2)
-> l1[1]
Fix Text() and add dayOfWk
Since the TI-84+ CE's Text()
function renders the text where the point provided is the top left corner, and graphics.py renders it where the point provided is the center, the point is now adjusted to work with graphics.py but still have the same effect.
Added dayOfWk()
function in getDateTime.py
Bug Fixes
Fixed some getKey
keys not working, and fixed Repeat
handling. Added Fail Safe for unknown colors in tiColorToGraphicsColor
and set 1-9 to blue
and 0 to white
to mimic TI-84+ CE behavior
Implement draw features
Implement most graph drawing features with the use of graphics.py
Use file in /tmp instead of in PWD
When the --run
argument is supplied without the -o
argument, the transpiled file is now located in the system's temporary directory
Support for randInt
Add support for randInt
with 2 or 3 arguments