Skip to content

Commit 5d286b4

Browse files
committed
v3.18.0
1 parent 2fa0613 commit 5d286b4

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,29 @@ All notable version changes will be recorded in this file.
66

77
***
88

9+
### [v3.18.0] update
10+
11+
**Incompatible Changes**:
12+
- `Chip Support Package`:
13+
- Remove folder: `.eide/deps` and use VirtualFolder `<virtual_root>/<deps>` instead it.
14+
- The Chip Support Package in older projects will become invalid. And you need to reinstall chip-package and reinstall all CMSIS components.
15+
16+
**New**:
17+
- `Cortex-Debug Configuration Generator`: A new Debugger Configuration Generator with a simple GUI.
18+
- `pyOCD Flasher UI`: Support append additional cli command when program flash.
19+
- `VSCODE_PORTABLE`: Support `VSCODE_PORTABLE` environment variables.
20+
21+
**Fix**:
22+
- `Project Environment`: Project environment variables missed.
23+
24+
**Change**:
25+
- `Builder Configuration UI (SDCC)`: Automatic get processors list by execute command: `sdcc -v`
26+
27+
**Optimize**
28+
- `MDK Project Import`: Optimize import `Keil User Command`.
29+
30+
***
31+
932
### [v3.17.3] preview
1033

1134
**New**:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"homepage": "https://em-ide.com",
3939
"license": "MIT",
4040
"description": "A mcu development environment for 8051/AVR/STM8/Cortex-M/MIPS/RISC-V",
41-
"version": "3.17.3",
41+
"version": "3.18.0",
4242
"preview": false,
4343
"engines": {
4444
"vscode": "^1.67.0"

src/StringTable.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -424,8 +424,8 @@ export const view_str$prompt$userCanceledOperation = [
424424
][langIndex];
425425

426426
export const view_str$prompt$chipPkgNotCompateThisVersion = [
427-
`不兼容的项目,'芯片支持包' 功能在新版本的 eide 中发生了变化,点击 '继续' 将强制打开项目并移除不兼容的数据,点击 '取消' 则退出。`,
428-
`Incompatible project, the 'Chip Support Package' function has changed in the new version of eide, clicking 'Continue' will force the project to open, and clicking 'Cancel' will cancel the opening.`
427+
`不兼容的项目,'芯片支持包' 功能在 v3.18.0 版本的 eide 中发生了变化([更新日志](https://marketplace.visualstudio.com/items/CL.eide/changelog)),点击 '继续' 将强制打开项目并移除不兼容的数据,点击 '取消' 则退出。`,
428+
`Incompatible project, the 'Chip Support Package' function has changed in the version v3.18.0 of eide ([ChangeLog](https://marketplace.visualstudio.com/items/CL.eide/changelog)), clicking 'Continue' will force the project to open, and clicking 'Cancel' will cancel the opening.`
429429
][langIndex];
430430

431431
export const view_str$prompt$removeSrcDir = [

0 commit comments

Comments
 (0)