Skip to content

Commit

Permalink
v3.21.1 revision
Browse files Browse the repository at this point in the history
  • Loading branch information
github0null committed Jan 19, 2025
1 parent b220a0c commit c31c327
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 6 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ All notable version changes will be recorded in this file.

***

### [v3.21.1] revision

**New**:
- `Map View`: Support show `map.view` file for SDCC and KEIL_C51 toolchain.
- `Scatter File Highlight`: Support a simple arm scatter file (`.sct`) language support.

**Fix**:
- `Program Matcher`: Sometimes armcc problem matcher missed matchs.
- `CMSIS Config Wizard`: Missed skip value for `<e>` tag.

***

### [v3.21.0] update

**New**:
Expand Down
17 changes: 14 additions & 3 deletions lang/syntax/sct.tmLanguage.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
{
"include": "#block_comment"
},
{
"include": "#string"
},
{
"include": "#number"
},
Expand All @@ -41,9 +44,9 @@
}
},
"line_comment": {
"match": "(;.*)",
"match": "(;|\\/\\/).*",
"captures": {
"1": {
"0": {
"name": "comment.line"
}
}
Expand All @@ -53,6 +56,14 @@
"end" : "\\*\\/",
"name": "comment.block"
},
"string": {
"match": "\"([^\"\\\\]*(\\\\.[^\"\\\\]*)*)\"",
"captures": {
"0": {
"name": "string.quoted.double"
}
}
},
"number": {
"match": "(?i)\\b([0-9]+|0x[0-9a-f]+)\\b",
"captures": {
Expand All @@ -62,7 +73,7 @@
}
},
"operators": {
"match": "\\+|-|=",
"match": "\\+|-|\\*|\\/(?!\\/)|\\+=|-=|=|==|<=|>=|!=",
"captures": {
"0": {
"name": "keyword.operator"
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"homepage": "https://em-ide.com",
"license": "MIT",
"description": "A mcu development environment for 8051/AVR/STM8/Cortex-M/MIPS/RISC-V",
"version": "3.21.0",
"version": "3.21.1",
"preview": false,
"engines": {
"vscode": "^1.67.0"
Expand Down

0 comments on commit c31c327

Please sign in to comment.