@pkg-nec/emulatorjs 4.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitattributes +1 -0
- package/CHANGES.md +528 -0
- package/CODE_OF_CONDUCT.md +128 -0
- package/CONTRIBUTING.md +31 -0
- package/LICENSE +674 -0
- package/README.md +284 -0
- package/data/compression/README.md +11 -0
- package/data/compression/extract7z.js +1 -0
- package/data/compression/extractzip.js +1 -0
- package/data/compression/libunrar.js +519 -0
- package/data/compression/libunrar.wasm +0 -0
- package/data/cores/README.md +22 -0
- package/data/cores/package.json +65 -0
- package/data/emulator.css +1614 -0
- package/data/loader.js +170 -0
- package/data/localization/README.md +63 -0
- package/data/localization/af-FR.json +339 -0
- package/data/localization/ar-AR.json +301 -0
- package/data/localization/ben-BEN.json +301 -0
- package/data/localization/de-GER.json +301 -0
- package/data/localization/el-GR.json +301 -0
- package/data/localization/en-US.json +339 -0
- package/data/localization/es-ES.json +310 -0
- package/data/localization/fa-AF.json +310 -0
- package/data/localization/hi-HI.json +301 -0
- package/data/localization/it-IT.json +302 -0
- package/data/localization/ja-JA.json +301 -0
- package/data/localization/jv-JV.json +301 -0
- package/data/localization/ko-KO.json +336 -0
- package/data/localization/pt-BR.json +361 -0
- package/data/localization/retroarch.json +617 -0
- package/data/localization/ro-RO.json +310 -0
- package/data/localization/ru-RU.json +301 -0
- package/data/localization/tr-TR.json +310 -0
- package/data/localization/vi-VN.json +302 -0
- package/data/localization/zh-CN.json +351 -0
- package/data/src/GameManager.js +464 -0
- package/data/src/compression.js +142 -0
- package/data/src/emulator.js +6158 -0
- package/data/src/gamepad.js +167 -0
- package/data/src/nipplejs.js +1 -0
- package/data/src/shaders.js +236 -0
- package/data/src/socket.io.min.js +7 -0
- package/data/src/storage.js +125 -0
- package/data/version.json +5 -0
- package/docs/Logo-light.png +0 -0
- package/docs/Logo.png +0 -0
- package/docs/Logo.svg +4487 -0
- package/docs/contributors.json +46 -0
- package/docs/contributors.md +125 -0
- package/docs/favicon.ico +0 -0
- package/index.html +269 -0
- package/package.json +35 -0
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Contribute
|
|
2
|
+
|
|
3
|
+
There are several ways to contribute, be it directly to helping develop features for EmulatorJS, update the documentation, media assets or heading over to libretro and helping them develop the emulator cores that make the magic happen.
|
|
4
|
+
|
|
5
|
+
- EmulatorJS, take a look through the [issues](https://github.com/EmulatorJS/EmulatorJS/issues) on github and try to help out.
|
|
6
|
+
|
|
7
|
+
- Documentation [github page](https://github.com/EmulatorJS/emulatorjs.org).
|
|
8
|
+
|
|
9
|
+
Just wanna donate? That'd help too!
|
|
10
|
+
|
|
11
|
+
Donate to: [EmulatorJS](https://www.patreon.com/EmulatorJS)
|
|
12
|
+
|
|
13
|
+
Donate to: [libretro](https://retroarch.com/index.php?page=donate)
|
|
14
|
+
|
|
15
|
+
## Attention Visual Studio Code Users
|
|
16
|
+
|
|
17
|
+
By default Visual Studio Code will apply formatting that is not consistent with the standard formatting used by this project.
|
|
18
|
+
|
|
19
|
+
Please disable the formatter *before* submitting a Pull Request.
|
|
20
|
+
|
|
21
|
+
The formatter can be disabled for this repo only (without affecting your own preferences) by creating a new file called `.vscode/settings.json` (if it doesn't already exist).
|
|
22
|
+
|
|
23
|
+
Add the following options to the settings.json file to disable the formatter while working on this repo:
|
|
24
|
+
```json
|
|
25
|
+
{
|
|
26
|
+
"diffEditor.ignoreTrimWhitespace": false,
|
|
27
|
+
"editor.formatOnPaste": false,
|
|
28
|
+
"editor.formatOnSave": false,
|
|
29
|
+
"editor.formatOnSaveMode": "modifications"
|
|
30
|
+
}
|
|
31
|
+
```
|