Releases: adafruit/circuitpython-repl-js
Bug Fixes
This release includes bug fixes regarding reading text files and has improved debugging by outputting python errors to the console.
Refactored to use RawPaste Mode
This is likely a breaking release. This release is a major change that refactors nearly all of the code by using RawPaste Mode as well as adding file operations.
Fixed bug in onSerialReceive
This release fixes an issue that modified the event data in onSerialReceive. This is only an issue if the event data is reused.
Display error when timed out
This updates the package version as well.
Fixed a bug where code sometimes was interrupted
This resolves a bug where code was sometimes interrupted. Since CircuitPython now uses any key to get to the REPL, it was moved over to using CRLF which doesn't interrupt code. It may be useful in the future to attempt to interrupt running code, so a new interruptCode()
function was added to do what getToPrompt()
was doing previously.
Bug Fixes and Additional Info Parsing
This resolves a bug where some of the output was dropped if more than 1 CRLF was sent at a time. It also adds some simple version and ip address parsing from the board title.
Line Ending is now Settable
Using the function setLineEnding()
, the code output line ending can be changed. It was also set to LF instead of CRLF by default.
Initial Release
Initial files