Skip to content

Commit

Permalink
Preparation for publish (#25)
Browse files Browse the repository at this point in the history
Added features:
  - Restart function (only supported with JerryScript yet)
  - Automate debug server launch and tizen studio package installation
  - 'Create IoTjs Tizen Project' option to extension
  - Support delayed stack trace loading

IoT.js-VSCode-DCO-1.0-Signed-off-by: Robert Sipka [email protected]
  • Loading branch information
robertsipka authored Sep 7, 2018
1 parent 1806f42 commit 3ba99c4
Show file tree
Hide file tree
Showing 3 changed files with 79 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## Version 0.9.0
- Added features:
- Restart function (only supported with JerryScript yet)
- Automate debug server launch and Tizen Studio package installation
- Added a 'Create IoTjs Tizen Project' option to extension
- Support delayed stack trace loading

## Version 0.8.0
- Added features:
- Completion Provider for module names and functions
Expand Down
64 changes: 61 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 11 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "iotjs-vscode-extension",
"displayName": "IoT.js",
"description": "IoT.js Debugging, IntelliSense for Visual Studio Code",
"version": "0.8.0",
"version": "0.9.0",
"publisher": "Samsung",
"author": {
"name": "Samsung Electronics Co., Ltd."
Expand Down Expand Up @@ -88,16 +88,18 @@
"out/**"
],
"contributes": {
"commands":[ {
"command": "iotjs-debug.createTizenProject",
"title": "Create IoT.js Tizen Project"
}
],
"menus": {
"editor/title": [ {
"commands": [
{
"command": "iotjs-debug.createTizenProject",
"group": "navigation"
"title": "Create IoT.js Tizen Project"
}
],
"menus": {
"editor/title": [
{
"command": "iotjs-debug.createTizenProject",
"group": "navigation"
}
]
},
"breakpoints": [
Expand Down

0 comments on commit 3ba99c4

Please sign in to comment.