Skip to content
This repository has been archived by the owner on Mar 8, 2020. It is now read-only.

Commit

Permalink
Update to 0.13.1 to support decorators (#44)
Browse files Browse the repository at this point in the history
* Update to 0.13.1 to support decorators

* update engine version to prevent packaging failure
  • Loading branch information
m-g-k authored and Simon Stone committed Sep 29, 2017
1 parent e33bd41 commit 399dd00
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
13 changes: 10 additions & 3 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,19 @@
"displayName": "Hyperledger Composer",
"description": "Hyperledger Composer syntax highlighting, autocomplete, snippets & error checking",
"author": "Hyperledger Composer",
"keywords": [
"Hyperledger Composer",
"distributed ledger technology",
"blockchain",
"DLT"
],
"homepage": "https://hyperledger.github.io/composer/",
"license": "Apache-2.0",
"version": "0.11.3",
"version": "0.13.1",
"publisher": "HyperledgerComposer",
"icon": "icon.png",
"engines": {
"vscode": "^1.12.2"
"vscode": "^1.15.1"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -242,7 +249,7 @@
"@types/mocha": "^2.2.33",
"@types/node": "^6.0.52",
"typescript": "^2.1.5",
"vscode": "^1.1.4",
"vscode": "^1.1.5",
"vsce": "^1.30.0"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion server/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ function handleGenerateUml(diagramTitle: string, originatingFileName: string) {
}

//begin UML definition and global defines
parameters.fileWriter.writeLine(0, "@startuml");
parameters.fileWriter.writeLine(0, "@startuml composer");
parameters.fileWriter.writeLine(0, "'** Auto generated content, any changes may be lost **'");
parameters.fileWriter.writeLine(0, "!define DATE %date[EEE, MMM d, ''yy 'at' HH:mm]%");
parameters.fileWriter.writeLine(0, "skinparam titleBorderThickness 0.5");
Expand Down

0 comments on commit 399dd00

Please sign in to comment.