Skip to content

Commit

Permalink
Prepare 1.3.0 release (#146)
Browse files Browse the repository at this point in the history
* Prepare 1.3.0 release

* Upper case
  • Loading branch information
formulahendry authored Aug 27, 2018
1 parent e41fcfa commit 2f1f388
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 1.3.0 (2018-08-29)
### Added
* Generate Code for C#, Go, Java, PHP or Ruby
* Module Management (List, Create, Delete module)
* Add configuration to set start time for monitoring D2C message
* Support creating IoT Hub with basic tier

## 1.2.0 (2018-08-08)
### Added
* Generate Code for Node.js, Python or REST API
Expand Down
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,13 @@ The [Wiki page](https://github.com/Microsoft/vscode-azure-iot-toolkit/wiki) incl
* Delete device
* Copy Device Connection String
* Generate SAS Token for Device
* Module management
* List Moudles
* Create Module
* Edit Module Twin
* Delete Module
* Interact with Azure IoT Hub
* Generate Code for Node.js, Python or REST API
* Generate Code for C#, Go, Java, Node.js, PHP, Python, Ruby or REST API
* Send D2C message to IoT Hub
* Monitor IoT Hub D2C message
* Send C2D message to device
Expand Down Expand Up @@ -110,6 +115,13 @@ IoT Hub Consumer Group (default is `"$Default"`):
}
```

The time span (in minutes) of monitoring D2C message before current time (default is `0`):
```json
{
"azure-iot-toolkit.monitorD2CBeforeNowInMinutes": 0
}
```

Whether to show verbose info when monitoring messages (default is `false`):
```json
{
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "azure-iot-toolkit",
"displayName": "Azure IoT Toolkit",
"description": "Interact with Azure IoT Hub, IoT Device Management, IoT Edge Management, IoT Hub Code Generation",
"version": "1.2.0",
"version": "1.3.0-rc",
"publisher": "vsciot-vscode",
"aiKey": "0caaff90-cc1c-4def-b64c-3ef33615bc9b",
"icon": "logo.png",
Expand Down
19 changes: 18 additions & 1 deletion resources/welcome/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ <h2>Say Hello to Azure IoT Hub in 1 Minute</h2>
<li>
<a href="#monitor-d2c">Monitor device-to-cloud (D2C) message</a>
</li>
<li>
<a href="#generate-app">Generate Azure IoT application</a>
</li>
</ul>
<h3 id="register-device">Register a device</h3>
A device must
Expand Down Expand Up @@ -156,12 +159,23 @@ <h3 id="monitor-d2c">Monitor device-to-cloud (D2C) message</h3>
</ol>
<img src="https://raw.githubusercontent.com/wiki/Microsoft/vscode-azure-iot-toolkit/images/stopmonitor.png" alt="stop monitor"
/>
<h3 id="generate-app">Generate Azure IoT application</h3>
You could also use your favorite programing language (e.g. C#, Go, Java, Node.js, PHP, Python and Ruby) to <a href="https://blogs.msdn.microsoft.com/iotdev/2018/08/08/quickly-build-your-azure-iot-application-in-vs-code-with-node-js-python-or-rest-api/">quickly generate an Azure IoT application</a>.
<ol>
<li>Right-click your device and select
<strong>Generate Code</strong>
</li>
<li>In language list, select <strong>Node.js</strong></li>
<li>In code template list, select <strong>Send device-to-cloud message</strong></li>
<li>The JavaScript will be generated immediately. The device connection string is also automatically filled in.</li>
</ol>
<img src="https://raw.githubusercontent.com/Microsoft/vscode-azure-iot-toolkit/master/images/code-generation.gif" alt="generate app" />
</div>
</div>
<footer>
<div>
Having trouble with the extension? -
<a href="https://github.com/microsoft/vscode-azure-iot-toolkit/wiki">Browse the documentation</a> -
<a href="https://github.com/Microsoft/vscode-azure-iot-toolkit/wiki">Browse the documentation</a> -
<a href="https://github.com/Microsoft/vscode-azure-iot-toolkit/issues">Report an issue</a> -
<a href="https://gitter.im/Microsoft/azure-iot-toolkit">Contact us on Gitter</a>
</div>
Expand Down Expand Up @@ -194,6 +208,9 @@ <h3>Resources</h3>
<div>
<a href="https://channel9.msdn.com/Shows/Internet-of-Things-Show/Azure-IoT-Toolkit-extension-for-Visual-Studio-Code">Channel 9 video: Walkthrough of Azure IoT Toolkit extension</a>
</div>
<div>
<a href="https://blogs.msdn.microsoft.com/iotdev/2018/08/08/quickly-build-your-azure-iot-application-in-vs-code-with-node-js-python-or-rest-api/">Quickly build your Azure IoT application with Node.js, Python or REST API</a>
</div>
<div>
<a href="https://github.com/Microsoft/vscode-azure-iot-toolkit/wiki/Quickstart-Node.js">Create and control an IoT device connected to an IoT hub (Node.js)</a>
</div>
Expand Down

0 comments on commit 2f1f388

Please sign in to comment.