Skip to content

Commit 3224ff0

Browse files
committed
v3.15.1
1 parent b7ca230 commit 3224ff0

File tree

2 files changed

+18
-9
lines changed

2 files changed

+18
-9
lines changed

CHANGELOG.md

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

77
***
88

9+
### [v3.15.1] update
10+
11+
**Optimize**:
12+
- `GCC Compiler Driver`: Auto select gcc/g++ for c/c++ source files; Support new linker option `Linker Driver`.
13+
- `MDK Project Import`: Support import keil project's User Commands (BeforeMake and AfterMake commands).
14+
- `RightClick Menu`: Optimize menu item order.
15+
16+
***
17+
918
### [v3.15.0] update
1019

1120
**New**:

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"homepage": "https://em-ide.com",
3939
"license": "MIT",
4040
"description": "A mcu development environment for 8051/AVR/STM8/Cortex-M/MIPS/RISC-V",
41-
"version": "3.15.0",
41+
"version": "3.15.1",
4242
"preview": false,
4343
"engines": {
4444
"vscode": "^1.67.0"
@@ -1272,12 +1272,12 @@
12721272
{
12731273
"command": "_cl.eide.project.cppcheck.check_all",
12741274
"when": "viewItem == SOLUTION && view == cl.eide.view.projects",
1275-
"group": "z_group@0"
1275+
"group": "z_group0@0"
12761276
},
12771277
{
12781278
"command": "_cl.eide.project.cppcheck.clear_all",
12791279
"when": "viewItem == SOLUTION && view == cl.eide.view.projects",
1280-
"group": "z_group@1"
1280+
"group": "z_group0@1"
12811281
},
12821282

12831283

@@ -1304,17 +1304,17 @@
13041304
{
13051305
"command": "_cl.eide.project.source.modify.path",
13061306
"when": "viewItem == PROJECT || viewItem == V_FOLDER || viewItem == V_FOLDER_ROOT || viewItem == V_FILE_ITEM || viewItem == V_EXCFILE_ITEM && view == cl.eide.view.projects",
1307-
"group": "2_modify"
1307+
"group": "z_group0@1"
13081308
},
13091309
{
13101310
"command": "_cl.eide.project.source.modify.exclude_list",
13111311
"when": "viewItem == PROJECT && view == cl.eide.view.projects",
1312-
"group": "2_modify"
1312+
"group": "z_group0@1"
13131313
},
13141314
{
13151315
"command": "_cl.eide.project.modify.files.options",
13161316
"when": "viewItem == PROJECT && view == cl.eide.view.projects",
1317-
"group": "z_group@1"
1317+
"group": "z_group0@1"
13181318
},
13191319

13201320

@@ -1391,17 +1391,17 @@
13911391
{
13921392
"command": "_cl.eide.project.source.file.modify.extraArgs",
13931393
"when": "viewItem == FILE_ITEM || viewItem == V_FILE_ITEM && view == cl.eide.view.projects",
1394-
"group": "z_group@1"
1394+
"group": "z_group0@1"
13951395
},
13961396
{
13971397
"command": "_cl.eide.project.source.folder.modify.extraArgs",
13981398
"when": "viewItem == FOLDER || viewItem == FOLDER_ROOT || viewItem == V_FOLDER || viewItem == V_FOLDER_ROOT && view == cl.eide.view.projects",
1399-
"group": "z_group@1"
1399+
"group": "z_group0@1"
14001400
},
14011401
{
14021402
"command": "_cl.eide.project.source.file.show.dir",
14031403
"when": "viewItem == OUTPUT_FILE_ITEM || viewItem == FILE_ITEM || viewItem == EXCFILE_ITEM || viewItem == V_FILE_ITEM || viewItem == V_EXCFILE_ITEM && view == cl.eide.view.projects",
1404-
"group": "z_group@1"
1404+
"group": "z_group1@1"
14051405
},
14061406

14071407

0 commit comments

Comments
 (0)