Skip to content

Commit eaf8b80

Browse files
knightburtonyichoi
authored andcommitted
Preparation for publish
- Add a changelog file with the start features - Add extra properties to the package.json to provide more information in the marketplace - Update the readme with travis badge and work in progress list - Set the release verison IoT.js-VSCode-DCO-1.0-Signed-off-by: Imre Kiss [email protected]
1 parent 7fabb1a commit eaf8b80

File tree

3 files changed

+46
-2
lines changed

3 files changed

+46
-2
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Changelog
2+
3+
## Version 0.7.0
4+
- Added support for debugging:
5+
- Control commands:
6+
- Continue command
7+
- Pause command
8+
- Step-over command
9+
- Step-in command
10+
- Step-out command
11+
- Disconnect command
12+
13+
- Features:
14+
- Set/Remove breakpoints
15+
- Set/Remove function breakpoints
16+
- Call stack display
17+
- Watch (evaluate expression)
18+
- Exception hint
19+
- Handle source receive from the engine
20+
- Sending source code from the vscode to the engine

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# IoT.js debug and language extension for VSCode.
22

3+
34
[![License](https://img.shields.io/badge/licence-Apache%202.0-brightgreen.svg?style=flat)](LICENSE)
5+
[![Build Status](https://travis-ci.org/Samsung/iotjs-vscode-extension.svg?branch=master)](https://travis-ci.org/Samsung/iotjs-vscode-extension)
46

57
- [Introduction](#introduction)
68
- [Features](#features)
@@ -26,9 +28,15 @@
2628
- Set/Remove function breakpoints
2729
- Call stack display
2830
- Watch (evaluate expression)
31+
- Exception hint
2932
- Handle source receive from the engine
3033
- Sending source code from the vscode to the engine
3134

35+
- Language support
36+
- Work in progress:
37+
- Require module name completer
38+
- Module's function completer
39+
3240
# Requirements
3341
- The latest Vscode which is available [here](https://code.visualstudio.com/Download).
3442
- An [IoT.js](https://github.com/Samsung/iotjs) or a [JerryScript](https://github.com/jerryscript-project/jerryscript) as an engine to run your code.

package.json

Lines changed: 18 additions & 2 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.0.1",
5+
"version": "0.7.0",
66
"publisher": "Samsung",
77
"author": {
88
"name": "Samsung Electronics Co., Ltd."
@@ -15,17 +15,33 @@
1515
"bugs": {
1616
"url": "https://github.com/Samsung/iotjs-vscode-extension/issues"
1717
},
18+
"qna": "marketplace",
19+
"markdown": "github",
20+
"badges": [
21+
{
22+
"url": "https://travis-ci.org/Samsung/iotjs-vscode-extension.svg?branch=master",
23+
"href": "https://travis-ci.org/Samsung/iotjs-vscode-extension",
24+
"description": "Continuous integration (Travis)"
25+
},
26+
{
27+
"url": "https://img.shields.io/badge/licence-Apache%202.0-brightgreen.svg?style=flat",
28+
"href": "https://github.com/Samsung/iotjs-vscode-extension/blob/master/LICENSE",
29+
"description": "Apache-2.0 LICENSE"
30+
}
31+
],
1832
"license": "Apache-2.0",
1933
"private": false,
2034
"keywords": [
2135
"iotjs",
22-
"jerry",
2336
"jerryscript",
2437
"debug",
2538
"debugger",
2639
"javascript",
2740
"js"
2841
],
42+
"galleryBanner": {
43+
"theme": "dark"
44+
},
2945
"engines": {
3046
"vscode": "^1.23.0",
3147
"node": "^8.11.1"

0 commit comments

Comments
 (0)