Skip to content

Commit

Permalink
Merge branch 'hotfix/v2.5.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Sep 3, 2022
2 parents 56beb23 + 8ab6b1f commit ad520c9
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 2.5.3 (2022-09-03)

- Fixed an issue when Project Tasks are disabled in the VSCode v1.71 (issue [#3299](https://github.com/platformio/platformio-vscode-ide/issues/3299))

## 2.5.2 (2022-08-12)

- Fixed an issue when project tasks with a title didn't work (issue [#3274](https://github.com/platformio/platformio-vscode-ide/issues/3274))
Expand Down
11 changes: 5 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "platformio-ide",
"version": "2.5.2",
"version": "2.5.3",
"publisher": "platformio",
"engines": {
"vscode": "^1.63.0"
Expand Down Expand Up @@ -95,8 +95,7 @@
{
"command": "platformio-ide.privateRunTask",
"title": "Custom task runner (private)",
"category": "PlatformIO",
"enablement": "false"
"category": "PlatformIO"
},
{
"command": "platformio-ide.showHome",
Expand Down Expand Up @@ -632,18 +631,18 @@
"platformio-vscode-debug": "~1.4.1"
},
"devDependencies": {
"@babel/core": "~7.18.10",
"@babel/core": "~7.18.13",
"@babel/eslint-parser": "~7.18.9",
"@babel/plugin-proposal-class-properties": "~7.18.6",
"@babel/preset-env": "~7.18.10",
"@types/node": "~14",
"@types/vscode": "~1.63.0",
"babel-loader": "~8.2.5",
"eslint": "~8.21.0",
"eslint": "~8.23.0",
"eslint-import-resolver-webpack": "~0.13.2",
"eslint-plugin-import": "~2.26.0",
"prettier": "~2.7.1",
"vsce": "~2.10.0",
"vsce": "~2.11.0",
"webpack": "~5.74.0",
"webpack-cli": "~4.10.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/misc.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export async function warnAboutInoFile(editor, stateStorage) {
case 'Show instruction':
vscode.commands.executeCommand(
'vscode.open',
vscode.Uri.parse('http://bit.ly/ino2cpp')
vscode.Uri.parse('https://bit.ly/convert-ino-to-cpp')
);
break;
case 'Do not show again':
Expand Down

0 comments on commit ad520c9

Please sign in to comment.