Skip to content

Commit e9ed5f3

Browse files
committed
bump to version 1.2.0
1 parent 698f53c commit e9ed5f3

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

CHANGELOG.md

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

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+
38
## Version 1.1.0
49
* Add autocomplete for MEL variables. [issues/9](https://github.com/artbycrunk/vscode-maya/issues/9)
510
* Speedup autocomplete processing.

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ A [Visual Studio Code](https://code.visualstudio.com/) [extension](https://marke
2020

2121
> ![Autocomplete MEL commands as you type](./images/autocomplete.gif "Autocomplete MEL commands as you type")
2222
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+
2327
* Send code to Maya via command port (MEL or Python).
2428

2529
> ![Send code to Maya via command port](./images/send_to_maya.gif "Send code to Maya via command port")

images/variables.gif

70.4 KB
Loading

package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "mayacode",
33
"displayName": "MayaCode",
44
"description": "A Visual Studio Code extension with support for coding for Maya.",
5-
"version": "1.1.0",
5+
"version": "1.2.0",
66
"publisher": "saviof",
77
"author": {
88
"name": "Savio Fernandes"
@@ -22,7 +22,9 @@
2222
},
2323
"keywords": [
2424
"maya",
25-
"mel"
25+
"mel",
26+
"python",
27+
"autodesk maya"
2628
],
2729
"categories": [
2830
"Programming Languages",
@@ -101,8 +103,8 @@
101103
},
102104
"mayacode.python.port": {
103105
"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)"
106108
},
107109
"mayacode.hostname": {
108110
"type": "string",

0 commit comments

Comments
 (0)