Skip to content

Commit

Permalink
Merge branch 'release/v0.16.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Jun 20, 2018
2 parents d2d950b + 8ef2d37 commit 4cc8512
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 9 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.16.1 (2018-06-21)

* Fixed an issue with infinite PIO Core installation

## 0.16.0 (2018-06-20)

**Requires VSCode 1.24 or above**
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "platformio-ide",
"version": "0.16.0",
"version": "0.16.1",
"publisher": "platformio",
"engines": {
"vscode": "^1.24.0"
Expand Down Expand Up @@ -548,7 +548,7 @@
"dependencies": {
"fs-plus": "^3.0.0",
"ini": "^1.3.4",
"platformio-node-helpers": "^0.6.0",
"platformio-node-helpers": "^0.6.1",
"platformio-vscode-debug": "^1.0.0",
"querystringify": "*"
},
Expand Down
2 changes: 1 addition & 1 deletion src/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default class PIOHome {
try {
panel.webview.html = await this.getWebviewContent();
} catch (err) {
notifyError(`PIO Home Server: ${err.toString()}`, err);
notifyError('Start PIO Home Server', err);
}
return panel;
}
Expand Down
4 changes: 2 additions & 2 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class PlatformIOVSCodeExtension {
}
} catch (err) {
outputChannel.appendLine('Failed to install PlatformIO IDE.');
notifyError(`Installation Manager: ${err.toString()}`, err);
notifyError('Installation Manager', err);
} finally {
im.unlock();
}
Expand All @@ -161,7 +161,7 @@ class PlatformIOVSCodeExtension {
try {
await pioNodeHelpers.home.ensureServerStarted();
} catch (err) {
notifyError(`PIO Home Server: ${err.toString()}`, err);
notifyError('Start PIO Home Server', err);
}
vscode.commands.executeCommand('platformio-ide.showHome');
}
Expand Down
6 changes: 3 additions & 3 deletions src/project/indexer.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export default class ProjectIndexer {
}

} catch (err) {
notifyError(`Project FileSystemWatcher: ${err.toString()}`, err);
notifyError('Project FileSystemWatcher', err);
}
}

Expand Down Expand Up @@ -122,7 +122,7 @@ export default class ProjectIndexer {
this.subscriptions.push(watcher);
this.subscriptions.push(subscription);
} catch (err) {
notifyError(`Project FileSystemWatcher: ${err.toString()}`, err);
notifyError('Project FileSystemWatcher', err);
}
}

Expand Down Expand Up @@ -175,7 +175,7 @@ export default class ProjectIndexer {
vscode.window.showInformationMessage('PlatformIO: IntelliSense Index has been successfully rebuilt.');
}
} catch (err) {
notifyError(`IntelliSense Index: ${err.toString()}`, err);
notifyError('IntelliSense Index Rebuild', err);
}
this._inProgress = false;
});
Expand Down
2 changes: 1 addition & 1 deletion src/tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export default class PIOTasksProvider {
}));

} catch (err) {
notifyError(`Tasks FileSystemWatcher: ${err.toString()}`, err);
notifyError('Tasks FileSystemWatcher', err);
}
}

Expand Down

0 comments on commit 4cc8512

Please sign in to comment.