Version 2.2.3

This commit is contained in:
Ethan O'Brien 2022-08-11 12:39:00 -05:00
parent bcccc0d06f
commit 55562a56aa
7 changed files with 338 additions and 5766 deletions

View file

@ -41,18 +41,18 @@ Self-hosted **Javascript** emulation for various system.
<br>
### Beta
### Old Cores
The **beta** of the emulator core is now available for *some* systems. <br>
To use it, please add the following line to your code.
The new cores are now the stable cores, if you want to <br>
continue using the old cores, add this line to your code
```js
EJS_BETA = true;
EJS_oldCores = true;
```
<br>
**>>When reporting bugs, please specify that you are using the beta version**
**>>When reporting bugs, please specify that you are using the old version**
<br>
<br>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,5 +1,5 @@
(async function() {
var VERSION = 2.2;
var VERSION = 2.3;
if ((window.location && ['localhost', '127.0.0.1'].includes(location.hostname)) ||
'undefined' != typeof EJS_DEBUG_XX && true === EJS_DEBUG_XX) {
fetch('https://raw.githack.com/ethanaobrien/emulatorjs/main/data/version.json').then(response => {

View file

@ -204,11 +204,10 @@
"gba": {
"version":"7",
"netplay": 0,
"old": {"wasm":0, "asmjs":1 },
"state": 1,
"asmjs": 1,
"wasm": 1,
"newCores": 1,
"wasm": 0,
"newCores": 0,
"oldCores": 1
},
"segaGG": {
@ -258,12 +257,11 @@
},
"psx": {
"version":"11",
"old": {"wasm":1, "asmjs":0 },
"netplay": 0,
"state": 1,
"asmjs": 0,
"wasm": 1,
"newCores": 1,
"newCores": 0,
"oldCores": 1
},
"n64": {

View file

@ -169,6 +169,7 @@
window.EJS_pathtodata = "data/"
window.EJS_startOnLoaded = true;
script.src = "data/loader.js"
document.body.appendChild(script)
}