File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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** :
Original file line number Diff line number Diff line change 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"
Original file line number Diff line number Diff line change @@ -673,7 +673,7 @@ export abstract class ArmBaseCompileConfigModel
673673 }
674674
675675 private parseIntNumber ( str : string ) : number {
676- if ( / ^ \s * 0 x / i. test ( str ) ) {
676+ if ( / ^ \s * 0 x / i. test ( str ) || / [ a - f ] / i . test ( str ) ) {
677677 return parseInt ( str . replace ( '0X' , '' ) , 16 ) ;
678678 } else {
679679 return parseInt ( str ) ;
You can’t perform that action at this time.
0 commit comments