Skip to content

Releases: p4wnsolo/p4wnsolo-joyterm

v0.211223-alpha.3

23 Dec 15:56
0a00ec2
Compare
Choose a tag to compare
v0.211223-alpha.3 Pre-release
Pre-release

Updated Dec 23, 2021

  • Fixed "wrong file path" issue with go.py
  • Added feature to allow input of Commands of any length (the input now scrolls as new characters are added)

v0.2112152-alpha

15 Dec 23:24
3187e05
Compare
Choose a tag to compare
v0.2112152-alpha Pre-release
Pre-release

The wrapper file (go.py) was changed to be cross-platform (gets HOME folder)

v0.211215-alpha

15 Dec 21:58
508f8dd
Compare
Choose a tag to compare
v0.211215-alpha Pre-release
Pre-release

This is first (pre)release of p4wnsolo-joyterm.

Known issues with this release:

  1. This was developed on RPi Zero 2 running Raspberry Pi OS. And the HOME folder is hard-coded into the code.
    So if using on P4wnP1, you'll need to edit the .py files to reflect your HOME folder.

But instead of doing that, I'll just add the proper code now to make the scripts cross-platform. Then I'll make a new release.
Here's the code to get the HOME folder on any platform:

from pathlib import Path
home = str(Path.home())