Skip to content

Commit 68015d3

Browse files
committed
Updated changelog
Cleanup old files
1 parent d6ef879 commit 68015d3

8 files changed

Lines changed: 15 additions & 54 deletions

File tree

.vscodeignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
.vscode/**
2-
.vscode-test/**
2+
.gitattributes
33
.gitignore
4-
vsc-extension-quickstart.md
5-
src/
64
NOTES.txt
75
OPENVSXRegistry.md
86
tsconfig.json
9-
tslint.json
7+
src/
8+
**/*.map
9+
**/*.ts
1010
**/Makefile

CHANGELOG.md

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

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

5+
## 0.11.5
6+
7+
* Fix for spaces in paths and filenames in batari Basic compiliation (Linux/MacOS)
8+
* Internal code re-organisation and optimisations
9+
510
## 0.11.4
611

712
* Updated Learning Center so when you open a sample it's **core** document is also opened

out/compilers/compilerBase.js

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

out/compilers/compilerBase.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: 1 addition & 1 deletion
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.11.4",
5+
"version": "0.11.5",
66
"icon": "images/icon.png",
77
"preview": false,
88
"author": "mksmith",

src/compilers/compilerBase.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,9 +409,9 @@ export abstract class CompilerBase implements vscode.Disposable {
409409
// process?
410410
if (this.CheckProjectFolderAndFileForSpaces) {
411411
if (this.WorkspaceFolder.includes(' ')) {
412-
application.WriteToCompilerTerminal(`WARNING: The path of your project contains spaces which can sometimes cause issues. It's recommended to remove them to avoid potential problems.`);
412+
application.WriteToCompilerTerminal(`WARNING: The path of your project contains spaces which can potentially cause compilation issues.`);
413413
} else if (this.FileName.includes(' ')) {
414-
application.WriteToCompilerTerminal(`WARNING: The filename of your project file contains spaces which can sometimes cause issues. It's recommended to remove them to avoid potential problems.`);
414+
application.WriteToCompilerTerminal(`WARNING: The filename of your project file contains spaces which can potentially cause compilation issues.`);
415415
}
416416
}
417417
}

tslint.json

Lines changed: 0 additions & 15 deletions
This file was deleted.

vsc-extension-quickstart.md

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)