Added license and stuff
parent
147e19865b
commit
8857c52da4
|
|
@ -0,0 +1,18 @@
|
|||
Copyright © 2022 Dany Thach
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the “Software”), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
30
README.md
30
README.md
|
|
@ -1,7 +1,29 @@
|
|||
# Tauri + Vanilla
|
||||
# iNES Helper
|
||||
|
||||
This template should help get you started developing with Tauri in vanilla HTML, CSS and Javascript.
|
||||
**iNES Helper** is a basic program that helps you make sense of what's inside your
|
||||
iNES ROMs (.nes files).
|
||||
|
||||
## Recommended IDE Setup
|
||||
With the current version of **iNES Helper** you can:
|
||||
|
||||
- [VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer)
|
||||
* Obtain all the information listed inside the header, including:
|
||||
* PRG ROM size
|
||||
* CHR ROM size
|
||||
* Mirroring Type (horizontal/vertical)
|
||||
* If it has a persistent memory (battery-backed)
|
||||
* If it has a trainer
|
||||
* If it has a four-screen VRAM
|
||||
* If it's a VS Unisystem ROM
|
||||
* If it's a PlayChoice-10 ROM
|
||||
* iNES version identifier (2 bits that show if it's an iNES 2.0 ROM or not)
|
||||
* iNES Mapper ([list of mappers](https://www.nesdev.org/wiki/List_of_mappers))
|
||||
* PRG RAM size
|
||||
* TV system (PAL or NTSC)
|
||||
* Export the binary CHR ROM (if present)
|
||||
|
||||
## Author
|
||||
|
||||
Dany Thach - <d.thach4@gmail.com>
|
||||
|
||||
## License
|
||||
|
||||
iNES Helper is licensed under the [MIT License](LICENSE).
|
||||
|
|
|
|||
|
|
@ -7,8 +7,8 @@
|
|||
"withGlobalTauri": true
|
||||
},
|
||||
"package": {
|
||||
"productName": "first-app",
|
||||
"version": "0.0.0"
|
||||
"productName": "ines-helper",
|
||||
"version": "1.0.0"
|
||||
},
|
||||
"tauri": {
|
||||
"allowlist": {
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
"bundle": {
|
||||
"active": true,
|
||||
"category": "DeveloperTool",
|
||||
"copyright": "",
|
||||
"copyright": "2023 Dany Thach",
|
||||
"deb": {
|
||||
"depends": []
|
||||
},
|
||||
|
|
@ -29,8 +29,8 @@
|
|||
"icons/icon.icns",
|
||||
"icons/icon.ico"
|
||||
],
|
||||
"identifier": "com.tauri.dev",
|
||||
"longDescription": "",
|
||||
"identifier": "it.omnicron.ines-helper",
|
||||
"longDescription": "Get information about your iNES ROM, including the dump of the whole CHR ROM",
|
||||
"macOS": {
|
||||
"entitlements": null,
|
||||
"exceptionDomain": "",
|
||||
|
|
@ -39,7 +39,7 @@
|
|||
"signingIdentity": null
|
||||
},
|
||||
"resources": [],
|
||||
"shortDescription": "",
|
||||
"shortDescription": "Make sense of an iNES ROM",
|
||||
"targets": "all",
|
||||
"windows": {
|
||||
"certificateThumbprint": null,
|
||||
|
|
|
|||
Loading…
Reference in New Issue