Skip to content

Commit

Permalink
Merge branch 'release/v0.8.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Nov 29, 2017
2 parents 4f03854 + 2db0246 commit daf28ee
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release Notes

## 0.8.1 (2017-11-29)

* New configuration option: "Update Terminal configuration with patched PATH environment", default is `true`
* Fixed "Expression preceding parentheses of apparent call must have (pointer-to-) function type" for IntelliSense (issue [#54](https://github.com/platformio/platformio-vscode-ide/issues/54))

## 0.8.0 (2017-11-26)

**Requires VSCode 1.18.0 or above**
Expand Down
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "platformio-ide",
"version": "0.8.0",
"version": "0.8.1",
"preview": true,
"displayName": "PlatformIO IDE",
"description": "Official PlatformIO IDE for IoT, Arduino, ARM mbed, Espressif (ESP8266/ESP32), STM32, PIC32, nRF51/nRF52, FPGA, CMSIS, SPL, AVR, Samsung ARTIK, libOpenCM3",
Expand Down Expand Up @@ -197,6 +197,11 @@
"type": "boolean",
"default": false,
"description": "Force 'Upload and Monitor' task for `platformio-ide.upload` command"
},
"platformio-ide.updateTerminalPathConfiguration": {
"type": "boolean",
"default": true,
"description": "Update Terminal configuration with patched PATH environment"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ export const IS_OSX = process.platform == 'darwin';
export const IS_LINUX = !IS_WINDOWS && !IS_OSX;

export const AUTO_REBUILD_DELAY = 3000;
export const PIO_CORE_MIN_VERSION = '3.5.0-b.6';
export const PIO_CORE_MIN_VERSION = '3.5.0-rc.3';
4 changes: 3 additions & 1 deletion src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ class PlatformIOVSCodeExtension {
}
});

this.pioTerm.updateEnvConfiguration();
if (this.config.get('updateTerminalPathConfiguration')) {
this.pioTerm.updateEnvConfiguration();
}
this.registerCommands();

await this.startInstaller();
Expand Down

0 comments on commit daf28ee

Please sign in to comment.