Skip to content

Commit 4ac589a

Browse files
committed
v3.26.2 revision
1 parent f3d7442 commit 4ac589a

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff 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**:

package.json

Lines changed: 2 additions & 2 deletions
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.26.1",
39+
"version": "3.26.2",
4040
"preview": false,
4141
"engines": {
4242
"vscode": "^1.67.0"
@@ -444,7 +444,7 @@
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",

res/html/symbol_table/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@
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])

0 commit comments

Comments
 (0)