Skip to content

Commit 3ae15a4

Browse files
committed
📦 update package related codes
remove unused codes update changelod
1 parent 4e708cb commit 3ae15a4

File tree

7 files changed

+14
-27
lines changed

7 files changed

+14
-27
lines changed

.vscodeignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ LICENSE
2323
samples/
2424

2525
# only package some file of tools folder to control the package size
26+
web/index.html
27+
web/test.jsdos
2628
tools/**.log
2729
#dosbox
2830
tools/dosbox/dosbox-0.74.conf

CHANGELOG.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,11 @@
22

33
## A VSCode Extension for learning DOS assembly(MASM/TASM) via DOSBox
44

5-
## 0.8.5/0.8.6
5+
# 0.9.0
66

7-
- (0.8.5)修复文件有时无法正确获取的问题
8-
- (0.8.6)为防止通过状态栏修改了配置但是更改不体现的情况,所以该版本配置直接更新到工作区。
9-
10-
## 0.8.4
11-
12-
- 增加悬浮提示信息来源:从[felixcloutier](https://www.felixcloutier.com/x86/)[msvc](https://docs.microsoft.com/cpp/assembler/masm/)加载悬浮提示信息
13-
- 增加一个简单的状态条
7+
- 更新JSDos到[v7](https://js-dos.com/)
8+
- 为防止通过状态栏修改了配置但是更改不体现的情况,所以该版本配置直接更新到工作区。
9+
- 简化代码结构
1410

1511
## 0.8.0
1612

@@ -22,6 +18,9 @@
2218
- 修复*问题输出*相关的一些问题
2319
- jsdos模式下复制文件到webview时,使插件自动清除只有注释的行,因为不清除似乎会出现`非法指令`的报错
2420
- (0.8.3)fix #15: 使用dosbox调试代码的时候误调用运行代码的指令
21+
- (0.8.4)增加悬浮提示信息来源:从[felixcloutier](https://www.felixcloutier.com/x86/)[msvc](https://docs.microsoft.com/cpp/assembler/masm/)加载悬浮提示信息
22+
- (0.8.4)增加一个简单的状态条
23+
- (0.8.5)修复文件有时无法正确获取的问题
2524

2625
## 0.7.0
2726

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ steps:
5353

5454
- bash: |
5555
echo ">>> Publish"
56-
npm run publish
56+
yarn deploy
5757
displayName: Publish
5858
condition: and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/'), eq(variables['Agent.OS'], 'Linux'))
5959
env:

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,10 +220,10 @@
220220
"masmtasm.jsdos.viewColumn": {
221221
"markdownDescription": "%config.jsdos.viewColumn%",
222222
"type": "string",
223-
"default": "beside",
223+
"default": "Beside",
224224
"enum": [
225-
"besides",
226-
"active"
225+
"Beside",
226+
"Active"
227227
],
228228
"enumDescriptions": [
229229
"%config.jsdos.viewColumn.Active%",
@@ -435,7 +435,7 @@
435435
"pretest": "yarn compile && tsc -p ./src",
436436
"test": "node ./dist/test/runTest.js",
437437
"vscode:prepublish": "yarn clean && yarn compile",
438-
"publish": "vsce publish --baseContentUrl https://github.com/dosasm/masm-tasm/blob/main/ --baseImagesUrl https://github.com/dosasm/masm-tasm/raw/main/ ",
438+
"deploy": "vsce publish --yarn --baseContentUrl https://github.com/dosasm/masm-tasm/blob/main/ --baseImagesUrl https://github.com/dosasm/masm-tasm/raw/main/ ",
439439
"package": "vsce package"
440440
},
441441
"devDependencies": {
File renamed without changes.

src/emulator/js-dos_Panel.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -168,14 +168,6 @@ export class JsdosPanel {
168168
169169
<body>
170170
<div class="layout">
171-
<div class="controls">
172-
<Button onclick="javascript:start()">Start</Button>
173-
<Button onclick="javascript:stop()">Stop</Button>
174-
<Select id="impl-select">
175-
<option value="dos-worker" selected>dos worker</option>
176-
<option value="dos-direct">dos direct</option>
177-
</Select>
178-
</div>
179171
<div id="root" style="width: 100%; height: 100%;"></div>
180172
</div>
181173
<script>

web/index.html

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,6 @@
2020

2121
<body>
2222
<div class="layout">
23-
<div class="controls">
24-
<Select id="impl-select">
25-
<option value="dos-worker" selected>dos worker</option>
26-
<option value="dos-direct">dos direct</option>
27-
</Select>
28-
</div>
2923
<div id="root" style="width: 100%; height: 100%;"></div>
3024
</div>
3125
<script>

0 commit comments

Comments
 (0)