Skip to content

Commit 63bacf9

Browse files
committed
Moved Welcome Page console log state to bottom to show only unknown tags
Update changelog
1 parent d9a4233 commit 63bacf9

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

Diff for: CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The following enhancements and changes have been made to Atari Dev Studio:
1212
### Issues
1313
* #1 [UnderReview] - Added compiler notification to help with permission error when compiling dasm on macOS (thanks SmallRoomLabs)
1414
* #2 [Fixed] - Removed popup message (thanks SmallRoomLabs)
15-
* #3 [Fixed] - Updated breadcrumb to Settings to correcty path and catered for cross-platform (thanks SmallRoomLabs)
15+
* #3 [Fixed] - Updated breadcrumb to Settings to correct path and catered for cross-platform (thanks SmallRoomLabs)
1616
* #4 [Fixed] - Updated syntax highlighter (thanks SmallRoomLabs)
1717

1818
## 0.1.0

Diff for: out/pages/welcome.js

+3-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: out/pages/welcome.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: src/pages/welcome.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
import * as vscode from 'vscode';
33
import * as fs from 'fs';
44
import * as path from 'path';
5-
import opn = require('open');
65
import * as Application from '../application';
6+
import opn = require('open');
77

88
export class WelcomePage implements vscode.Disposable {
99

@@ -66,7 +66,6 @@ export class WelcomePage implements vscode.Disposable {
6666
// Capture command messages
6767
this.currentPanel.webview.onDidReceiveMessage(
6868
message => {
69-
console.log(`WelcomePage.openWelcomePage.command.${message.command}`);
7069
switch (message.command) {
7170
case 'openNewFile':
7271
this.openNewFileDocument("batariBasic");
@@ -128,6 +127,9 @@ export class WelcomePage implements vscode.Disposable {
128127
this.openGitHubIssue();
129128
return;
130129
}
130+
131+
// Unknown
132+
console.log(`Unknown Welcome Page command called: ${message.command}`);
131133
}
132134
);
133135

0 commit comments

Comments
 (0)