Version 0.4.23-03

This commit is contained in:
Ethan O'Brien 2021-09-21 11:42:00 -05:00
parent 1063a96c54
commit 83c55c9457
6 changed files with 77 additions and 8 deletions

View file

@ -35,6 +35,15 @@ Just so you know - You DO NOT NEED the bios for most games / systems, even if it
Roms can be zipped into .zip archive or .7z archive
TIPS: you can use `blob:` urls, although the save state name will be `game.state`. To have the proper file name add the following line to your configuration.
You can use this without having the gameUrl set to a `blob:` url. Just do the same thing below
```
EJS_gameName = "name of game";
```
When the user saves a state, the state will be saved with the name `name of game.state`
<h1>Supported systems!</h1>
<h2>NES / Famicom</h2>

View file

@ -17003,8 +17003,11 @@ var EJS = function(_0x574f5e) {
else {
var _0x2b5fc8 = new Blob([_0x2c1832]),
_0x152605 = _0xa88a13['startName']['split']('/')['pop']()['split']('.'),
_0x51d471 = _0x152605['slice'](0x0, _0x152605['length'] - 0x1)['join']('.'),
_0x49f6b6 = _0x51d471 ? '' ['concat'](_0x51d471, '.state') : 'game.state';
_0x51d471 = _0x152605['slice'](0x0, _0x152605['length'] - 0x1)['join']('.')
if (window.EJS_gameName) {
var _0x51d471 = window.EJS_gameName
}
var _0x49f6b6 = _0x51d471 ? '' ['concat'](_0x51d471, '.state') : 'game.state';
_0x4e4ca6()(_0x2b5fc8, _0x49f6b6);
}
_0xa88a13['elements']['container']['focus']();

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 +1 @@
{ "current_version": "0.4.23-02"}
{ "current_version": "0.4.23-03"}