Fix Music.app support

Closes https://github.com/dortania/OpenCore-Legacy-Patcher/issues/497
This commit is contained in:
Mykola Grymalyuk
2021-09-22 19:25:29 -06:00
parent a3208acbfe
commit 32a0289af3
4 changed files with 26 additions and 0 deletions

View File

@@ -35,6 +35,7 @@ class Constants:
self.debugenhancer_version = "1.0.4" # DebugEnhancer
self.cpufriend_version = "1.2.4" # CPUFriend
self.bluetool_version = "2.6.1" # BlueToolFixup
self.cslvfixup_version = "2.6.1" # CSLVFixup
## Apple
## https://www.apple.com
@@ -336,6 +337,10 @@ class Constants:
@property
def bluetool_path(self):
return self.payload_kexts_path / Path(f"Acidanthera/BlueToolFixup-v{self.bluetool_version}.zip")
@property
def cslvfixup_path(self):
return self.payload_kexts_path / Path(f"Acidanthera/CSLVFixup-v{self.cslvfixup_version}.zip")
@property
def innie_path(self):