Add Sidecar support

This commit is contained in:
Mykola Grymalyuk
2021-05-02 22:59:13 -06:00
parent 85fc1d6627
commit e5aea82b6f
7 changed files with 46 additions and 2 deletions

View File

@@ -36,6 +36,7 @@ class Constants:
self.cputscsync = "1.0.3"
self.hibernationfixup = "1.3.9"
self.nvmefix_version = "1.0.7"
self.sidecarfixup_version = "1.0.0"
self.payload_version = "0.0.4"
# Get resource path
@@ -187,6 +188,8 @@ class Constants:
@property
def nvmefix_path(self): return self.payload_kexts_path / Path(f"Acidanthera/NVMeFix-v{self.nvmefix_version}.zip")
@property
def sidecarfixup_path(self): return self.payload_kexts_path / Path(f"Acidanthera/SidecarFixup-v{self.sidecarfixup_version}.zip")
@property
def plist_folder_path(self): return self.payload_kexts_path / Path(f"Plists")
@property
def platform_plugin_plist_path(self): return self.plist_folder_path / Path(f"PlatformPlugin")