1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-08-05 00:37:02 +00:00

Finished initial WebOS receiver implementation

This commit is contained in:
Michael Hollister 2024-12-17 00:10:12 -06:00
parent 41f80880e4
commit 2df64dca89
20 changed files with 457 additions and 92 deletions

View file

@ -86,6 +86,7 @@ if (TARGET === 'electron') {
playService.cancel();
}
history.pushState({}, '', '../main_window/index.html');
window.open('../player/index.html');
}
});

View file

@ -1,5 +1,6 @@
import QRCode from 'modules/qrcode';
import { onQRCodeRendered } from 'src/main/Renderer';
window.targetAPI.onDeviceInfo(renderIPsAndQRCode);
@ -45,4 +46,6 @@ function renderIPsAndQRCode() {
(e) => {
console.log(`Error rendering QR Code: ${e}`)
});
onQRCodeRendered();
}