Skip to content

Commit 11b9c42

Browse files
committed
Bugfix: can't use masmdue to the ML.EXE haven't been packaged
1 parent 9d44aa0 commit 11b9c42

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.vscodeignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ scripts/work/*
2424
!scripts/work/ignore.txt
2525
tools/dosbox/dosbox-0.74.conf
2626
tools/boxasm.bat
27-
tools/masm/ML.*
2827
scripts/VSC-ExtUse.conf
2928
# ignore i18n
3029
i18n

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22

33
## welcome feedback and contribution [github issue](https://github.com/xsro/masm-tasm/issues)
44

5-
### 0.5.0/0.5.1
5+
### 0.5.0/0.5.1/0.5.2
66

77
- MASM插件更新到 `6.11`,最近在想如何支持`masm6.x`语法
88
- 尝试用异步重写了一些代码,希望不要引入bug
9+
- (0.5.2)修复由于masm无法脱离ml运行而引发的问题
10+
- 如果仍然有问题,可以安装历史版本
911

1012
### 0.4.0
1113

i18n/chs/out/runcode.i18n.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"openemu.msg": "\nMASM/TASM>>打开DOSBox:{0}",
33
"run.msg": "\n{0}({1})>>运行:{2}",
44
"debug.msg": "\n{0}({1})>>调试:{2}",
5-
"runcode.error": "{0}汇编出错,无法运行/调试",
5+
"runcode.error": "{0}汇编出错,无法运行/调试,详细信息见输出面板",
66
"runcode.warn": "成功汇编链接生成EXE,但是汇编时产生了警告信息({0}warning),可能无法运行/调试,是否继续操作",
77
"runcode.continue": "继续",
88
"runcode.stop": ""

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "MASM/TASM",
44
"publisher": "xsro",
55
"description": "DOS汇编语言开发环境和语法支持,win下安装即用,自带DOSBox.exe和TASM/MASM工具",
6-
"version": "0.5.1",
6+
"version": "0.5.2",
77
"keywords": [
88
"dosbox",
99
"16位",

src/runcode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export class AsmAction {
4343
let goon: boolean = false;
4444
switch (code) {
4545
case 0:
46-
let Errmsgwindow = localize("runcode.error", "{0} Error,Can't generate .exe file", MASMorTASM);
46+
let Errmsgwindow = localize("runcode.error", "{0} Error,Can't generate .exe file\nSee Output panel for information", MASMorTASM);
4747
window.showErrorMessage(Errmsgwindow);
4848
break;
4949
case 1:

0 commit comments

Comments
 (0)