File tree Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## Version 1.2.0
4
+ * Add Help on hover, with link to read the documentation online.
5
+ * Changed settings title to MayaCode to be in line with api docs
6
+ * Added better error msg when cannot connect to maya via commandPort.
7
+
3
8
## Version 1.1.0
4
9
* Add autocomplete for MEL variables. [ issues/9] ( https://github.com/artbycrunk/vscode-maya/issues/9 )
5
10
* Speedup autocomplete processing.
Original file line number Diff line number Diff line change @@ -20,6 +20,10 @@ A [Visual Studio Code](https://code.visualstudio.com/) [extension](https://marke
20
20
21
21
> ![ Autocomplete MEL commands as you type] ( ./images/autocomplete.gif " Autocomplete MEL commands as you type ")
22
22
23
+ * Autocomplete MEL variables as you type
24
+
25
+ > ![ Autocomplete MEL variables as you type] ( ./images/variables.gif " Autocomplete MEL variables as you type ")
26
+
23
27
* Send code to Maya via command port (MEL or Python).
24
28
25
29
> ![ Send code to Maya via command port] ( ./images/send_to_maya.gif " Send code to Maya via command port ")
Original file line number Diff line number Diff line change 2
2
"name" : " mayacode" ,
3
3
"displayName" : " MayaCode" ,
4
4
"description" : " A Visual Studio Code extension with support for coding for Maya." ,
5
- "version" : " 1.1 .0" ,
5
+ "version" : " 1.2 .0" ,
6
6
"publisher" : " saviof" ,
7
7
"author" : {
8
8
"name" : " Savio Fernandes"
22
22
},
23
23
"keywords" : [
24
24
" maya" ,
25
- " mel"
25
+ " mel" ,
26
+ " python" ,
27
+ " autodesk maya"
26
28
],
27
29
"categories" : [
28
30
" Programming Languages" ,
101
103
},
102
104
"mayacode.python.port" : {
103
105
"type" : " integer" ,
104
- "default" : 7002 ,
105
- "description" : " The port over which to send python commands. "
106
+ "default" : 5678 ,
107
+ "description" : " The port over which to debug python files (uses ptvsd module) "
106
108
},
107
109
"mayacode.hostname" : {
108
110
"type" : " string" ,
You can’t perform that action at this time.
0 commit comments