Skip to content

Commit

Permalink
v1.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
paulober committed Aug 10, 2022
1 parent d73d757 commit 97aeaba
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
# Changelog

## [v1.5.0](https://github.com/paulober/Pico-Go/tree/v1.5.0) (2022-08-08)
## [v1.5.3](https://github.com/paulober/Pico-W-Go/tree/v1.5.3) (2022-08-10)

[Full Changelog](https://github.com/paulober/Pico-Go/compare/v1.4.3...v1.5.0)
[Full Changelog](https://github.com/paulober/Pico-W-Go/compare/v1.5.0...v1.5.3)

Compatibility with VS Code 1.70

**Implemented New Features**

- Fixed stub download

## [v1.5.0](https://github.com/paulober/Pico-W-Go/tree/v1.5.0) (2022-08-10)

[Full Changelog](https://github.com/paulober/Pico-W-Go/compare/v1.4.3...v1.5.0)

Compatibility with VS Code 1.70

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pico-w-go",
"displayName": "Pico-Go (W)",
"description": "Autocompletion and a REPL console for the Raspberry Pi Pico (W).",
"version": "1.5.2",
"version": "1.5.3",
"publisher": "paulober",
"repository": "https://github.com/paulober/Pico-W-Go",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion src/stubs/stubs-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export default class StubsManager {
async _addStubs(vsc) {
if (!await Utils.exists(path.join(vsc, 'Pico-W-Stub'))) {
let configFolder = Utils.getConfigPath();
await fsp.symlink(path.resolve(path.join(configFolder, 'Pico-W-Stub')), path.resolve(path.join(vsc, 'Pico-Stub')), 'junction');
await fsp.symlink(path.resolve(path.join(configFolder, 'Pico-W-Stub')), path.resolve(path.join(vsc, 'Pico-W-Stub')), 'junction');
}
}

Expand Down

0 comments on commit 97aeaba

Please sign in to comment.