Skip to content

Commit

Permalink
Merge branch 'release/v0.17.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Jul 26, 2018
2 parents 39000d1 + 63c4bc1 commit 0c4cea4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 0.17.4 (2018-07-??)

* Improved PlatformIO Core installer

## 0.17.3 (2018-07-19)

* Fixed "PIP: Command "python setup.py egg_info" failed" (issue [#179](https://github.com/platformio/platformio-vscode-ide/issues/179))
Expand Down
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "platformio-ide",
"version": "0.17.3",
"version": "0.17.4",
"publisher": "platformio",
"engines": {
"vscode": "^1.24.0"
Expand Down Expand Up @@ -544,9 +544,8 @@
"dependencies": {
"fs-plus": "^3.0.0",
"ini": "^1.3.4",
"platformio-node-helpers": "^2.0.4",
"platformio-vscode-debug": "^1.1.2",
"querystringify": "*"
"platformio-node-helpers": "^2.1.1",
"platformio-vscode-debug": "^1.1.2"
},
"extensionDependencies": [
"ms-vscode.cpptools"
Expand Down
9 changes: 3 additions & 6 deletions src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
* the root directory of this source tree.
*/

import * as pioNodeHelpers from 'platformio-node-helpers';

import fs from 'fs-plus';
import os from 'os';
import path from 'path';
import qs from 'querystringify';
import vscode from 'vscode';


Expand All @@ -35,11 +36,7 @@ System: ${os.type()}, ${os.release()}, ${os.arch()}
${description}
\`\`\`
`;
vscode.commands.executeCommand(
'vscode.open',
vscode.Uri.parse(`https://github.com/platformio/platformio-vscode-ide/issues/new?${qs.stringify(
{ title: encodeURIComponent(title), body: encodeURIComponent(ghbody) })}`)
);
vscode.commands.executeCommand('vscode.open', vscode.Uri.parse(pioNodeHelpers.misc.getErrorReportUrl(title, ghbody)));
}
console.error(err);
}
Expand Down

0 comments on commit 0c4cea4

Please sign in to comment.