File tree Expand file tree Collapse file tree 3 files changed +21
-3
lines changed
Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,24 @@ All notable version changes will be recorded in this file.
66
77***
88
9+ ### [ v3.26.2] revision
10+
11+ ** New** :
12+ - ` Symbol Table View ` : New symbol table UI (with c++ symbol name demangler).
13+
14+ ** Fix** :
15+ - ` Toolchain Options ` : Fix [ issue 495] ( https://github.com/github0null/eide/issues/495 )
16+ - ` Project Importer ` : Fix [ issue 491] ( https://github.com/github0null/eide/issues/491 )
17+ - ` axf2elf Tool ` : ELF files too large when addresses not contiguous. [ PR 6] ( https://github.com/github0null/eide_tools/pull/6 )
18+
19+ ** Improve** :
20+ - ` unify_builder ` : Use independent lock file instead of ` unify_builder.log ` file.
21+ - ` Debug Config Provider ` : Add chipDescriptionPath support for probe-rs. [ PR 499] ( https://github.com/github0null/eide/pull/499 )
22+ - ` memap View ` : Update memap command.
23+ - ` Intellisense Provider ` : Update armclang lint file.
24+
25+ ***
26+
927### [ v3.26.1] revision
1028
1129** Fix** :
Original file line number Diff line number Diff line change 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.26.1 " ,
39+ "version" : " 3.26.2 " ,
4040 "preview" : false ,
4141 "engines" : {
4242 "vscode" : " ^1.67.0"
444444 "type" : " boolean" ,
445445 "scope" : " resource" ,
446446 "markdownDescription" : " %settings.armcc.convert.axf%" ,
447- "default" : false
447+ "default" : true
448448 },
449449 "EIDE.STM8.STVP.CliExePath" : {
450450 "type" : " string" ,
Original file line number Diff line number Diff line change 635635 console . log ( "Go To Definition loca:" , loca ) ;
636636 let absPath ;
637637 let lineNumber ;
638- const m = / ( .* ?) ( : \d + ) ? $ / . exec ( loca ) ;
638+ const m = / ( .+ ?) ( : \d + ) ? $ / . exec ( loca ) ;
639639 if ( m && m . length > 1 ) {
640640 absPath = m [ 1 ] . trim ( ) ;
641641 if ( m . length > 2 && m [ 2 ] )
You can’t perform that action at this time.
0 commit comments