Add GUI Support for OpCore Simplify (#512)

* Refactor OpCore-Simplify to GUI version

* New ConfigEditor

* Add requirement checks and installation in launchers

* Add GitHub Actions workflow to generate manifest.json

* Set compression level for asset

* Skip .git and __pycache__ folders

* Refactor update process to include integrity checker

* Add SMBIOS model selection

* Update README.md

* Update to main branch
This commit is contained in:
Hoang Hong Quan
2025-12-30 14:19:47 +07:00
committed by GitHub
parent 871d826ea4
commit 0e608a56ce
38 changed files with 4948 additions and 1636 deletions
+15
View File
@@ -0,0 +1,15 @@
from .home_page import HomePage
from .select_hardware_report_page import SelectHardwareReportPage
from .compatibility_page import CompatibilityPage
from .configuration_page import ConfigurationPage
from .build_page import BuildPage
from .settings_page import SettingsPage
__all__ = [
"HomePage",
"SelectHardwareReportPage",
"CompatibilityPage",
"ConfigurationPage",
"BuildPage",
"SettingsPage",
]