mirror of
https://github.com/outbackdingo/OpCore-Simplify.git
synced 2026-01-27 10:19:49 +00:00
* 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
16 lines
422 B
Python
16 lines
422 B
Python
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",
|
|
]
|