Skip to content

Commit ad10ea3

Browse files
committed
Added a new setting platformio-ide.pioHomeServerHttpHost to set a custom host for PlatformIO Home (useful for dockerized environments) // Resolve platformio#2465
1 parent fe33152 commit ad10ea3

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

CHANGELOG.md

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

3+
## 2.3.2 (2021-??-??)
4+
5+
- Added a new setting ``platformio-ide.pioHomeServerHttpHost`` to set a custom host for PlatformIO Home (useful for dockerized environments) (issue [#2465](https://github.com/platformio/platformio-vscode-ide/issues/2465))
6+
37
## 2.3.1 (2021-03-23)
48

59
- Added a new setting ``platformio-ide.autoOpenPlatformIOIniFile`` to control an automatic opening of the `platformio.ini` file from a project when no other editors are opened (issue [#2419](https://github.com/platformio/platformio-vscode-ide/issues/2419))

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -594,15 +594,15 @@
594594
"default": false,
595595
"description": "Disable showing PIO Home at startup"
596596
},
597-
"platformio-ide.pioHomeServerHttpPort": {
598-
"type": "integer",
599-
"description": "PIO Home server HTTP port (the default value 0 automatically assigns a free port in the range [8010..8100])"
600-
},
601597
"platformio-ide.pioHomeServerHttpHost": {
602598
"type": "string",
603599
"default": "127.0.0.1",
604600
"description": "PIO Home server HTTP host (default is 127.0.0.1, but in case of dockerized environments 0.0.0.0)"
605601
},
602+
"platformio-ide.pioHomeServerHttpPort": {
603+
"type": "integer",
604+
"description": "PIO Home server HTTP port (the default value 0 automatically assigns a free port in the range [8010..8100])"
605+
},
606606
"platformio-ide.customPyPiIndexUrl": {
607607
"type": [
608608
"string",
@@ -638,7 +638,7 @@
638638
},
639639
"dependencies": {
640640
"fs-plus": "~3.1.1",
641-
"platformio-node-helpers": "~9.1.2",
641+
"platformio-node-helpers": "~9.2.0",
642642
"platformio-vscode-debug": "~1.3.1"
643643
},
644644
"extensionDependencies": [

0 commit comments

Comments
 (0)