Skip to content

Commit 4f8a957

Browse files
committed
v3.11.2 update
1 parent 4e657b0 commit 4f8a957

3 files changed

Lines changed: 17 additions & 2 deletions

File tree

CHANGELOG.md

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

77
***
88

9+
### [v3.11.2] update
10+
11+
**New**:
12+
- `Disassembly View`: Add 'Visualize Jumps' for disassembly code, [more informations](https://interrupt.memfault.com/blog/gnu-binutils#new-feature-visualize-jumps)
13+
- `Language Mode`: Add a setting `EIDE.DisplayLanguage` to choose a language for UI, prompts.
14+
15+
**Fix**:
16+
- `Memory Layout View`: Error format when user input an integer number.
17+
18+
**Optimize**:
19+
- `Utility Tools`: Use `start` command to install win32 driver.
20+
- `Promblem Matcher`: Match compiler errors in linker logs.
21+
22+
***
23+
924
### [v3.11.1] update
1025

1126
**New**:

package.json

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

src/EIDEProjectModules.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ export abstract class ArmBaseCompileConfigModel
673673
}
674674

675675
private parseIntNumber(str: string): number {
676-
if (/^\s*0x/i.test(str)) {
676+
if (/^\s*0x/i.test(str) || /[a-f]/i.test(str)) {
677677
return parseInt(str.replace('0X', ''), 16);
678678
} else {
679679
return parseInt(str);

0 commit comments

Comments
 (0)