Skip to content

Commit ff4eb14

Browse files
committed
v2.1.1
1 parent c2e5517 commit ff4eb14

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,20 @@ All notable changes to the "pico-w-go" extension will be documented in this file
77
## Known issues
88
- Run current file does not include modules that are localy imported and in current workspace, unless you upload the python file containing the module via the upload file or project feature first. (since ever)
99
- CtrlCOnConnect settings does no rerender "Pico Disconnect" button correctly. Also does not enter repl correctly. Not impact on functionality just UI! (since v2.1.0)
10-
- Some users have problems with stubs not linking into workspace after running "Configure Project". Maybe related to permission errors for symlink creation on these systems. As a workaround you can find a PowerShell script [here](https://github.com/paulober/Pico-W-Go/files/9651807/Configure-Project.zip) or in the repository contained folder called "scripts" named "Configure-Project.ps1".
10+
- Some users have problems with stubs not linking into workspace after running "Configure Project". Maybe related to permission errors for symlink creation on these systems. As a workaround you can find a PowerShell script [here](https://github.com/paulober/Pico-W-Go/files/9651807/Configure-Project.zip) or in the repository contained folder called "scripts" named "Configure-Project.ps1". As an alternative often it does fix the issue by just running VS Code as an administrator (just to run the initial configure project command).
1111

1212
---
1313

1414
## [Unreleased]
1515

1616
- Remove telnet and unix socket interfaces as they are never used and unable to connect to any plain MicroPython Raspberry Pi Pico (W) board
17+
- Mounting the MicroPython filesystem into VS Code as a remote workspace.
18+
19+
## [2.1.1] - 2022-10-27
20+
21+
### Changed
22+
- Fixes #23, Configure project command does not link Stubs. By changing the type of the symbolic link from a directory link to a directory junction.
23+
- Updated stubs to 'Firmware 1.19.1-594'
1724

1825
## [2.1.0] - 2022-09-24
1926

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Pico-W-Go provides code auto-completion and allows you to communicate with your Raspberry Pi Pico (W) board using the built-in REPL console. Run a single file on your board, sync your entire project or directly type and execute commands.
44

5-
> __Auto-completion based on Raspberry Pi Pico W MicroPython firmware: [rp2-pico-w-20220909-unstable-v1.19.1-389-g4903e48e3.uf2](https://micropython.org/resources/firmware/rp2-pico-w-20220909-unstable-v1.19.1-389-g4903e48e3.uf2)__
5+
> __Auto-completion based on Raspberry Pi Pico W MicroPython firmware: [rp2-pico-w-20221027-unstable-v1.19.1-594-g65fa7fd8b.uf2](https://micropython.org/resources/firmware/rp2-pico-w-20221027-unstable-v1.19.1-594-g65fa7fd8b.uf2)__
66
77
This software is originally based on [Pico-Go](https://github.com/cpwood/Pico-Go) by cpwood.
88

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "pico-w-go",
33
"displayName": "Pico-W-Go",
44
"description": "Autocompletion and a REPL console for the Raspberry Pi Pico (W).",
5-
"version": "2.1.0",
5+
"version": "2.1.1",
66
"publisher": "paulober",
77
"license": "SEE LICENSE IN LICENSE.md",
88
"homepage": "https://github.com/paulober/Pico-W-Go/blob/main/README.md",

src/stubsManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export default class StubsManager {
9090
await fsp.symlink(
9191
path.resolve(path.join(configFolder, 'Pico-W-Stub')),
9292
path.join(vsc, 'Pico-W-Stub'),
93-
'dir'
93+
'junction'
9494
);
9595
}
9696
}

0 commit comments

Comments
 (0)