Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ All notable version changes will be recorded in this file.

***

### [v3.24.1] update
### [v3.24.2] update

**New**:
- `8051 Toolchain`: Support new SDCC + Binutils Toolchain for mcs51 https://github.com/github0null/sdcc-binutils-mcs51/blob/master/README_zh.md
Expand Down
5 changes: 0 additions & 5 deletions lang/sdcc.mcs51.verify.json
Original file line number Diff line number Diff line change
Expand Up @@ -203,11 +203,6 @@
true,
false
]
},
"misc-controls": {
"markdownDescription": "Other Global Options",
"description.zh-cn": "编译器附加选项(全局)",
"$ref": "#/definitions/misc-controls"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"homepage": "https://em-ide.com",
"license": "MIT",
"description": "A mcu development environment for 8051/AVR/STM8/Cortex-M/MIPS/RISC-V",
"version": "3.24.1",
"version": "3.24.2",
"preview": false,
"engines": {
"vscode": "^1.67.0"
Expand Down
6 changes: 0 additions & 6 deletions res/data/models/sdcc.mcs51.model.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,12 +175,6 @@
"toolPath": "bin/i51-elf-objcopy",
"outputSuffix": ".hex",
"command": "-O ihex ${linkerOutput} ${output}"
},
{
"name": "output bin file",
"toolPath": "bin/i51-elf-objcopy",
"outputSuffix": ".bin",
"command": "-O binary ${linkerOutput} ${output}"
}
]
},
Expand Down
2 changes: 1 addition & 1 deletion src/EIDETypeDefine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1565,7 +1565,7 @@ export class WorkspaceConfiguration extends Configuration<WorkspaceConfig> {
// workspace only can be force save, because user will modify this file,
// so we can not override it
Save(force?: boolean) {
if (force || !this.isLoadFailed)
if (force)
super.Save();
}

Expand Down