From 8e33f12be81ef66cfde100f268156b132b289486 Mon Sep 17 00:00:00 2001 From: ElectronicsArchiver <85485984+ElectronicsArchiver@users.noreply.github.com> Date: Sat, 2 Apr 2022 15:12:00 -0400 Subject: [PATCH 01/14] Replaced License Notice With Badge --- README.md | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 4877d68..a4c3732 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![Badge License]][License] +

@@ -187,21 +189,14 @@ EJS_mameCore = '' // mame core options (example: '4|0') ``` set the mame core value to the mame core number (`1` - `6`) + `|` + save states supported (`0` or `1`) -
- -# LICENSE - -Licenced under the GNU General Public License v3.0 - -Please state changes and the licence when re-distributing - -[Read the whole license here] - -If I find a repository that does not follow the licence, I will report it. - + +[Badge License]: https://img.shields.io/badge/License-GPLv3-blue.svg + +[License]: LICENSE + [EmulatorJS Website]: https://emulatorjs.ga/ [Example Use]: https://coldcast.org/games/1/Super-Mario-Bros [Emulator Demo]: https://emulatorjs.ga/demo/ @@ -213,7 +208,6 @@ If I find a repository that does not follow the licence, I will report it. [Server]: https://github.com/ethanaobrien/emuserver/releases [the localization readme]: data/localization/ -[Read the whole license here]: LICENSE [NES / Famicom]: docs/NES-Famicom.md [SNES]: docs/SNES.md From 4646723ee60c7444df226d4afaa99568b4e8804e Mon Sep 17 00:00:00 2001 From: ElectronicsArchiver <85485984+ElectronicsArchiver@users.noreply.github.com> Date: Sat, 2 Apr 2022 15:21:28 -0400 Subject: [PATCH 02/14] Traded Markdown For HTML For Style Improvements --- README.md | 39 ++++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index a4c3732..6405c0f 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,29 @@ [![Badge License]][License] -

- +

+ +
+
+ + + +

-# EmulatorJS +

+ Self-hosted Javascript emulation for various system. +

-Self-hosted **Javascript** emulation for various system. +--- -
+

+ ⸢ EmulatorJS Website ⸥  + ⸢ Example Use ⸥  + ⸢ Emulator Demo ⸥  + ⸢ Beta ⸥ +

+ +--- *If something doesn't work, please consider opening an* ***[Issue]***
*with as many details as possible, as well as the console log.* @@ -26,10 +41,6 @@ When reporting bugs, please specify that you are using the beta version --- -**⸢ [EmulatorJS Website] ⸥ ⸢ [Example Use] ⸥ ⸢ [Emulator Demo] ⸥ ⸢ [Beta] ⸥** - ---- - ## Supported Systems #### Nintendo @@ -192,16 +203,6 @@ set the mame core value to the mame core number (`1` - `6`) + `|` + save states - -[Badge License]: https://img.shields.io/badge/License-GPLv3-blue.svg - -[License]: LICENSE - -[EmulatorJS Website]: https://emulatorjs.ga/ -[Example Use]: https://coldcast.org/games/1/Super-Mario-Bros -[Emulator Demo]: https://emulatorjs.ga/demo/ -[Beta]: https://emulatorjs.ga/beta/ - [Issue]: https://github.com/ethanaobrien/emulatorjs/issues [This repository]: https://github.com/linuxserver/emulatorjs From 3d56d52d8a01c5c31e8dca73506e7aeac254e7fc Mon Sep 17 00:00:00 2001 From: ElectronicsArchiver <85485984+ElectronicsArchiver@users.noreply.github.com> Date: Sat, 2 Apr 2022 15:26:16 -0400 Subject: [PATCH 03/14] Moved Usage Section Into Separate File --- README.md | 144 ------------------------------------------------- docs/Usage.md | 145 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 145 insertions(+), 144 deletions(-) create mode 100644 docs/Usage.md diff --git a/README.md b/README.md index 6405c0f..c2e08b0 100644 --- a/README.md +++ b/README.md @@ -61,154 +61,10 @@ When reporting bugs, please specify that you are using the beta version --- -## Usage - -*For questions please use the* ***[Issue]*** *tab.* - -
- -##### Setup - -1. Download this repository.
- *`Code ➞ Download As Zip`* - -2. Use a **WebServer** to host the emulator. - -3. Use your **Browser** to navigate to `localhost` - -
- -##### ROMs - -**ROMs** can be used as `zip` / `rar` / `7z` archives. - -
- -##### Netplay - -By default **Netplay** is ***disabled***,
-to enable it, add the following: - -```js -// ID in your website, required for netplay. Each game in your site should have a different ID -EJS_gameID = 1; -``` - -
- -by default, the netplay server url will be `emuserver.emulatorjs.ga`, but to default to the default `ws.emulatorjs.com` server add the following line - -```js -EJS_oldEJSNetplayServer = true; -``` - -
- -*To self host:* - -1. Download the **[Server]**. - -2. Specify the servers address with: - -```js -EJS_netplayUrl = 'http://localhost:3000/'; // Absolute Url To Your Netplay Server -``` - -
- -##### Custom Save Filename - -To customize the filename of save states
-simply add the following lines of code. - -```js -EJS_gameName = 'Game Name'; -``` - -**➞ Save Filename:** `Game Name.state` - -
- -##### AD - -To place an advertisement in front of the
-`play now` screen, include the following line: - -```js -EJS_AdUrl = 'URL'; -``` - -
- -##### Interface Color - -To use a different color for the emulator interface, use: - -```js -EJS_color = '#FF0000'; // Hex Color Code -``` - -
- -##### Direct Start - -To start the emulator immediately, add this line: - -```js -EJS_startOnLoaded = true; -``` - -*For audio to play the user still*
-*needs to interact with the page.* - -
- -##### Custom Paths - -Paths to emulator files can be customized with: - -```js -EJS_paths = { - 'fileName' : '/somepath', - 'emulator.js' : 'https://example.com/emulator.js', - 'n64-asmjs.data' : '/asdfds.data' -}; -``` - -*If a file is not defined, the default is used.* - -
- -##### Localization - -please see [the localization readme] - -
- -##### USING MAME SYSTEM - -you must add the line - -```js -EJS_core = 'mame'; -``` - -and the line - -```js -EJS_mameCore = '' // mame core options (example: '4|0') -``` -set the mame core value to the mame core number (`1` - `6`) + `|` + save states supported (`0` or `1`) -[Issue]: https://github.com/ethanaobrien/emulatorjs/issues -[This repository]: https://github.com/linuxserver/emulatorjs - -[Server]: https://github.com/ethanaobrien/emuserver/releases - -[the localization readme]: data/localization/ [NES / Famicom]: docs/NES-Famicom.md [SNES]: docs/SNES.md diff --git a/docs/Usage.md b/docs/Usage.md new file mode 100644 index 0000000..05970ee --- /dev/null +++ b/docs/Usage.md @@ -0,0 +1,145 @@ +## Usage + +*For questions please use the* ***[Issue]*** *tab.* + +
+ +##### Setup + +1. Download this repository.
+ *`Code ➞ Download As Zip`* + +2. Use a **WebServer** to host the emulator. + +3. Use your **Browser** to navigate to `localhost` + +
+ +##### ROMs + +**ROMs** can be used as `zip` / `rar` / `7z` archives. + +
+ +##### Netplay + +By default **Netplay** is ***disabled***,
+to enable it, add the following: + +```js +// ID in your website, required for netplay. Each game in your site should have a different ID +EJS_gameID = 1; +``` + +
+ +by default, the netplay server url will be `emuserver.emulatorjs.ga`, but to default to the default `ws.emulatorjs.com` server add the following line + +```js +EJS_oldEJSNetplayServer = true; +``` + +
+ +*To self host:* + +1. Download the **[Server]**. + +2. Specify the servers address with: + +```js +EJS_netplayUrl = 'http://localhost:3000/'; // Absolute Url To Your Netplay Server +``` + +
+ +##### Custom Save Filename + +To customize the filename of save states
+simply add the following lines of code. + +```js +EJS_gameName = 'Game Name'; +``` + +**➞ Save Filename:** `Game Name.state` + +
+ +##### AD + +To place an advertisement in front of the
+`play now` screen, include the following line: + +```js +EJS_AdUrl = 'URL'; +``` + +
+ +##### Interface Color + +To use a different color for the emulator interface, use: + +```js +EJS_color = '#FF0000'; // Hex Color Code +``` + +
+ +##### Direct Start + +To start the emulator immediately, add this line: + +```js +EJS_startOnLoaded = true; +``` + +*For audio to play the user still*
+*needs to interact with the page.* + +
+ +##### Custom Paths + +Paths to emulator files can be customized with: + +```js +EJS_paths = { + 'fileName' : '/somepath', + 'emulator.js' : 'https://example.com/emulator.js', + 'n64-asmjs.data' : '/asdfds.data' +}; +``` + +*If a file is not defined, the default is used.* + +
+ +##### Localization + +please see [the localization readme] + +
+ +##### USING MAME SYSTEM + +you must add the line + +```js +EJS_core = 'mame'; +``` + +and the line + +```js +EJS_mameCore = '' // mame core options (example: '4|0') +``` +set the mame core value to the mame core number (`1` - `6`) + `|` + save states supported (`0` or `1`) + + + + +[Issue]: https://github.com/ethanaobrien/emulatorjs/issues +[Server]: https://github.com/ethanaobrien/emuserver/releases +[the localization readme]: data/localization/ From d58142856003e908a26796bc41fd24442248e2e2 Mon Sep 17 00:00:00 2001 From: ElectronicsArchiver <85485984+ElectronicsArchiver@users.noreply.github.com> Date: Sat, 2 Apr 2022 15:29:44 -0400 Subject: [PATCH 04/14] Spacing + Usage Link + Formatting --- README.md | 29 ++++++++++++++++++++--------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index c2e08b0..137b6d4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,3 @@ -[![Badge License]][License]

@@ -17,14 +16,17 @@ ---

- ⸢ EmulatorJS Website ⸥  - ⸢ Example Use ⸥  - ⸢ Emulator Demo ⸥  + ⸢ Website ⸥  + ⸢ Usage ⸥  + ⸢ Example ⸥  + ⸢ Demo ⸥  ⸢ Beta

--- +
+ *If something doesn't work, please consider opening an* ***[Issue]***
*with as many details as possible, as well as the console log.* @@ -39,32 +41,41 @@ EJS_BETA = true; When reporting bugs, please specify that you are using the beta version +
+ --- -## Supported Systems +
+ +

Supported Systems

+ +
#### Nintendo **[Game Boy Advance][Nintendo Game Boy Advance]** | **[Famicom / NES][NES / Famicom]** | **[Virtual Boy][Virtual Boy]** | **[Game Boy][Nintendo Game Boy]** | **[SNES]** | **[DS][Nintendo DS]** | **[64][Nintendo 64]** +
+ #### Sega **[Master System][Sega Master System]** | **[Mega Drive][Sega Mega Drive]** | **[Game Gear][Sega Game Gear]** | **[Saturn][Sega Saturn]** | **[32X][Sega 32X]** | **[CD][Sega CD]** +
+ #### Atari **[Jaguar][Atari Jaguar]** | **[Lynx][Atari Lynx]** | **[7800][Atari 7800]** | **[2600][Atari 2600]** +
+ #### Other **[TurboGrafs 16 PC Engine][TurboGrafs-16 / PC Engine]** | **[WanderSwan Color][WanderSwan / Color]** | **[Neo Geo Poket][Neo Geo Poket]** | **[PlayStation]** | **[Arcade]** | **[MSX]** | **[3DO]** ---- - - - +[Issue]: https://github.com/ethanaobrien/emulatorjs/issues [NES / Famicom]: docs/NES-Famicom.md [SNES]: docs/SNES.md From b00e7b4bbf99ea8f116c8dd8b10d36c5566a4184 Mon Sep 17 00:00:00 2001 From: ElectronicsArchiver <85485984+ElectronicsArchiver@users.noreply.github.com> Date: Sat, 2 Apr 2022 15:33:14 -0400 Subject: [PATCH 05/14] Improved Markdown Readability --- README.md | 28 ++++++++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 137b6d4..1d6cd05 100644 --- a/README.md +++ b/README.md @@ -53,24 +53,44 @@ When reporting bugs, please specify that you are using the beta version #### Nintendo -**[Game Boy Advance][Nintendo Game Boy Advance]** | **[Famicom / NES][NES / Famicom]** | **[Virtual Boy][Virtual Boy]** | **[Game Boy][Nintendo Game Boy]** | **[SNES]** | **[DS][Nintendo DS]** | **[64][Nintendo 64]** +**[Game Boy Advance][Nintendo Game Boy Advance]**   |  +**[Famicom / NES][NES / Famicom]**   |  +**[Virtual Boy][Virtual Boy]**   |  +**[Game Boy][Nintendo Game Boy]**   |  +**[SNES]**   |  +**[DS][Nintendo DS]**   |  +**[64][Nintendo 64]**
#### Sega -**[Master System][Sega Master System]** | **[Mega Drive][Sega Mega Drive]** | **[Game Gear][Sega Game Gear]** | **[Saturn][Sega Saturn]** | **[32X][Sega 32X]** | **[CD][Sega CD]** +**[Master System][Sega Master System]**   |  +**[Mega Drive][Sega Mega Drive]**   |  +**[Game Gear][Sega Game Gear]**   |  +**[Saturn][Sega Saturn]**   |  +**[32X][Sega 32X]**   |  +**[CD][Sega CD]**
#### Atari -**[Jaguar][Atari Jaguar]** | **[Lynx][Atari Lynx]** | **[7800][Atari 7800]** | **[2600][Atari 2600]** +**[Jaguar][Atari Jaguar]**   |  +**[Lynx][Atari Lynx]**   |  +**[7800][Atari 7800]**   |  +**[2600][Atari 2600]**
#### Other -**[TurboGrafs 16 PC Engine][TurboGrafs-16 / PC Engine]** | **[WanderSwan Color][WanderSwan / Color]** | **[Neo Geo Poket][Neo Geo Poket]** | **[PlayStation]** | **[Arcade]** | **[MSX]** | **[3DO]** +**[TurboGrafs 16 PC Engine][TurboGrafs-16 / PC Engine]**   |  +**[WanderSwan Color][WanderSwan / Color]**   |  +**[Neo Geo Poket][Neo Geo Poket]**   |  +**[PlayStation]**   |  +**[Arcade]**   |  +**[MSX]**   |  +**[3DO]** From 224604193b98c5a85623a416ce24ab95fc0545b7 Mon Sep 17 00:00:00 2001 From: ElectronicsArchiver <85485984+ElectronicsArchiver@users.noreply.github.com> Date: Sat, 2 Apr 2022 15:38:30 -0400 Subject: [PATCH 06/14] Moved & Formatted Info Section --- README.md | 50 ++++++++++++++++++++++++++++++-------------------- 1 file changed, 30 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index 1d6cd05..2ee074e 100644 --- a/README.md +++ b/README.md @@ -27,26 +27,6 @@
-*If something doesn't work, please consider opening an* ***[Issue]***
-*with as many details as possible, as well as the console log.* - -*The* ***Screen Recording*** *option currently doesn't support* ***Audio*** *.* - -The **beta** version of the emulator core files are now avaliable. (For limited systems)
-If you would like to use it, please add the following line to your code. - -```js -EJS_BETA = true; -``` - -When reporting bugs, please specify that you are using the beta version - -
- ---- - -
-

Supported Systems


@@ -92,6 +72,36 @@ When reporting bugs, please specify that you are using the beta version **[MSX]**   |  **[3DO]** +
+ +--- + +
+ +

Info

+ +### Issues + +*If something doesn't work, please consider opening an* ***[Issue]***
+*with as many details as possible, as well as the console log.* + +### Audio + +*The* ***Screen Recording*** *option currently doesn't support* ***Audio*** *.* + +### Beta + +The **beta** of the emulator core is now available for *some* systems.
+To use it, please add the following line to your code. + +```js +EJS_BETA = true; +``` + +**>> When reporting bugs, please specify that you are using the beta version** + +
+ From b3fad4b0a0b8b91750d3465edac3b648284745b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=88=E3=83=88=E3=82=82?= <85485984+ElectronicsArchiver@users.noreply.github.com> Date: Sat, 2 Apr 2022 15:40:06 -0400 Subject: [PATCH 07/14] Adjusted Spacing --- README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index 2ee074e..4791de0 100644 --- a/README.md +++ b/README.md @@ -23,8 +23,7 @@ ⸢ Beta

---- - +

Supported Systems

@@ -73,9 +72,6 @@ **[3DO]**
- ---- -

Info

From 4efe60ddb4839379afbaab98746fff00c1909859 Mon Sep 17 00:00:00 2001 From: ElectronicsArchiver <85485984+ElectronicsArchiver@users.noreply.github.com> Date: Sat, 2 Apr 2022 15:41:06 -0400 Subject: [PATCH 08/14] Switched Sections Back --- README.md | 51 +++++++++++++++++++++++++-------------------------- 1 file changed, 25 insertions(+), 26 deletions(-) diff --git a/README.md b/README.md index 4791de0..729e2fd 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,31 @@

+

Info

+ +### Issues + +*If something doesn't work, please consider opening an* ***[Issue]***
+*with as many details as possible, as well as the console log.* + +### Audio + +*The* ***Screen Recording*** *option currently doesn't support* ***Audio*** *.* + +### Beta + +The **beta** of the emulator core is now available for *some* systems.
+To use it, please add the following line to your code. + +```js +EJS_BETA = true; +``` + +**>> When reporting bugs, please specify that you are using the beta version** + +
+
+

Supported Systems


@@ -72,32 +97,6 @@ **[3DO]**
-
- -

Info

- -### Issues - -*If something doesn't work, please consider opening an* ***[Issue]***
-*with as many details as possible, as well as the console log.* - -### Audio - -*The* ***Screen Recording*** *option currently doesn't support* ***Audio*** *.* - -### Beta - -The **beta** of the emulator core is now available for *some* systems.
-To use it, please add the following line to your code. - -```js -EJS_BETA = true; -``` - -**>> When reporting bugs, please specify that you are using the beta version** - -
- From 856881e40b1f4fd7a9f2e97a341f54af88f34cff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=88=E3=83=88=E3=82=82?= <85485984+ElectronicsArchiver@users.noreply.github.com> Date: Sat, 2 Apr 2022 15:43:45 -0400 Subject: [PATCH 09/14] Adjusted Style --- README.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 729e2fd..74a26be 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,6 @@ Self-hosted Javascript emulation for various system.

---- -

Website ⸥  ⸢ Usage ⸥  @@ -23,20 +21,27 @@ ⸢ Beta

+


-

Info

+

Info

+ +
### Issues *If something doesn't work, please consider opening an* ***[Issue]***
*with as many details as possible, as well as the console log.* +
+ ### Audio *The* ***Screen Recording*** *option currently doesn't support* ***Audio*** *.* +
+ ### Beta The **beta** of the emulator core is now available for *some* systems.
@@ -48,10 +53,11 @@ EJS_BETA = true; **>> When reporting bugs, please specify that you are using the beta version** +


-

Supported Systems

+

Supported Systems


From 82db4b9f0ca1598baa2e4069537218f8aac832c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=88=E3=83=88=E3=82=82?= <85485984+ElectronicsArchiver@users.noreply.github.com> Date: Sat, 2 Apr 2022 15:45:03 -0400 Subject: [PATCH 10/14] Adjusted Style --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index 74a26be..9952e82 100644 --- a/README.md +++ b/README.md @@ -21,12 +21,6 @@ ⸢ Beta

-
-
-
- -

Info

-
### Issues From fb840685ce3c8f43ff7c82e5c77238ff53891766 Mon Sep 17 00:00:00 2001 From: ElectronicsArchiver <85485984+ElectronicsArchiver@users.noreply.github.com> Date: Sat, 2 Apr 2022 15:49:20 -0400 Subject: [PATCH 11/14] Some Refactoring --- docs/Usage.md | 36 +++++++++++++++++------------------- 1 file changed, 17 insertions(+), 19 deletions(-) diff --git a/docs/Usage.md b/docs/Usage.md index 05970ee..515ca53 100644 --- a/docs/Usage.md +++ b/docs/Usage.md @@ -1,10 +1,10 @@ -## Usage +# Usage *For questions please use the* ***[Issue]*** *tab.*
-##### Setup +## Setup 1. Download this repository.
*`Code ➞ Download As Zip`* @@ -15,13 +15,13 @@
-##### ROMs +## ROMs **ROMs** can be used as `zip` / `rar` / `7z` archives.
-##### Netplay +## Netplay By default **Netplay** is ***disabled***,
to enable it, add the following: @@ -53,7 +53,7 @@ EJS_netplayUrl = 'http://localhost:3000/'; // Absolute Url To Your Netplay Serve
-##### Custom Save Filename +## Custom Save Filename To customize the filename of save states
simply add the following lines of code. @@ -66,7 +66,7 @@ EJS_gameName = 'Game Name';
-##### AD +## AD To place an advertisement in front of the
`play now` screen, include the following line: @@ -77,7 +77,7 @@ EJS_AdUrl = 'URL';
-##### Interface Color +## Interface Color To use a different color for the emulator interface, use: @@ -87,7 +87,7 @@ EJS_color = '#FF0000'; // Hex Color Code
-##### Direct Start +## Direct Start To start the emulator immediately, add this line: @@ -100,7 +100,7 @@ EJS_startOnLoaded = true;
-##### Custom Paths +## Custom Paths Paths to emulator files can be customized with: @@ -116,26 +116,24 @@ EJS_paths = {
-##### Localization +## Localization -please see [the localization readme] +Please see [the localization README].
-##### USING MAME SYSTEM +## Using MAME -you must add the line +To use the **MAME** system you will have to add: ```js EJS_core = 'mame'; -``` - -and the line - -```js EJS_mameCore = '' // mame core options (example: '4|0') ``` -set the mame core value to the mame core number (`1` - `6`) + `|` + save states supported (`0` or `1`) + +to your code. + +Set the mame core value to the mame core number ( `1` - `6` ) + `|` + save states supported ( `0` or `1` ) From c1407e06d867e5b0a176f9657d344ae97fd29320 Mon Sep 17 00:00:00 2001 From: ElectronicsArchiver <85485984+ElectronicsArchiver@users.noreply.github.com> Date: Sat, 2 Apr 2022 15:50:47 -0400 Subject: [PATCH 12/14] Moved System Docs Into Dedicated Folder --- docs/{ => Systems}/3DO.md | 0 docs/{ => Systems}/Arcade.md | 0 docs/{ => Systems}/Atari 2600.md | 0 docs/{ => Systems}/Atari 7800.md | 0 docs/{ => Systems}/Atari Jaguar.md | 0 docs/{ => Systems}/Atari Lynx.md | 0 docs/{ => Systems}/MSX.md | 0 docs/{ => Systems}/NES-Famicom.md | 0 docs/{ => Systems}/Neo Geo Poket.md | 0 docs/{ => Systems}/Nintendo 64.md | 0 docs/{ => Systems}/Nintendo DS.md | 0 docs/{ => Systems}/Nintendo Game Boy Advance.md | 0 docs/{ => Systems}/Nintendo Game Boy.md | 0 docs/{ => Systems}/PlayStation.md | 0 docs/{ => Systems}/SNES.md | 0 docs/{ => Systems}/Sega 32X.md | 0 docs/{ => Systems}/Sega CD.md | 0 docs/{ => Systems}/Sega Game Gear.md | 0 docs/{ => Systems}/Sega Master System.md | 0 docs/{ => Systems}/Sega Mega Drive.md | 0 docs/{ => Systems}/Sega Saturn.md | 0 docs/{ => Systems}/TurboGrafs 16-PC Engine.md | 0 docs/{ => Systems}/Virtual Boy.md | 0 docs/{ => Systems}/WanderSwan-Color.md | 0 24 files changed, 0 insertions(+), 0 deletions(-) rename docs/{ => Systems}/3DO.md (100%) rename docs/{ => Systems}/Arcade.md (100%) rename docs/{ => Systems}/Atari 2600.md (100%) rename docs/{ => Systems}/Atari 7800.md (100%) rename docs/{ => Systems}/Atari Jaguar.md (100%) rename docs/{ => Systems}/Atari Lynx.md (100%) rename docs/{ => Systems}/MSX.md (100%) rename docs/{ => Systems}/NES-Famicom.md (100%) rename docs/{ => Systems}/Neo Geo Poket.md (100%) rename docs/{ => Systems}/Nintendo 64.md (100%) rename docs/{ => Systems}/Nintendo DS.md (100%) rename docs/{ => Systems}/Nintendo Game Boy Advance.md (100%) rename docs/{ => Systems}/Nintendo Game Boy.md (100%) rename docs/{ => Systems}/PlayStation.md (100%) rename docs/{ => Systems}/SNES.md (100%) rename docs/{ => Systems}/Sega 32X.md (100%) rename docs/{ => Systems}/Sega CD.md (100%) rename docs/{ => Systems}/Sega Game Gear.md (100%) rename docs/{ => Systems}/Sega Master System.md (100%) rename docs/{ => Systems}/Sega Mega Drive.md (100%) rename docs/{ => Systems}/Sega Saturn.md (100%) rename docs/{ => Systems}/TurboGrafs 16-PC Engine.md (100%) rename docs/{ => Systems}/Virtual Boy.md (100%) rename docs/{ => Systems}/WanderSwan-Color.md (100%) diff --git a/docs/3DO.md b/docs/Systems/3DO.md similarity index 100% rename from docs/3DO.md rename to docs/Systems/3DO.md diff --git a/docs/Arcade.md b/docs/Systems/Arcade.md similarity index 100% rename from docs/Arcade.md rename to docs/Systems/Arcade.md diff --git a/docs/Atari 2600.md b/docs/Systems/Atari 2600.md similarity index 100% rename from docs/Atari 2600.md rename to docs/Systems/Atari 2600.md diff --git a/docs/Atari 7800.md b/docs/Systems/Atari 7800.md similarity index 100% rename from docs/Atari 7800.md rename to docs/Systems/Atari 7800.md diff --git a/docs/Atari Jaguar.md b/docs/Systems/Atari Jaguar.md similarity index 100% rename from docs/Atari Jaguar.md rename to docs/Systems/Atari Jaguar.md diff --git a/docs/Atari Lynx.md b/docs/Systems/Atari Lynx.md similarity index 100% rename from docs/Atari Lynx.md rename to docs/Systems/Atari Lynx.md diff --git a/docs/MSX.md b/docs/Systems/MSX.md similarity index 100% rename from docs/MSX.md rename to docs/Systems/MSX.md diff --git a/docs/NES-Famicom.md b/docs/Systems/NES-Famicom.md similarity index 100% rename from docs/NES-Famicom.md rename to docs/Systems/NES-Famicom.md diff --git a/docs/Neo Geo Poket.md b/docs/Systems/Neo Geo Poket.md similarity index 100% rename from docs/Neo Geo Poket.md rename to docs/Systems/Neo Geo Poket.md diff --git a/docs/Nintendo 64.md b/docs/Systems/Nintendo 64.md similarity index 100% rename from docs/Nintendo 64.md rename to docs/Systems/Nintendo 64.md diff --git a/docs/Nintendo DS.md b/docs/Systems/Nintendo DS.md similarity index 100% rename from docs/Nintendo DS.md rename to docs/Systems/Nintendo DS.md diff --git a/docs/Nintendo Game Boy Advance.md b/docs/Systems/Nintendo Game Boy Advance.md similarity index 100% rename from docs/Nintendo Game Boy Advance.md rename to docs/Systems/Nintendo Game Boy Advance.md diff --git a/docs/Nintendo Game Boy.md b/docs/Systems/Nintendo Game Boy.md similarity index 100% rename from docs/Nintendo Game Boy.md rename to docs/Systems/Nintendo Game Boy.md diff --git a/docs/PlayStation.md b/docs/Systems/PlayStation.md similarity index 100% rename from docs/PlayStation.md rename to docs/Systems/PlayStation.md diff --git a/docs/SNES.md b/docs/Systems/SNES.md similarity index 100% rename from docs/SNES.md rename to docs/Systems/SNES.md diff --git a/docs/Sega 32X.md b/docs/Systems/Sega 32X.md similarity index 100% rename from docs/Sega 32X.md rename to docs/Systems/Sega 32X.md diff --git a/docs/Sega CD.md b/docs/Systems/Sega CD.md similarity index 100% rename from docs/Sega CD.md rename to docs/Systems/Sega CD.md diff --git a/docs/Sega Game Gear.md b/docs/Systems/Sega Game Gear.md similarity index 100% rename from docs/Sega Game Gear.md rename to docs/Systems/Sega Game Gear.md diff --git a/docs/Sega Master System.md b/docs/Systems/Sega Master System.md similarity index 100% rename from docs/Sega Master System.md rename to docs/Systems/Sega Master System.md diff --git a/docs/Sega Mega Drive.md b/docs/Systems/Sega Mega Drive.md similarity index 100% rename from docs/Sega Mega Drive.md rename to docs/Systems/Sega Mega Drive.md diff --git a/docs/Sega Saturn.md b/docs/Systems/Sega Saturn.md similarity index 100% rename from docs/Sega Saturn.md rename to docs/Systems/Sega Saturn.md diff --git a/docs/TurboGrafs 16-PC Engine.md b/docs/Systems/TurboGrafs 16-PC Engine.md similarity index 100% rename from docs/TurboGrafs 16-PC Engine.md rename to docs/Systems/TurboGrafs 16-PC Engine.md diff --git a/docs/Virtual Boy.md b/docs/Systems/Virtual Boy.md similarity index 100% rename from docs/Virtual Boy.md rename to docs/Systems/Virtual Boy.md diff --git a/docs/WanderSwan-Color.md b/docs/Systems/WanderSwan-Color.md similarity index 100% rename from docs/WanderSwan-Color.md rename to docs/Systems/WanderSwan-Color.md From d07a4c99ea5f9b31fe8ce54780cdcc57081c3de1 Mon Sep 17 00:00:00 2001 From: ElectronicsArchiver <85485984+ElectronicsArchiver@users.noreply.github.com> Date: Sat, 2 Apr 2022 15:51:43 -0400 Subject: [PATCH 13/14] Updated Links --- README.md | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index 9952e82..9be8a74 100644 --- a/README.md +++ b/README.md @@ -102,27 +102,27 @@ EJS_BETA = true; [Issue]: https://github.com/ethanaobrien/emulatorjs/issues -[NES / Famicom]: docs/NES-Famicom.md -[SNES]: docs/SNES.md -[Nintendo 64]: docs/Nintendo%2064.md -[Nintendo Game Boy]: docs/Nintendo%20Game%20Boy.md -[Nintendo Game Boy Advance]: docs/Nintendo%20Game%20Boy%20Advance.md -[Nintendo DS]: docs/Nintendo%20DS.md -[PlayStation]: docs/PlayStation.md -[Virtual Boy]: docs/Virtual%20Boy.md -[Sega Mega Drive]: docs/Sega%20Mega%20Drive.md -[Sega Master System]: docs/Sega%20Master%20System.md -[Sega CD]: docs/Sega%20CD.md -[Atari Lynx]: docs/Atari%20Lynx.md -[MSX]: docs/MSX.md -[3DO]: docs/3DO.md -[Sega 32X]: docs/Sega%2032X.md -[Atari Jaguar]: docs/Atari%20Jaguar.md -[Neo Geo Poket]: docs/Neo%20Geo%20Poket.md -[Sega Game Gear]: docs/Sega%20Game%20Gear.md -[Sega Saturn]: docs/Sega%20Saturn.md -[Atari 7800]: docs/Atari%207800.md -[WanderSwan / Color]: docs/WanderSwan-Color.md -[TurboGrafs-16 / PC Engine]: docs/TurboGrafs%2016-PC%20Engine.md -[Arcade]: docs/Arcade.md -[Atari 2600]: docs/Atari%202600.md +[NES / Famicom]: docs/Systems/NES-Famicom.md +[SNES]: docs/Systems/SNES.md +[Nintendo 64]: docs/Systems/Nintendo%2064.md +[Nintendo Game Boy]: docs/Systems/Nintendo%20Game%20Boy.md +[Nintendo Game Boy Advance]: docs/Systems/Nintendo%20Game%20Boy%20Advance.md +[Nintendo DS]: docs/Systems/Nintendo%20DS.md +[PlayStation]: docs/Systems/PlayStation.md +[Virtual Boy]: docs/Systems/Virtual%20Boy.md +[Sega Mega Drive]: docs/Systems/Sega%20Mega%20Drive.md +[Sega Master System]: docs/Systems/Sega%20Master%20System.md +[Sega CD]: docs/Systems/Sega%20CD.md +[Atari Lynx]: docs/Systems/Atari%20Lynx.md +[MSX]: docs/Systems/MSX.md +[3DO]: docs/Systems/3DO.md +[Sega 32X]: docs/Systems/Sega%2032X.md +[Atari Jaguar]: docs/Systems/Atari%20Jaguar.md +[Neo Geo Poket]: docs/Systems/Neo%20Geo%20Poket.md +[Sega Game Gear]: docs/Systems/Sega%20Game%20Gear.md +[Sega Saturn]: docs/Systems/Sega%20Saturn.md +[Atari 7800]: docs/Systems/Atari%207800.md +[WanderSwan / Color]: docs/Systems/WanderSwan-Color.md +[TurboGrafs-16 / PC Engine]: docs/Systems/TurboGrafs%2016-PC%20Engine.md +[Arcade]: docs/Systems/Arcade.md +[Atari 2600]: docs/Systems/Atari%202600.md From 5ef1bd62d0898f09cc0f4cba57c8b77947b47e7f Mon Sep 17 00:00:00 2001 From: ElectronicsArchiver <85485984+ElectronicsArchiver@users.noreply.github.com> Date: Sat, 2 Apr 2022 15:52:32 -0400 Subject: [PATCH 14/14] Updated Logo Name / Link --- README.md | 2 +- docs/{Emulatorjs Logo.png => Logo.png} | Bin 2 files changed, 1 insertion(+), 1 deletion(-) rename docs/{Emulatorjs Logo.png => Logo.png} (100%) diff --git a/README.md b/README.md index 9be8a74..34a4269 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@

- +

diff --git a/docs/Emulatorjs Logo.png b/docs/Logo.png similarity index 100% rename from docs/Emulatorjs Logo.png rename to docs/Logo.png