forked from mattpannella/pupdate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merges PRs for Coin-Op Beta Support and Display Modes Support (mattpa…
…nnella#336) * wip * testing * Added dynamic support for display modes - Added support for a curated list of display modes that is based off of a json file - Added support for a display mode selector that applies the selection to all cores Note: The video.json file is reset after a core update happens. * Added a maximum per the specs and a current count * model update * Display Modes Menu paging support - Added paging to the display mode selector with next, prev, and quit - Added prev and quit to core selector as well - Condensed the Pocket Setup menu into sub menus since we were full * wip * Updated the readme and some extras names * Added support for applying selected display modes to selected installed cores * Added support for updating a installing select cores * Made two hidden settings visible - use local pocket extras - use local display modes * more progress * remove jt stuff * whatever * refactoring * more cleanup * more * sigh * moved menu item * Little bit of cleanup * Display modes persistence - Display modes will get saved in the core settings - Display modes will be restored after a core gets updated - Display modes will be reset on core reinstall * readme * Updated the readme files and switch the CLI for display modes to use curated * Added missing using statement * Little bit of clean up * Fixed merge anomylies * 3am code is perfect code * fixed asset download * local file api * fix * oops * Fixed a logic issue on uninstall & moved logic for ignoring core instance jsons to a json file rather than code * List beta cores as new when they leave beta Closes mattpannella#317 * Reconfigured the menus * need a user agent for the api * uri encode the get string paramater --------- Co-authored-by: Matt Pannella <[email protected]>
- Loading branch information
1 parent
0799e8b
commit de441ff
Showing
49 changed files
with
1,447 additions
and
804 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"display_modes": { | ||
"all": [ | ||
{ "value": "0x10", "description": "CRT Trinitron" }, | ||
{ "value": "0x20", "description": "Greyscale LCD" }, | ||
{ "value": "0x30", "description": "Reflective Color LCD" }, | ||
{ "value": "0x40", "description": "Backlit Color LCD" }, | ||
{ "value": "0xE0", "description": "Pinball Neon Matrix" }, | ||
{ "value": "0xE1", "description": "Vacuum Fluorescent" } | ||
], | ||
"gb": [ | ||
{ "value": "0x21", "description": "Original GB DMG" }, | ||
{ "value": "0x22", "description": "Original GBP" }, | ||
{ "value": "0x23", "description": "Original GBP Light" } | ||
], | ||
"gbc": [ | ||
{ "value": "0x31", "description": "Original GBC LCD" }, | ||
{ "value": "0x32", "description": "Original GBC LCD+" } | ||
], | ||
"gba": [ | ||
{ "value": "0x41", "description": "Original GBA LCD" }, | ||
{ "value": "0x42", "description": "Original GBA SP 101" } | ||
], | ||
"gg": [ | ||
{ "value": "0x51", "description": "Original GG" }, | ||
{ "value": "0x52", "description": "Original GG+" } | ||
], | ||
"ngp": [ | ||
{ "value": "0x61", "description": "Original NGP" } | ||
], | ||
"ngpc": [ | ||
{ "value": "0x62", "description": "Original NGPC" }, | ||
{ "value": "0x63", "description": "Original NGPC+" } | ||
], | ||
"pce": [ | ||
{ "value": "0x71", "description": "TurboExpress" }, | ||
{ "value": "0x72", "description": "PC Engine LT" } | ||
], | ||
"lynx": [ | ||
{ "value": "0x81", "description": "Original Lynx" }, | ||
{ "value": "0x82", "description": "Original Lynx+" } | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.