Skip to content

Commit

Permalink
Restored support for macOS Touch Bar // Resolve #3659
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Mar 17, 2023
1 parent 2b97f63 commit eaf9ae5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

## 3.1.1 (2023-03-??)

* Added new ``platformio-ide.uploadAndMonitor`` command to "Upload and Monitor" active environment (useful for custom [PlatformIO Toolbar](https://docs.platformio.org/en/latest/integration/ide/vscode.html#platformio-toolbar))
* Fixed a regression bug where running the same "device monitor" causes the notification that the task "is already active" (issue [#3656](https://github.com/platformio/platformio-vscode-ide/issues/3656))
* Added a new ``platformio-ide.uploadAndMonitor`` command which can be used with the custom [PlatformIO Toolbar](https://docs.platformio.org/en/latest/integration/ide/vscode.html#platformio-toolbar)
* Restored support for macOS Touch Bar (issue [#3659](https://github.com/platformio/platformio-vscode-ide/issues/3659))
* Fixed a regression bug that caused notifications about a task being "already active" when running the same "device monitor" (issue [#3656](https://github.com/platformio/platformio-vscode-ide/issues/3656))

## 3.1.0 (2023-03-13)

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -151,28 +151,28 @@
},
{
"command": "platformio-ide.build",
"title": "Build active environment",
"title": "Build",
"category": "PlatformIO",
"icon": "$(check)",
"enablement": "pioProjectReady"
},
{
"command": "platformio-ide.upload",
"title": "Upload active environment",
"title": "Upload",
"category": "PlatformIO",
"icon": "$(arrow-right)",
"enablement": "pioProjectReady"
},
{
"command": "platformio-ide.uploadAndMonitor",
"title": "Upload and Monitor active environment",
"title": "Upload and Monitor",
"category": "PlatformIO",
"icon": "$(arrow-right)",
"enablement": "pioProjectReady"
},
{
"command": "platformio-ide.clean",
"title": "Clean active environment",
"title": "Clean",
"category": "PlatformIO",
"icon": "$(trashcan)",
"enablement": "pioProjectReady"
Expand Down

0 comments on commit eaf9ae5

Please sign in to comment.