Skip to content

Commit

Permalink
Update for V4
Browse files Browse the repository at this point in the history
  • Loading branch information
niklauslee committed Oct 21, 2020
1 parent 7359144 commit fa9d0ab
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
C# Extension for StarUML
========================

This extension for StarUML(http://staruml.io) support to generate C# code from UML model and to reverse C# code to UML model. Install this extension from Extension Manager of StarUML.
This extension for StarUML(https://staruml.io) support to generate C# code from UML model and to reverse C# code to UML model. Install this extension from Extension Manager of StarUML.

> __Note__
> This extensions do not provide perfect reverse engineering which is a test and temporal feature. If you need a complete reverse engineering feature, please check other professional reverse engineering tools.
Expand Down
6 changes: 3 additions & 3 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ function _handleConfigure () {
}

function init () {
app.commands.register('csharp:generate', _handleGenerate)
app.commands.register('csharp:reverse', _handleReverse)
app.commands.register('csharp:configure', _handleConfigure)
app.commands.register('csharp:generate', _handleGenerate, 'C#: Generate Code...')
app.commands.register('csharp:reverse', _handleReverse, 'C#: Reverse Code...')
app.commands.register('csharp:configure', _handleConfigure, 'C#: Configure...')
}

exports.init = init
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"homepage": "https://github.com/staruml/staruml-csharp",
"issues": "https://github.com/staruml/staruml-csharp/issues",
"keywords": ["csharp"],
"version": "0.9.3",
"version": "0.9.4",
"author": {
"name": "Dongjoon Lee",
"email": "joon1251@gmail.com",
"url": "https://github.com/dongjoon1251"
},
"license": "MIT",
"engines": {
"staruml": "^3.0.0"
"staruml": "^4.0.0"
}
}

0 comments on commit fa9d0ab

Please sign in to comment.