An addition to ethan's EmulatorJS, which is a basic games library that reads the contents of a roms folder for its library (?) as requested. Not the prettiest, but it works
Go to file
2022-07-26 13:36:19 +10:00
Source Moved Source Code Into Source Folder 2022-04-22 19:18:58 -04:00
LICENSE.md Create LICENSE.md 2022-07-26 13:33:08 +10:00
README.md Update README.md 2022-07-26 13:36:19 +10:00

Game LibraryBadge License

A game library extension for EmulatorJS


This add-on reads the contents of your ROMs
folder and uses it to display a games library.


Installation

Please use the following template and add
the code underneath the lastbreak, like
it is done inLibrary.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;

Contributions

Additions to the library on here are very welcome!