Skip to content

Commit

Permalink
fixed initialConfiguration + patch release
Browse files Browse the repository at this point in the history
  • Loading branch information
Herbert-Karl committed Apr 9, 2020
1 parent 0907989 commit e2b4bbb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

All notable changes to the "digital-asm" extension will be documented in this file.

## 0.4.0 - tbd
## 0.4.1 - 09.04.2020

* fixed initalConfiguration

## 0.4.0 - 08.04.2020

* parsing command now also generates a .map file next to the .hex and .lst files
* implemented Debugging for .asm files utilizing the Debug Adapter Protocol
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "digital-asm",
"displayName": "Digital Assembler",
"description": "Plugin offering code completion, compiling, executing and single step debugging for asm files used with Digital",
"version": "0.4.0",
"version": "0.4.1",
"publisher": "Herbert-Karl",
"author": {
"name": "Herbert Bärschneider"
Expand All @@ -22,6 +22,7 @@
"assembler, digital"
],
"preview": true,
"qna": false,
"main": "./out/extension.js",
"activationEvents": [
"onLanguage:asm"
Expand Down Expand Up @@ -124,7 +125,7 @@
"request": "launch",
"name": "Ask for file name",
"file": "${workspaceFolder}/${command:AskForFileName}",
"stopOnEntry": "true"
"stopOnEntry": true
}
],
"configurationSnippets": [
Expand All @@ -135,8 +136,8 @@
"type": "digital-conn",
"request": "launch",
"name": "Debugging",
"file": "^\"\\${workspaceFolder}/\\${command:AskForProgramName}\"",
"stopOnEntry": "true"
"file": "^\"\\${workspaceFolder}/\\${command:AskForFileName}\"",
"stopOnEntry": true
}
}
],
Expand Down

0 comments on commit e2b4bbb

Please sign in to comment.