Skip to content

Commit

Permalink
Merge branch 'release/v0.17.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Jul 11, 2018
2 parents 88e27bf + c8f1de0 commit 4b22f7a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 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.17.2 (2018-07-??)

- Do not force PIO IDE Terminal to `cmd.exe` on Windows (issue [#76](https://github.com/platformio/platformio-vscode-ide/issues/76))
- [PIO Unified Debugger](http://docs.platformio.org/page/plus/debugging.html): Fixed infinite loading of Peripheral Registers

## 0.17.1 (2018-07-05)

* Improvements for [PIO Unified Debugger](http://docs.platformio.org/page/plus/debugging.html):
Expand Down
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# PlatformIO IDE for VSCode

[![Marketplace Version](https://vsmarketplacebadge.apphb.com/version-short/platformio.platformio-ide.svg)](https://marketplace.visualstudio.com/items?itemName=platformio.platformio-ide) [![Installs](https://vsmarketplacebadge.apphb.com/installs-short/platformio.platformio-ide.svg)](https://marketplace.visualstudio.com/items?itemName=platformio.platformio-ide)

**The next generation integrated development environment for IoT**

[PlatformIO](http://platformio.org) is an open source ecosystem for IoT development.
Expand All @@ -15,12 +13,12 @@ Cross-platform build system and unified debugger. Remote unit testing and firmwa

* Cross-platform code builder without external dependencies to a system software:

- 450+ embedded boards
- 20+ development platforms
- 10+ frameworks
- 500+ embedded boards
- 25+ development platforms
- 15+ frameworks

* [PIO Remote™](http://docs.platformio.org/page/plus/pio-remote.html)
* [PIO Unified Debugger](http://docs.platformio.org/page/plus/debugging.html)
* [PIO Remote™](http://docs.platformio.org/page/plus/pio-remote.html)
* [Unit Testing](http://docs.platformio.org/page/plus/unit-testing.html)
* C/C++ Intelligent Code Completion
* C/C++ Smart Code Linter for rapid professional development
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "platformio-ide",
"version": "0.17.1",
"version": "0.17.2",
"publisher": "platformio",
"engines": {
"vscode": "^1.24.0"
Expand Down Expand Up @@ -536,7 +536,7 @@
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.0",
"esformatter": "^0.10.0",
"eslint": "^4.1.1",
"eslint": "^5.1.0",
"eslint-plugin-import": "^2.7.0",
"vsce": "^1.27.0",
"vscode": "^1.1.1"
Expand All @@ -545,7 +545,7 @@
"fs-plus": "^3.0.0",
"ini": "^1.3.4",
"platformio-node-helpers": "^2.0.1",
"platformio-vscode-debug": "^1.1.1",
"platformio-vscode-debug": "^1.1.2",
"querystringify": "*"
},
"extensionDependencies": [
Expand Down
1 change: 0 additions & 1 deletion src/terminal.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ export default class PIOTerminal {
new() {
return vscode.window.createTerminal({
name: 'PlatformIO',
shellPath: constants.IS_WINDOWS ? 'cmd.exe' : undefined,
env: {
PATH: process.env.PATH,
PLATFORMIO_CALLER: 'vscode'
Expand Down

0 comments on commit 4b22f7a

Please sign in to comment.