mirror of
https://github.com/outbackdingo/OpCore-Simplify.git
synced 2026-08-25 14:53:06 +00:00
Add support for macOS Tahoe 26
This commit is contained in:
@@ -502,12 +502,13 @@ class KextMaestro:
|
||||
|
||||
bundle["MaxKernel"] = os_data.get_latest_darwin_version()
|
||||
bundle["MinKernel"] = os_data.get_lowest_darwin_version()
|
||||
|
||||
kext_index = kext_data.kext_index_by_name.get(os.path.splitext(os.path.basename(bundle.get("BundlePath")))[0])
|
||||
|
||||
if kext_index:
|
||||
bundle["MaxKernel"] = self.kexts[kext_index].max_darwin_version
|
||||
bundle["MinKernel"] = self.kexts[kext_index].min_darwin_version
|
||||
if not "Beta" in os_data.get_macos_name_by_darwin(macos_version):
|
||||
kext_index = kext_data.kext_index_by_name.get(os.path.splitext(os.path.basename(bundle.get("BundlePath")))[0])
|
||||
|
||||
if kext_index:
|
||||
bundle["MaxKernel"] = self.kexts[kext_index].max_darwin_version
|
||||
bundle["MinKernel"] = self.kexts[kext_index].min_darwin_version
|
||||
|
||||
for dep_identifier in bundle.get("BundleLibraries"):
|
||||
if dep_identifier in bundle_dict:
|
||||
|
||||
Reference in New Issue
Block a user