Skip to content

Commit ccf5afd

Browse files
committed
Merge branch 'release/v1.5.0'
2 parents 9afb4e6 + 86ba8e5 commit ccf5afd

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Release Notes
22

3+
## 1.5.0 (2018-11-29)
4+
5+
* PlatformIO Core Installer:
6+
* Drop SockJS, switch to native WebSockets
7+
* Catch errors when upgrading PIP (issue [#436](https://github.com/platformio/platformio-vscode-ide/issues/436))
8+
* 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))
9+
* 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)
10+
* Updated minimal dependency of PlatformIO Core to >=3.6.2
11+
312
## 1.4.7 (2018-11-28)
413

514
* Security Update related to VSCode's issue with dependency on `event-stream` (issue [#434](https://github.com/platformio/platformio-vscode-ide/issues/434))

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "platformio-ide",
3-
"version": "1.4.7",
3+
"version": "1.5.0",
44
"publisher": "platformio",
55
"engines": {
66
"vscode": "^1.24.0"
@@ -289,7 +289,7 @@
289289
}
290290
],
291291
"label": "PlatformIO Debugger",
292-
"program": "./node_modules/platformio-vscode-debug/lib/adapter.js",
292+
"program": "./node_modules/platformio-vscode-debug/dist/adapter.js",
293293
"runtime": "node",
294294
"type": "platformio-debug"
295295
}
@@ -508,7 +508,7 @@
508508
},
509509
"platformio-ide.useDevelopmentPIOCore": {
510510
"type": "boolean",
511-
"default": true,
511+
"default": false,
512512
"description": "Use development version of PlatformIO Core"
513513
},
514514
"platformio-ide.autoRebuildAutocompleteIndex": {
@@ -591,8 +591,8 @@
591591
},
592592
"dependencies": {
593593
"fs-plus": "^3.0.2",
594-
"platformio-node-helpers": "^3.5.3",
595-
"platformio-vscode-debug": "^1.2.5"
594+
"platformio-node-helpers": "^4.0.0",
595+
"platformio-vscode-debug": "^1.2.6"
596596
},
597597
"extensionDependencies": [
598598
"ms-vscode.cpptools"

src/constants.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
export const IS_WINDOWS = process.platform.startsWith('win');
1010
export const IS_OSX = process.platform == 'darwin';
1111
export const IS_LINUX = !IS_WINDOWS && !IS_OSX;
12-
export const PIO_CORE_MIN_VERSION = '3.5.3-b.3';
12+
export const PIO_CORE_MIN_VERSION = '3.6.2';
1313
export const CONFLICTED_EXTENSION_IDS = ['mitaki28.vscode-clang', 'vsciot-vscode.vscode-arduino'];

src/main.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,8 @@ class PlatformIOVSCodeExtension {
156156
try {
157157
im.lock();
158158
await im.install();
159-
outputChannel.appendLine('PlatformIO IDE installed successfully.');
159+
outputChannel.appendLine('PlatformIO IDE installed successfully.\n');
160+
outputChannel.appendLine('Please restart VSCode.');
160161
const action = 'Reload Now';
161162
const selected = await vscode.window.showInformationMessage(
162163
'PlatformIO IDE has been successfully installed! Please reload window',

0 commit comments

Comments
 (0)