Releases: p4wnsolo/p4wnsolo-joyterm
Releases · p4wnsolo/p4wnsolo-joyterm
v0.211223-alpha.3
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
The wrapper file (go.py) was changed to be cross-platform (gets HOME folder)
v0.211215-alpha
This is first (pre)release of p4wnsolo-joyterm.
Known issues with this release:
- 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())