Skip to content

Commit 3ba99c4

Browse files
authored
Preparation for publish (#25)
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]
1 parent 1806f42 commit 3ba99c4

File tree

3 files changed

+79
-12
lines changed

3 files changed

+79
-12
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## Version 0.9.0
4+
- Added features:
5+
- Restart function (only supported with JerryScript yet)
6+
- Automate debug server launch and Tizen Studio package installation
7+
- Added a 'Create IoTjs Tizen Project' option to extension
8+
- Support delayed stack trace loading
9+
310
## Version 0.8.0
411
- Added features:
512
- Completion Provider for module names and functions

package-lock.json

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

package.json

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "iotjs-vscode-extension",
33
"displayName": "IoT.js",
44
"description": "IoT.js Debugging, IntelliSense for Visual Studio Code",
5-
"version": "0.8.0",
5+
"version": "0.9.0",
66
"publisher": "Samsung",
77
"author": {
88
"name": "Samsung Electronics Co., Ltd."
@@ -88,16 +88,18 @@
8888
"out/**"
8989
],
9090
"contributes": {
91-
"commands":[ {
92-
"command": "iotjs-debug.createTizenProject",
93-
"title": "Create IoT.js Tizen Project"
94-
}
95-
],
96-
"menus": {
97-
"editor/title": [ {
91+
"commands": [
92+
{
9893
"command": "iotjs-debug.createTizenProject",
99-
"group": "navigation"
94+
"title": "Create IoT.js Tizen Project"
10095
}
96+
],
97+
"menus": {
98+
"editor/title": [
99+
{
100+
"command": "iotjs-debug.createTizenProject",
101+
"group": "navigation"
102+
}
101103
]
102104
},
103105
"breakpoints": [

0 commit comments

Comments
 (0)