Skip to content

Commit ad520c9

Browse files
committed
Merge branch 'hotfix/v2.5.3'
2 parents 56beb23 + 8ab6b1f commit ad520c9

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
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.5.3 (2022-09-03)
4+
5+
- Fixed an issue when Project Tasks are disabled in the VSCode v1.71 (issue [#3299](https://github.com/platformio/platformio-vscode-ide/issues/3299))
6+
37
## 2.5.2 (2022-08-12)
48

59
- Fixed an issue when project tasks with a title didn't work (issue [#3274](https://github.com/platformio/platformio-vscode-ide/issues/3274))

package.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "platformio-ide",
3-
"version": "2.5.2",
3+
"version": "2.5.3",
44
"publisher": "platformio",
55
"engines": {
66
"vscode": "^1.63.0"
@@ -95,8 +95,7 @@
9595
{
9696
"command": "platformio-ide.privateRunTask",
9797
"title": "Custom task runner (private)",
98-
"category": "PlatformIO",
99-
"enablement": "false"
98+
"category": "PlatformIO"
10099
},
101100
{
102101
"command": "platformio-ide.showHome",
@@ -632,18 +631,18 @@
632631
"platformio-vscode-debug": "~1.4.1"
633632
},
634633
"devDependencies": {
635-
"@babel/core": "~7.18.10",
634+
"@babel/core": "~7.18.13",
636635
"@babel/eslint-parser": "~7.18.9",
637636
"@babel/plugin-proposal-class-properties": "~7.18.6",
638637
"@babel/preset-env": "~7.18.10",
639638
"@types/node": "~14",
640639
"@types/vscode": "~1.63.0",
641640
"babel-loader": "~8.2.5",
642-
"eslint": "~8.21.0",
641+
"eslint": "~8.23.0",
643642
"eslint-import-resolver-webpack": "~0.13.2",
644643
"eslint-plugin-import": "~2.26.0",
645644
"prettier": "~2.7.1",
646-
"vsce": "~2.10.0",
645+
"vsce": "~2.11.0",
647646
"webpack": "~5.74.0",
648647
"webpack-cli": "~4.10.0"
649648
},

src/misc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export async function warnAboutInoFile(editor, stateStorage) {
113113
case 'Show instruction':
114114
vscode.commands.executeCommand(
115115
'vscode.open',
116-
vscode.Uri.parse('http://bit.ly/ino2cpp')
116+
vscode.Uri.parse('https://bit.ly/convert-ino-to-cpp')
117117
);
118118
break;
119119
case 'Do not show again':

0 commit comments

Comments
 (0)