Skip to content

Commit

Permalink
Preparation for publish
Browse files Browse the repository at this point in the history
- 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]
  • Loading branch information
knightburton authored and yichoi committed Jun 13, 2018
1 parent 7fabb1a commit eaf8b80
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 2 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Changelog

## Version 0.7.0
- Added support for debugging:
- Control commands:
- Continue command
- Pause command
- Step-over command
- Step-in command
- Step-out command
- Disconnect command

- Features:
- Set/Remove breakpoints
- Set/Remove function breakpoints
- Call stack display
- Watch (evaluate expression)
- Exception hint
- Handle source receive from the engine
- Sending source code from the vscode to the engine
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# IoT.js debug and language extension for VSCode.


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

- [Introduction](#introduction)
- [Features](#features)
Expand All @@ -26,9 +28,15 @@
- Set/Remove function breakpoints
- Call stack display
- Watch (evaluate expression)
- Exception hint
- Handle source receive from the engine
- Sending source code from the vscode to the engine

- Language support
- Work in progress:
- Require module name completer
- Module's function completer

# Requirements
- The latest Vscode which is available [here](https://code.visualstudio.com/Download).
- An [IoT.js](https://github.com/Samsung/iotjs) or a [JerryScript](https://github.com/jerryscript-project/jerryscript) as an engine to run your code.
Expand Down
20 changes: 18 additions & 2 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.0.1",
"version": "0.7.0",
"publisher": "Samsung",
"author": {
"name": "Samsung Electronics Co., Ltd."
Expand All @@ -15,17 +15,33 @@
"bugs": {
"url": "https://github.com/Samsung/iotjs-vscode-extension/issues"
},
"qna": "marketplace",
"markdown": "github",
"badges": [
{
"url": "https://travis-ci.org/Samsung/iotjs-vscode-extension.svg?branch=master",
"href": "https://travis-ci.org/Samsung/iotjs-vscode-extension",
"description": "Continuous integration (Travis)"
},
{
"url": "https://img.shields.io/badge/licence-Apache%202.0-brightgreen.svg?style=flat",
"href": "https://github.com/Samsung/iotjs-vscode-extension/blob/master/LICENSE",
"description": "Apache-2.0 LICENSE"
}
],
"license": "Apache-2.0",
"private": false,
"keywords": [
"iotjs",
"jerry",
"jerryscript",
"debug",
"debugger",
"javascript",
"js"
],
"galleryBanner": {
"theme": "dark"
},
"engines": {
"vscode": "^1.23.0",
"node": "^8.11.1"
Expand Down

0 comments on commit eaf8b80

Please sign in to comment.