Skip to content

Commit a09050c

Browse files
committed
v3.3.0 update
1 parent 3c6b58e commit a09050c

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
***
66

7-
### [v3.2.2022xxxxxx] pre-release version
7+
### [v3.3.0]
88

99
**Optimized**:
1010
- Optimize openocd flash command-line.
11-
- Allow show disasm for `elf` or `axf`.
11+
- Allow show disasm for `elf`/`axf`.
1212

1313
**Fixed**:
1414
- Cannot provide C/C++ intellisense configuration for files that contain symbol links for `linux` platform.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
## Summary 📑
1010

11-
> Supported Platforms: **Windows (Windows 7 SP1 and later)**, **Linux (Ubuntu)**
11+
> Supported Platforms: **Windows (Windows 7 SP1 and later)**, **Linux x86_64 (Ubuntu)**
1212
1313
An embedded development environment for `8051/AVR/STM8/Cortex-M[0/0+/3/4/7]/RISC-V/Universal-Gcc` on VsCode.
1414

README_ZH-CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## 简述 📑
88

9-
> 受支持的平台: **Windows (Windows 7 SP1 and later)**, **Linux (Ubuntu)**
9+
> 受支持的平台: **Windows (Windows 7 SP1 and later)**, **Linux x86_64 (Ubuntu)**
1010
1111
一款适用于 8051/STM8/Cortex-M/RISC-V 的单片机开发环境。
1212

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"stm32",
1818
"c51",
1919
"8051",
20+
"avr",
2021
"mcs51",
2122
"stm8",
2223
"sdcc",
@@ -28,8 +29,8 @@
2829
],
2930
"homepage": "https://github.com/github0null/eide/blob/master/README.md",
3031
"license": "MIT",
31-
"description": "An embedded development environment for 8051/STM8/Cortex-M/RISC-V",
32-
"version": "3.2.2022041202",
32+
"description": "An embedded development environment for 8051/AVR/STM8/Cortex-M/RISC-V",
33+
"version": "3.3.0",
3334
"preview": false,
3435
"engines": {
3536
"vscode": "^1.63.0"

src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export async function activate(context: vscode.ExtensionContext) {
5757
// check platform, exit
5858
const supportedOs: NodeJS.Platform[] = ['win32', 'linux'];
5959
if (!supportedOs.includes(os.platform())) {
60-
vscode.window.showErrorMessage(`${ERROR} : This plug-in is only for '${supportedOs.join(',')}' platform, your pc is '${os.platform()}' !`);
60+
vscode.window.showErrorMessage(`${ERROR} : This plug-in is only for '${supportedOs.join('/')}' platform, your pc is '${os.platform()}' !`);
6161
return;
6262
}
6363

@@ -67,7 +67,7 @@ export async function activate(context: vscode.ExtensionContext) {
6767
platformArch = ChildProcess.execSync(`arch`).toString().trim();
6868
platformType = `linux-${platformArch}`;
6969
if (!archLi.includes(platformArch)) {
70-
vscode.window.showErrorMessage(`${ERROR} : This plug-in is only support '${archLi.join(',')}' arch, your pc is '${platformArch}' !`);
70+
vscode.window.showErrorMessage(`${ERROR} : This plug-in is only support '${archLi.join('/')}' arch, your pc is '${platformArch}' !`);
7171
return;
7272
}
7373
}

0 commit comments

Comments
 (0)