diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index d3dc432..2228e07 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -49,6 +49,7 @@ body: label: Driver Version description: What version of the driver are you running? Check with `RPI a2version` options: + - 002C (fix nano editor) - 002B (fix keyboard delay) - 002A (reduce CPU usage) - 0029 (fix hang after shell exit) diff --git a/RaspberryPi/apple2driver/a2io/vt100.go b/RaspberryPi/apple2driver/a2io/vt100.go index 486f35e..a87e32c 100644 --- a/RaspberryPi/apple2driver/a2io/vt100.go +++ b/RaspberryPi/apple2driver/a2io/vt100.go @@ -234,7 +234,7 @@ func readCharacter(comm A2Io) (string, error) { case 0x08: // left s = "\033OD" case 0x0d: // return - s = string(byte(0x0a)) + s = string(byte(0x0d)) } } else { switch b { @@ -247,7 +247,7 @@ func readCharacter(comm A2Io) (string, error) { case 0x08: // left s = "\033[D" case 0x0d: // return - s = string(byte(0x0a)) + s = string(byte(0x0d)) } } } diff --git a/RaspberryPi/apple2driver/info/version.go b/RaspberryPi/apple2driver/info/version.go index 71e5e5b..da066df 100644 --- a/RaspberryPi/apple2driver/info/version.go +++ b/RaspberryPi/apple2driver/info/version.go @@ -8,4 +8,4 @@ package info // Version is the hexadecimal version number that // should be incremented with each driver update -const Version = "002B" +const Version = "002C"