diff --git a/CHANGELOG.md b/CHANGELOG.md index 70382cb9..2b2ca60f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to the "vscode-logicapps" extension will be documented in th ## [Unreleased] +## [0.1.2] - 2018-12-03 +Thanks, Aaron Kunz (@DAXaholic), for contributing the new "Create Logic App" button! + +### Added +- #33 - Add "Create Logic App" button to tree view +- View Logic App in read-only designer +- View Logic App run in monitoring view + ## [0.1.1] - 2018-10-31 ### Added - #47 - Add parameter snippet diff --git a/README.md b/README.md index 6e733e26..d9e2d486 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,10 @@ All you need is an Azure Subscription to get started. If you don't have one, [cl ![Run after IntelliSense](resources/run-after.gif) +![Open in read-only designer](resources/open-in-designer.gif) + +![Open run in monitoring view](resources/open-in-monitoring-view.gif) + ## Recommended Extensions We recommend installing the following VS Code extensions for a better experience when working with different integration account artifacts. diff --git a/package-lock.json b/package-lock.json index 75a953ad..b746f9ac 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "vscode-logicapps", - "version": "0.1.1", + "version": "0.1.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 33f315fb..e4942f49 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-logicapps", "displayName": "Azure Logic Apps", "description": "%extension.description%", - "version": "0.1.1", + "version": "0.1.2", "publisher": "ms-azuretools", "icon": "resources/azLogicApps.png", "aiKey": "b6385546-3be0-489c-a298-baccd6c152fb", diff --git a/resources/open-in-designer.gif b/resources/open-in-designer.gif new file mode 100644 index 00000000..dee7614e Binary files /dev/null and b/resources/open-in-designer.gif differ diff --git a/resources/open-in-monitoring-view.gif b/resources/open-in-monitoring-view.gif new file mode 100644 index 00000000..1dc71c63 Binary files /dev/null and b/resources/open-in-monitoring-view.gif differ