diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c7ec71..11b77e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2 +1,6 @@ +## 0.0.2 (2017-11-24) +* Better output format: display output as table +* [#2](https://github.com/formulahendry/vscode-mysql/issues/2): Add option to set maximum table count, and increase the dafault count + ## 0.0.1 (2017-11-22) * Initial Release \ No newline at end of file diff --git a/package.json b/package.json index 583bbdb..8115678 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-mysql", "displayName": "MySQL", "description": "MySQL management tool", - "version": "0.0.1", + "version": "0.0.2", "publisher": "formulahendry", "icon": "logo.png", "engines": { diff --git a/src/common/utility.ts b/src/common/utility.ts index ec3462e..ce8493b 100644 --- a/src/common/utility.ts +++ b/src/common/utility.ts @@ -53,7 +53,7 @@ export class Utility { }) .catch((err) => { OutputChannel.appendLine(err); - AppInsightsClient.sendEvent("runQuery.end", { Result: "Fail" }); + AppInsightsClient.sendEvent("runQuery.end", { Result: "Fail", ErrorMessage: err }); }) .then(() => { OutputChannel.appendLine("[Done] Finished MySQL query.");