Skip to content

Commit

Permalink
Merge pull request #261 from paulober/develop
Browse files Browse the repository at this point in the history
Patch v4.1.0
  • Loading branch information
paulober authored Nov 18, 2024
2 parents ce1d3eb + 6b38b4e commit 147757d
Show file tree
Hide file tree
Showing 11 changed files with 799 additions and 538 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,25 @@ All notable changes to the "MicroPico" extension will be documented in this file

---

## [4.1.0] - 2024-11-18

### Added

- Restore behavior for terminal content if an external action is triggered and takes over the terminal (like run file)
- Boot.py warnings when performing hard resets
- `micropico.redirectOutput` experimental command to redirect output of operations like running files into other target than the terminal (like a file)

### Changed

- Updated dependencies
- Upgraded to `pyboard-serial-com` `v1.0.21` (Fixes #254)
- Better Python utilization in stub switcher
- Switch to release build for Pico 2 auto installs
- Configure project command has been renamed to `Setup MicroPico project`
- Reload settings before uploading and downloading projects to detect settings changes
- SyncFolder auto-detection based on `.micropico` file location if not set
- All settings are now scoped `machine-overridable`

## [4.0.6] - 2024-09-16

### Added
Expand Down
3 changes: 3 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ export default tseslint.config(
"@typescript-eslint/naming-convention": "warn",
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-unused-expressions": ["error", { "allowShortCircuit": true }],
"@typescript-eslint/dot-notation": ["error", { "allowKeywords": true }],
"@typescript-eslint/no-empty-function": ["warn", { "allow": ["arrowFunctions"] }],
"@typescript-eslint/array-type": ["error", { default: "array-simple" }],
"@typescript-eslint/consistent-type-imports": ["error", { prefer: "type-imports" }],
"@typescript-eslint/explicit-function-return-type": ["error", { allowExpressions: true }],
Expand Down
Loading

0 comments on commit 147757d

Please sign in to comment.