Skip to content

Commit

Permalink
TODOs + wget to the correct location
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkar598 committed Jun 21, 2024
1 parent 26ebfbf commit 4d194e9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: npm ci

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

- name: Build project
run: npx ng build --base-href /dm-playground/
Expand Down
2 changes: 1 addition & 1 deletion src/app/pages/editor-page/editor-page.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class EditorPageComponent {
.subscribe((value) => {
this.screen.write(value);
});
emulator.receivedOutputController
emulator.receivedOutputController //TODO: need feature parity with the old version
.pipe(takeUntilDestroyed(destroyRef))
.subscribe((value) => {
this.controller.write(value.replace(/[\u0000\n]/, '\r\n'));
Expand Down
2 changes: 1 addition & 1 deletion src/vm/emulator.worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ const emulator = new V86({
url: 'https://raw.githubusercontent.com/copy/v86/master/bios/vgabios.bin',
},
cdrom: {
url: './lib/rootfs.iso',
url: './lib/rootfs.iso', //TODO: Use github url
},
hda: null,
hdb: null,
Expand Down

0 comments on commit 4d194e9

Please sign in to comment.