Skip to content

Commit

Permalink
Merge pull request #274 from paulober/develop
Browse files Browse the repository at this point in the history
Patch v4.2.0
  • Loading branch information
paulober authored Jan 17, 2025
2 parents 147757d + 9c5eae7 commit d953379
Show file tree
Hide file tree
Showing 9 changed files with 573 additions and 324 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@ All notable changes to the "MicroPico" extension will be documented in this file

---

## [4.2.0] - 2025-01-17

### Changed

- Updated dependencies
- Configure project command has been renamed to `Initialize MicroPico project`
- Fixed #269, Frozen 'Stop' button after running unplugging
- Refined the disconnect behavior

## [4.1.0] - 2024-11-18

### Added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ On most Linux installations the device file of the Pico serial port is owned by

## Getting started

- First of all open a folder and run `> MicroPico > Configure Project` command via `Ctrl+Shift+P` (or the equivalent on your platform) VS Code command palette. This will import stubs for autocompletion and the settings into your project folder. For the autocompletion to work, the extension prompts you (after project configuration) to install recommended extensions mentioned in [\#Requirements](#requirements).
- First of all open a folder and run `> MicroPico > Initialize MicroPico Project` command via `Ctrl+Shift+P` (or the equivalent on your platform) VS Code command palette. This will import stubs for autocompletion and the settings into your project folder. For the autocompletion to work, the extension prompts you (after project configuration) to install recommended extensions mentioned in [\#Requirements](#requirements).

- Have the onboard LED flashing in under 5 minutes:

Expand Down
666 changes: 411 additions & 255 deletions package-lock.json

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pico-w-go",
"displayName": "MicroPico",
"description": "Auto-completion, remote workspace and a REPL console integration for the Raspberry Pi Pico boards running MicroPython firmware.",
"version": "4.1.0",
"version": "4.2.0",
"publisher": "paulober",
"license": "MPL-2.0",
"homepage": "https://github.com/paulober/MicroPico/blob/main/README.md",
Expand Down Expand Up @@ -80,7 +80,7 @@
},
{
"command": "micropico.initialise",
"title": "Setup MicroPico project",
"title": "Initialize MicroPico project",
"enablement": "(resourceScheme != pico && isFileSystemResource) || inQuickOpen",
"category": "MicroPico"
},
Expand Down Expand Up @@ -648,39 +648,39 @@
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@eslint/js": "^9.18.0",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@serialport/bindings-cpp": "^12.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@serialport/bindings-cpp": "^13.0.1",
"@types/eslint": "^9.6.1",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.13",
"@types/lodash": "^4.17.14",
"@types/node": "^20.14",
"@types/uuid": "^10.0.0",
"@types/vscode": "^1.92.0",
"@types/which": "^3.0.4",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"patch-package": "^8.0.0",
"rollup": "^4.27.2",
"rollup": "^4.30.1",
"rollup-plugin-copy": "^3.5.0",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"dependencies": {
"@paulober/pico-mpy-com": "^1.0.21",
"@vscode/python-extension": "^1.0.5",
"axios": "^1.7.7",
"fs-extra": "^11.2.0",
"fs-extra": "^11.3.0",
"lodash": "^4.17.21",
"rimraf": "^6.0.1",
"undici": "^6.21.0",
"uuid": "^11.0.3",
"uuid": "^11.0.5",
"which": "^5.0.0"
},
"packageManager": "[email protected]+sha512.d08425c8062f56d43bb8e84315864218af2492eb769e1f1ca40740f44e85bd148969382d651660363942e5909cb7ffcbef7ca0ae963ddc2c57a51243b4da8f56"
Expand Down
File renamed without changes.
Loading

0 comments on commit d953379

Please sign in to comment.