Skip to content

Commit

Permalink
Merge branch 'release/v1.9.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Oct 19, 2019
2 parents c66f4bb + 57e5b42 commit 4499d04
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Release Notes

# 1.9.1 (2019-10-20)

- Added support for Python 3 from Windows Store (issue [#1162](https://github.com/platformio/platformio-vscode-ide/issues/1162))
- Better detecting of user home directory on Windows via `%USERPROFILE%` environment variable
- Fixed an issue "Can not perform a '--user' install" on Linux Manjaro (issue [#1007](https://github.com/platformio/platformio-vscode-ide/issues/1007))
- Other bug-fixes and improvements for PlatformIO Core installer

## 1.9.0 (2019-10-11)

- Python 3 has the highest priority over the Python 2
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# PlatformIO IDE for VSCode

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

[PlatformIO](https://platformio.org) is an open source ecosystem for IoT development.
[PlatformIO](https://platformio.org) is an open-source ecosystem for professional embedded development.
Cross-platform build system and unified debugger. Remote unit testing and firmware updates.

**Platforms**: Atmel AVR, Atmel SAM, Espressif 32, Espressif 8266, Freescale Kinetis, Infineon XMC, Intel ARC32, Intel MCS-51 (8051), Kendryte K210, Lattice iCE40, Maxim 32, Microchip PIC32, Nordic nRF51, Nordic nRF52, NXP LPC, RISC-V, Samsung ARTIK, Silicon Labs EFM32, ST STM32, ST STM8, Teensy, TI MSP430, TI Tiva, WIZNet W7500
Expand All @@ -12,9 +12,9 @@ Cross-platform build system and unified debugger. Remote unit testing and firmwa
## Features

* Cross-platform code builder without external dependencies to a system software:
- 650+ embedded boards
- 700+ embedded boards
- 30+ development platforms
- 15+ frameworks
- 20+ frameworks
* [PIO Unified Debugger](http://docs.platformio.org/page/plus/debugging.html)
* [PIO Unit Testing](http://docs.platformio.org/page/plus/unit-testing.html)
* [PIO Remote](http://docs.platformio.org/page/plus/pio-remote.html)
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"name": "platformio-ide",
"version": "1.9.0",
"version": "1.9.1",
"publisher": "platformio",
"engines": {
"vscode": "^1.24.0"
},
"license": "Apache-2.0",
"displayName": "PlatformIO IDE",
"description": "Development environment for IoT, Arduino, ARM mbed, Espressif (ESP8266/ESP32), AVR, RISC-V, STM32, PIC32, nRF51/nRF52, MSP430, MCS-51 (8051), FPGA, FreeRTOS, ESP-IDF, CMSIS, SPL",
"description": "Development environment for Embedded, IoT, Arduino, ARM mbed, Espressif (ESP8266/ESP32), AVR, RISC-V, STM32, PIC32, nRF51/nRF52, MSP430, MCS-51 (8051), FPGA, FreeRTOS, ESP-IDF, CMSIS, SPL",
"categories": [
"Programming Languages",
"Debuggers",
"Other"
],
"keywords": [
"IoT",
"embedded",
"debug",
"c",
"c++",
"embedded",
"firmware"
"microcontroller"
],
"main": "./dist/extension",
"icon": "resources/platformio-logo.png",
Expand Down Expand Up @@ -565,7 +565,7 @@
},
"platformio-ide.updateTerminalPathConfiguration": {
"type": "boolean",
"default": true,
"default": false,
"description": "Update Terminal configuration with patched PATH environment"
},
"platformio-ide.disablePIOHomeStartup": {
Expand Down Expand Up @@ -604,8 +604,8 @@
},
"dependencies": {
"fs-plus": "^3.1.1",
"platformio-node-helpers": "^5.1.0",
"platformio-vscode-debug": "^1.2.10"
"platformio-node-helpers": "^5.1.1",
"platformio-vscode-debug": "^1.2.11"
},
"extensionDependencies": [
"ms-vscode.cpptools"
Expand Down

0 comments on commit 4499d04

Please sign in to comment.