Skip to content

Releases: TabulateJarl8/ti842py

Improve non-quote matching

20 May 18:23
Compare
Choose a tag to compare

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

19 May 16:13
Compare
Choose a tag to compare
v0.4.10

version

Bug fix

19 May 14:58
Compare
Choose a tag to compare

Initialize l1-l6 lists with [None for _ in range(0, 999)]

Bug fix

18 May 15:53
Compare
Choose a tag to compare
v0.4.8

edge case fix

List subscripting

18 May 15:50
Compare
Choose a tag to compare

Add list subscripting. Example: l1(2) -> l1[1]

Fix Text() and add dayOfWk

18 May 14:46
Compare
Choose a tag to compare

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

16 May 02:00
Compare
Choose a tag to compare

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

15 May 21:38
Compare
Choose a tag to compare

Implement most graph drawing features with the use of graphics.py

Use file in /tmp instead of in PWD

22 Apr 14:42
Compare
Choose a tag to compare

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

21 Apr 23:46
Compare
Choose a tag to compare

Add support for randInt with 2 or 3 arguments