forked from israpps/FreeMcBoot-Installer
-
Notifications
You must be signed in to change notification settings - Fork 0
feat: Create OpenTuna installer page #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
google-labs-jules
wants to merge
83
commits into
master
Choose a base branch
from
add-install-opentuna-button
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Conversation
This file contains hidden or 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
OSDMenu
OSDMenu
per OSDMenu default configuration.
FMCB.XLF = @pcm720's PS2BBL for OSDMenu PS2BBL-MMCE.FMCB.XLF = PS2BBL MMCE Whichever is named "FMCB.XLF" will be the one installed.
Save Icon Credits: "PS2 Dashboard" (https://skfb.ly/pnAyJ) by deaffrasiertheboy is licensed under Creative Commons Attribution (http://creativecommons.org/licenses/by/4.0/).
This commit introduces the initial OpenTuna installer page. The main menu now has an "Install OpenTuna" option that navigates to this new page. The OpenTuna installer page currently performs the following actions: - Detects and displays the PS2's ROM version. - Handles memory card selection, prompting the user if multiple cards are inserted. - Performs a free space check on the selected memory card.
This commit fixes a build error that was caused by the `romver` variable being declared as `static` in `system.c`, which made it inaccessible from other files. The `static` keyword has been removed to make the variable global, which resolves the linker error. This change is part of the larger effort to add the OpenTuna installer page, and this fix is necessary for that feature to work correctly.
This commit introduces a new, separate menu page for the OpenTuna installer, accessible by navigating right from the main menu. The new page includes two options: - Install OpenTuna - Uninstall OpenTuna The necessary UI strings, menu items, and event handlers have been added. The navigation logic has been updated to create a circular flow between the main menu, OpenTuna menu, MC menu, and extras menu. Additionally, a bug in the main menu loop has been fixed where pressing the cancel button (circle) would exit the application instead of navigating back. The menu execution logic now correctly handles this as a "back" action. The ROM version of the console is now also displayed on the OpenTuna installer page.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This change adds the initial page for the OpenTuna installer. The new page can be accessed from the main menu and includes functionality for memory card selection, free space checking, and ROM version detection.