Skip to content

Commit 429d4d5

Browse files
committed
Updated 7800GD serial application
1 parent 434f716 commit 429d4d5

File tree

6 files changed

+16
-8
lines changed

6 files changed

+16
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
The following enhancements and changes have been made to Atari Dev Studio:
44

5+
## 0.9.3
6+
7+
* Updated serial application debug for 7800GD developers (thanks saint)
8+
59
## 0.9.2
610

711
* Updated 7800basic to v0.30 (Windows, Linux, macOS)

out/bin/serial/7800gd/7800cmd.exe

0 Bytes
Binary file not shown.

out/serial/SeventyEightHundredGDSerial.js

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

out/serial/SeventyEightHundredGDSerial.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "atari-dev-studio",
33
"displayName": "Atari Dev Studio",
44
"description": "Homebrew game creation for the Atari 8-bit consoles",
5-
"version": "0.9.2",
5+
"version": "0.9.3",
66
"icon": "images/icon.png",
77
"preview": false,
88
"author": "mksmith",
@@ -462,12 +462,7 @@
462462
}
463463
},
464464
"activationEvents": [
465-
"*",
466-
"onCommand:extension.openWelcomePage",
467-
"onCommand:extension.buildGame",
468-
"onCommand:extension.buildGameAndRun",
469-
"onCommand:extension.killBuildGame",
470-
"onCommand:extension.openSpriteEditor"
465+
"onStartupFinished"
471466
],
472467
"main": "./out/extension.js",
473468
"scripts": {

src/serial/SeventyEightHundredGDSerial.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ export class SeventyEightHundredGDSerial extends SerialBase {
3737
// Prepare
3838
let result = true;
3939

40+
// Sanitize output
41+
// need to remove +\b from mesages (looks a bit nicer)
42+
var pattern = /[+][\b]+/gi;
43+
stdout = stdout.replace(pattern,"");
44+
4045
// Result
4146
application.CompilerOutputChannel.append('' + stdout);
4247
return result;

0 commit comments

Comments
 (0)