Skip to content

Commit 147757d

Browse files
authored
Merge pull request #261 from paulober/develop
Patch v4.1.0
2 parents ce1d3eb + 6b38b4e commit 147757d

File tree

11 files changed

+799
-538
lines changed

11 files changed

+799
-538
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,25 @@ All notable changes to the "MicroPico" extension will be documented in this file
1010

1111
---
1212

13+
## [4.1.0] - 2024-11-18
14+
15+
### Added
16+
17+
- Restore behavior for terminal content if an external action is triggered and takes over the terminal (like run file)
18+
- Boot.py warnings when performing hard resets
19+
- `micropico.redirectOutput` experimental command to redirect output of operations like running files into other target than the terminal (like a file)
20+
21+
### Changed
22+
23+
- Updated dependencies
24+
- Upgraded to `pyboard-serial-com` `v1.0.21` (Fixes #254)
25+
- Better Python utilization in stub switcher
26+
- Switch to release build for Pico 2 auto installs
27+
- Configure project command has been renamed to `Setup MicroPico project`
28+
- Reload settings before uploading and downloading projects to detect settings changes
29+
- SyncFolder auto-detection based on `.micropico` file location if not set
30+
- All settings are now scoped `machine-overridable`
31+
1332
## [4.0.6] - 2024-09-16
1433

1534
### Added

eslint.config.mjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ export default tseslint.config(
3939
"@typescript-eslint/naming-convention": "warn",
4040
"@typescript-eslint/no-unused-vars": "warn",
4141
"@typescript-eslint/no-explicit-any": "warn",
42+
"@typescript-eslint/no-unused-expressions": ["error", { "allowShortCircuit": true }],
43+
"@typescript-eslint/dot-notation": ["error", { "allowKeywords": true }],
44+
"@typescript-eslint/no-empty-function": ["warn", { "allow": ["arrowFunctions"] }],
4245
"@typescript-eslint/array-type": ["error", { default: "array-simple" }],
4346
"@typescript-eslint/consistent-type-imports": ["error", { prefer: "type-imports" }],
4447
"@typescript-eslint/explicit-function-return-type": ["error", { allowExpressions: true }],

0 commit comments

Comments
 (0)