Skip to content

Commit

Permalink
Merge branch 'release/v1.5.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Nov 29, 2018
2 parents 9afb4e6 + 86ba8e5 commit ccf5afd
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Release Notes

## 1.5.0 (2018-11-29)

* PlatformIO Core Installer:
* Drop SockJS, switch to native WebSockets
* Catch errors when upgrading PIP (issue [#436](https://github.com/platformio/platformio-vscode-ide/issues/436))
* Check for official Python installation on Windows (resolves issue with a static "sys.prefix" and custom Python builds) (issue [#154](https://github.com/platformio/platformio-vscode-ide/issues/154))
* Switched to a stable PlatformIO Core. Do you need development version? Please update VSCode settings to ["platformio-ide.useDevelopmentPIOCore": true](https://docs.platformio.org/en/latest/ide/vscode.html#settings)
* Updated minimal dependency of PlatformIO Core to >=3.6.2

## 1.4.7 (2018-11-28)

* Security Update related to VSCode's issue with dependency on `event-stream` (issue [#434](https://github.com/platformio/platformio-vscode-ide/issues/434))
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "platformio-ide",
"version": "1.4.7",
"version": "1.5.0",
"publisher": "platformio",
"engines": {
"vscode": "^1.24.0"
Expand Down Expand Up @@ -289,7 +289,7 @@
}
],
"label": "PlatformIO Debugger",
"program": "./node_modules/platformio-vscode-debug/lib/adapter.js",
"program": "./node_modules/platformio-vscode-debug/dist/adapter.js",
"runtime": "node",
"type": "platformio-debug"
}
Expand Down Expand Up @@ -508,7 +508,7 @@
},
"platformio-ide.useDevelopmentPIOCore": {
"type": "boolean",
"default": true,
"default": false,
"description": "Use development version of PlatformIO Core"
},
"platformio-ide.autoRebuildAutocompleteIndex": {
Expand Down Expand Up @@ -591,8 +591,8 @@
},
"dependencies": {
"fs-plus": "^3.0.2",
"platformio-node-helpers": "^3.5.3",
"platformio-vscode-debug": "^1.2.5"
"platformio-node-helpers": "^4.0.0",
"platformio-vscode-debug": "^1.2.6"
},
"extensionDependencies": [
"ms-vscode.cpptools"
Expand Down
2 changes: 1 addition & 1 deletion src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
export const IS_WINDOWS = process.platform.startsWith('win');
export const IS_OSX = process.platform == 'darwin';
export const IS_LINUX = !IS_WINDOWS && !IS_OSX;
export const PIO_CORE_MIN_VERSION = '3.5.3-b.3';
export const PIO_CORE_MIN_VERSION = '3.6.2';
export const CONFLICTED_EXTENSION_IDS = ['mitaki28.vscode-clang', 'vsciot-vscode.vscode-arduino'];
3 changes: 2 additions & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ class PlatformIOVSCodeExtension {
try {
im.lock();
await im.install();
outputChannel.appendLine('PlatformIO IDE installed successfully.');
outputChannel.appendLine('PlatformIO IDE installed successfully.\n');
outputChannel.appendLine('Please restart VSCode.');
const action = 'Reload Now';
const selected = await vscode.window.showInformationMessage(
'PlatformIO IDE has been successfully installed! Please reload window',
Expand Down

0 comments on commit ccf5afd

Please sign in to comment.