Skip to content

Commit 699b0e3

Browse files
authored
v3.23.10 revision
v3.23.10 revision
2 parents 49836f5 + 6f604d1 commit 699b0e3

File tree

17 files changed

+63
-26
lines changed

17 files changed

+63
-26
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ All notable version changes will be recorded in this file.
66

77
***
88

9-
### [v3.23.9] revision
9+
### [v3.23.10] revision
1010

1111
**Improve**:
1212
- `GNU Arm Toolchain`: Support new mcpu: `cortex-m52, cortex-m55, cortex-m85`.
@@ -15,6 +15,8 @@ All notable version changes will be recorded in this file.
1515
- `File Options`: Add memory assignment feature for `AC5`, `AC6` toolchain. Thanks the contributor [Deadline039](https://github.com/Deadline039)
1616
- `File Options GUI`: Update the translation text. Optimize layout.
1717
- `DebugConfig Generator GUI`: Change gui element width. Sort the option result list.
18+
- `AC5/AC6 Assembler`: Support use `<key>=<val>` preprocessor format for AC5/AC6 armasm.
19+
- `Makefile Generator`: Improve makefile generator.
1820

1921
**Fix**:
2022
- `IAR ARM Toolchain`: Miss auto-gen `-I` params for iar assembler.
@@ -23,6 +25,7 @@ All notable version changes will be recorded in this file.
2325

2426
**Change**:
2527
- `EIDE View Container`: By default, we will collapse the `Operations` view.
28+
- `Webpanel Views`: Starting from this version, we will use singleton pattern for `Builder Options View`, `Storage Layout View`, `Cmsis Header Config Wizard`, This means that for each view, only one page can be opened for each project.
2629

2730
***
2831

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"homepage": "https://em-ide.com",
3737
"license": "MIT",
3838
"description": "A mcu development environment for 8051/AVR/STM8/Cortex-M/MIPS/RISC-V",
39-
"version": "3.23.9",
39+
"version": "3.23.10",
4040
"preview": false,
4141
"engines": {
4242
"vscode": "^1.67.0"

package.nls.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@
7070
"eide.explorer.modify.file.path": "Modify File Path",
7171
"eide.explorer.modify.exclude_list": "Modify Source File Exclude List",
7272
"eide.explorer.file.compile": "Compile",
73-
"eide.explorer.file.modify.extraArgs": "Modify Compiler Options",
74-
"eide.explorer.folder.modify.extraArgs": "Modify Compiler Options",
73+
"eide.explorer.file.modify.extraArgs": "Show/Modify Compiler Options",
74+
"eide.explorer.folder.modify.extraArgs": "Show/Modify Compiler Options",
7575

7676
"eide.source.show_cmsis_config_wizard": "CMSIS Configuration Wizard",
7777
"eide.source.show.disassembly": "Show Disassembly",

package.nls.zh-CN.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@
7070
"eide.explorer.modify.file.path": "修改源文件路径",
7171
"eide.explorer.modify.exclude_list": "修改源文件排除列表",
7272
"eide.explorer.file.compile": "编译",
73-
"eide.explorer.file.modify.extraArgs": "修改此文件的编译器选项",
74-
"eide.explorer.folder.modify.extraArgs": "修改此文件夹的编译器选项",
73+
"eide.explorer.file.modify.extraArgs": "查看/修改此文件的编译选项",
74+
"eide.explorer.folder.modify.extraArgs": "查看/修改此文件夹的编译选项",
7575

7676
"eide.source.show_cmsis_config_wizard": "CMSIS Configuration Wizard",
7777
"eide.source.show.disassembly": "查看反汇编",

res/data/models/arm.v5.model.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,11 @@
346346
],
347347
"defines": {
348348
"type": "list",
349-
"command": "--pd "
349+
"command": "--pd ",
350+
"mapper": {
351+
"^\\s*([\\w\\$]+)=(.+)": "\"$1 SETA $2\"",
352+
"^\\s*([\\w\\$]+)\\s*$": "\"$1 SETA 1\""
353+
}
350354
},
351355
"use-microLIB": {
352356
"type": "selectable",

res/data/models/arm.v6.model.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,11 @@
501501
},
502502
"defines": {
503503
"type": "list",
504-
"command": "--pd "
504+
"command": "--pd ",
505+
"mapper": {
506+
"^\\s*([\\w\\$]+)=(.+)": "\"$1 SETA $2\"",
507+
"^\\s*([\\w\\$]+)\\s*$": "\"$1 SETA 1\""
508+
}
505509
},
506510
"use-microLIB": {
507511
"type": "selectable",

res/tools/darwin/unify_builder/arm64/unify_builder.deps.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"targets": {
88
".NETCoreApp,Version=v6.0": {},
99
".NETCoreApp,Version=v6.0/osx-arm64": {
10-
"unify_builder/3.10.3": {
10+
"unify_builder/3.10.4": {
1111
"dependencies": {
1212
"CommandLineParser": "2.9.1",
1313
"ConsoleTableExt": "3.1.9",
@@ -122,7 +122,7 @@
122122
}
123123
},
124124
"libraries": {
125-
"unify_builder/3.10.3": {
125+
"unify_builder/3.10.4": {
126126
"type": "project",
127127
"serviceable": false,
128128
"sha512": ""
512 Bytes
Binary file not shown.

res/tools/darwin/unify_builder/x86_64/unify_builder.deps.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"targets": {
88
".NETCoreApp,Version=v6.0": {},
99
".NETCoreApp,Version=v6.0/osx-x64": {
10-
"unify_builder/3.10.3": {
10+
"unify_builder/3.10.4": {
1111
"dependencies": {
1212
"CommandLineParser": "2.9.1",
1313
"ConsoleTableExt": "3.1.9",
@@ -122,7 +122,7 @@
122122
}
123123
},
124124
"libraries": {
125-
"unify_builder/3.10.3": {
125+
"unify_builder/3.10.4": {
126126
"type": "project",
127127
"serviceable": false,
128128
"sha512": ""
512 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)