File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 25
25
run : npm ci
26
26
27
27
- 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
29
29
30
30
- name : Build project
31
31
run : npx ng build --base-href /dm-playground/
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ export class EditorPageComponent {
41
41
. subscribe ( ( value ) => {
42
42
this . screen . write ( value ) ;
43
43
} ) ;
44
- emulator . receivedOutputController
44
+ emulator . receivedOutputController //TODO: need feature parity with the old version
45
45
. pipe ( takeUntilDestroyed ( destroyRef ) )
46
46
. subscribe ( ( value ) => {
47
47
this . controller . write ( value . replace ( / [ \u0000 \n ] / , '\r\n' ) ) ;
Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ const emulator = new V86({
131
131
url : 'https://raw.githubusercontent.com/copy/v86/master/bios/vgabios.bin' ,
132
132
} ,
133
133
cdrom : {
134
- url : './lib/rootfs.iso' ,
134
+ url : './lib/rootfs.iso' , //TODO: Use github url
135
135
} ,
136
136
hda : null ,
137
137
hdb : null ,
You can’t perform that action at this time.
0 commit comments