feat: add an upload button to ease adding game files (#29)

* feat: API support for uploading ROM’s

* fix: downloads of files larger than approx 300MB would cause an out of memory error

* fix: resolved broken bios path

* feat: added an upload button
This commit is contained in:
Michael Green
2023-07-22 00:46:26 +10:00
committed by GitHub
parent 9081b0bed9
commit dc2a6b4638
15 changed files with 275 additions and 21 deletions

View File

@@ -86,7 +86,7 @@
function loadEmulator() {
if (availableEmuBios.length > 0) {
var emulatorbiosselect = document.getElementById('emulatorbiosselector');
emuBios = emulatorbiosselect.value;
emuBios = '/api/v1/Bios/' + platformId + '/' + emulatorbiosselect.value;
} else {
emuBios = '';
}