Skip to content

Commit eaf9ae5

Browse files
committed
Restored support for macOS Touch Bar // Resolve platformio#3659
1 parent 2b97f63 commit eaf9ae5

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
## 3.1.1 (2023-03-??)
44

5-
* 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))
6-
* 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))
5+
* 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)
6+
* Restored support for macOS Touch Bar (issue [#3659](https://github.com/platformio/platformio-vscode-ide/issues/3659))
7+
* 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))
78

89
## 3.1.0 (2023-03-13)
910

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,28 +151,28 @@
151151
},
152152
{
153153
"command": "platformio-ide.build",
154-
"title": "Build active environment",
154+
"title": "Build",
155155
"category": "PlatformIO",
156156
"icon": "$(check)",
157157
"enablement": "pioProjectReady"
158158
},
159159
{
160160
"command": "platformio-ide.upload",
161-
"title": "Upload active environment",
161+
"title": "Upload",
162162
"category": "PlatformIO",
163163
"icon": "$(arrow-right)",
164164
"enablement": "pioProjectReady"
165165
},
166166
{
167167
"command": "platformio-ide.uploadAndMonitor",
168-
"title": "Upload and Monitor active environment",
168+
"title": "Upload and Monitor",
169169
"category": "PlatformIO",
170170
"icon": "$(arrow-right)",
171171
"enablement": "pioProjectReady"
172172
},
173173
{
174174
"command": "platformio-ide.clean",
175-
"title": "Clean active environment",
175+
"title": "Clean",
176176
"category": "PlatformIO",
177177
"icon": "$(trashcan)",
178178
"enablement": "pioProjectReady"

0 commit comments

Comments
 (0)