| Source | ||
| LICENSE.md | ||
| README.md | ||
Game Library 
A game library extension for EmulatorJS
This add - on reads the contents of your ROMs
folder and uses it to display a games library. Roms
with common endings, like .iso, .bin or .zip, you
must also include the applicable extension before it.
A list is included in this readme with the additional
extensions, and will be updated as I go.
Example: Crash Bandicoot.psx.zip
To use systems that require a bios, like psx,
add the bios under the BIOS folder and name
it the according system .bin
Example: psx.bin
Installation
Please use the following template and add
the code underneath the last break , like
it is done in Library.php
Template
case "file_MD5":
$data["Name"] = Game_Name;
$data["Console"] = Game_Console; // According to the EmulatorJS system abbreviations
$data["Region"] = Game_Region;
break;
Example
case "3d45c1ee9abd5738df46d2bdda8b57dc":
$data["Name"] = "Pokemon Red";
$data["Console"] = "gb";
$data["Region"] = "USA";
break;
Extensions
The following extensions are used in
addition to common file extensions
PlayStation - .psx.*
Contributions
Additions to the library on here are very welcome!