Skip to content

Commit db9a30f

Browse files
authored
Merge pull request #31 from paulober/develop
v2.1.1 develop merge
2 parents c5f93ef + ff4eb14 commit db9a30f

File tree

7 files changed

+13
-59
lines changed

7 files changed

+13
-59
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
}

stubs/stdlib/usys.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ stdin : Any ## <class 'FileIO'> = <io.FileIO 0>
6969
"""Standard input ``stream``."""
7070
stdout : Any ## <class 'FileIO'> = <io.FileIO 1>
7171
"""Standard output ``stream``."""
72-
version = '3.4.0; MicroPython v1.19.1 on 2022-09-09' # type: str
72+
version = '3.4.0; MicroPython v1.19.1 on 2022-10-27' # type: str
7373
"""Python language version that this implementation conforms to, as a string."""
7474
version_info = () # type: tuple
7575
"""Python language version that this implementation conforms to, as a tuple of ints."""

stubs/stubs/upip_utarfile/upip_utarfile.pyi

Lines changed: 0 additions & 53 deletions
This file was deleted.

stubs/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version": "1.19.1-389-1"}
1+
{"version": "1.19.1-594"}

0 commit comments

Comments
 (0)