mirror of
https://github.com/outbackdingo/OpCore-Simplify.git
synced 2026-01-27 18:19:49 +00:00
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:
@@ -4,9 +4,9 @@ import random
|
||||
import json
|
||||
|
||||
class Github:
|
||||
def __init__(self):
|
||||
self.utils = utils.Utils()
|
||||
self.fetcher = resource_fetcher.ResourceFetcher()
|
||||
def __init__(self, utils_instance=None, resource_fetcher_instance=None):
|
||||
self.utils = utils_instance if utils_instance else utils.Utils()
|
||||
self.fetcher = resource_fetcher_instance if resource_fetcher_instance else resource_fetcher.ResourceFetcher()
|
||||
|
||||
def extract_payload(self, response):
|
||||
for line in response.splitlines():
|
||||
|
||||
Reference in New Issue
Block a user