File tree Expand file tree Collapse file tree 3 files changed +46
-2
lines changed Expand file tree Collapse file tree 3 files changed +46
-2
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
# IoT.js debug and language extension for VSCode.
2
2
3
+
3
4
[ ![ 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 )
4
6
5
7
- [ Introduction] ( #introduction )
6
8
- [ Features] ( #features )
26
28
- Set/Remove function breakpoints
27
29
- Call stack display
28
30
- Watch (evaluate expression)
31
+ - Exception hint
29
32
- Handle source receive from the engine
30
33
- Sending source code from the vscode to the engine
31
34
35
+ - Language support
36
+ - Work in progress:
37
+ - Require module name completer
38
+ - Module's function completer
39
+
32
40
# Requirements
33
41
- The latest Vscode which is available [ here] ( https://code.visualstudio.com/Download ) .
34
42
- An [ IoT.js] ( https://github.com/Samsung/iotjs ) or a [ JerryScript] ( https://github.com/jerryscript-project/jerryscript ) as an engine to run your code.
Original file line number Diff line number Diff line change 2
2
"name" : " iotjs-vscode-extension" ,
3
3
"displayName" : " IoT.js" ,
4
4
"description" : " IoT.js Debugging, IntelliSense for Visual Studio Code" ,
5
- "version" : " 0.0.1 " ,
5
+ "version" : " 0.7.0 " ,
6
6
"publisher" : " Samsung" ,
7
7
"author" : {
8
8
"name" : " Samsung Electronics Co., Ltd."
15
15
"bugs" : {
16
16
"url" : " https://github.com/Samsung/iotjs-vscode-extension/issues"
17
17
},
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
+ ],
18
32
"license" : " Apache-2.0" ,
19
33
"private" : false ,
20
34
"keywords" : [
21
35
" iotjs" ,
22
- " jerry" ,
23
36
" jerryscript" ,
24
37
" debug" ,
25
38
" debugger" ,
26
39
" javascript" ,
27
40
" js"
28
41
],
42
+ "galleryBanner" : {
43
+ "theme" : " dark"
44
+ },
29
45
"engines" : {
30
46
"vscode" : " ^1.23.0" ,
31
47
"node" : " ^8.11.1"
You can’t perform that action at this time.
0 commit comments