-
-
Notifications
You must be signed in to change notification settings - Fork 378
Implement GUI #471
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
rubentalstra
wants to merge
260
commits into
lzhoang2801:main
Choose a base branch
from
rubentalstra:GUI
base: main
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
Implement GUI #471
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
Co-authored-by: rubentalstra <14235001+rubentalstra@users.noreply.github.com>
Co-authored-by: rubentalstra <14235001+rubentalstra@users.noreply.github.com>
Co-authored-by: rubentalstra <14235001+rubentalstra@users.noreply.github.com>
…handling Co-authored-by: rubentalstra <14235001+rubentalstra@users.noreply.github.com>
Co-authored-by: rubentalstra <14235001+rubentalstra@users.noreply.github.com>
Co-authored-by: rubentalstra <14235001+rubentalstra@users.noreply.github.com>
…d-structure Restructure GUI with sidebar navigation and modular architecture
Co-authored-by: rubentalstra <14235001+rubentalstra@users.noreply.github.com>
Redesign GUI with macOS-inspired styling system
…formance optimizations Co-authored-by: rubentalstra <14235001+rubentalstra@users.noreply.github.com>
…etter visual feedback Co-authored-by: rubentalstra <14235001+rubentalstra@users.noreply.github.com>
…d code Co-authored-by: rubentalstra <14235001+rubentalstra@users.noreply.github.com>
…evice-by-device analysis Co-authored-by: rubentalstra <14235001+rubentalstra@users.noreply.github.com>
…orts, and add explicit state tracking Co-authored-by: rubentalstra <14235001+rubentalstra@users.noreply.github.com>
…ode fonts Co-authored-by: rubentalstra <14235001+rubentalstra@users.noreply.github.com>
…nd-buttons Add Hardware Compatibility Checker, WiFi Extractor, modernize GUI with lazy loading, and implement professional icon system
…ility checker Co-authored-by: rubentalstra <14235001+rubentalstra@users.noreply.github.com>
…e-issues Fix GUI configuration page to follow CLI flow - auto-run compatibility checker
Contributor
Author
|
@lzhoang2801 do you maybe have an |
Contributor
Author
Owner
Here #23 (comment) |
…o use GUI dialogs
…actor kext selection dialogs to use new GUI methods
…ed device selection dialogs
…ng in configuration pages
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 pull request introduces a new GUI mode for OpCore Simplify, providing a modern, cross-platform graphical interface alongside the existing CLI. The changes include a platform-adaptive icon system, modular GUI page structure, and macOS-inspired UI components and styling. The most important changes are grouped below:
1. GUI Mode Integration and Entry Point:
OpCore-Simplify.pyto launch a new GUI mode by default, with an option to fall back to CLI using the--cliargument. Handles import errors gracefully and switches to CLI if GUI is unavailable.2. Modular GUI Architecture:
Scripts/guipackage with an__init__.pythat exposes the main GUI class (OpCoreGUI) and the icon system (Icons).Scripts/gui/pagespackage with an__init__.pythat organizes and exposes all GUI page classes for easy import and modularity.3. Platform-Adaptive Icon System:
Scripts/gui/icons.py, which provides a robust icon system using Unicode and system fonts, ensuring consistent appearance across Windows, macOS, and Linux. Includes utility methods for icon retrieval and formatting.4. New GUI Pages with macOS-Inspired Styling:
Scripts/gui/pages/configuration_page.py, implementing a configuration page for hardware report selection and macOS version setup, featuring styled action cards and instructional content.Scripts/gui/pages/console_page.py, implementing a console log page with styled log area, clear/export actions, and helpful tips for users.