Skip to content

Commit 4d194e9

Browse files
committed
TODOs + wget to the correct location
1 parent 26ebfbf commit 4d194e9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
run: npm ci
2626

2727
- name: Download ISO
28-
run: wget https://spacestation13.github.io/dm-playground-linux/rootfs.iso9660
28+
run: wget https://spacestation13.github.io/dm-playground-linux/rootfs.iso9660 -O public/lib/rootfs.iso
2929

3030
- name: Build project
3131
run: npx ng build --base-href /dm-playground/

src/app/pages/editor-page/editor-page.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export class EditorPageComponent {
4141
.subscribe((value) => {
4242
this.screen.write(value);
4343
});
44-
emulator.receivedOutputController
44+
emulator.receivedOutputController //TODO: need feature parity with the old version
4545
.pipe(takeUntilDestroyed(destroyRef))
4646
.subscribe((value) => {
4747
this.controller.write(value.replace(/[\u0000\n]/, '\r\n'));

src/vm/emulator.worker.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ const emulator = new V86({
131131
url: 'https://raw.githubusercontent.com/copy/v86/master/bios/vgabios.bin',
132132
},
133133
cdrom: {
134-
url: './lib/rootfs.iso',
134+
url: './lib/rootfs.iso', //TODO: Use github url
135135
},
136136
hda: null,
137137
hdb: null,

0 commit comments

Comments
 (0)