diff --git a/CHANGELOG.md b/CHANGELOG.md index 5065f9291..23ff14d0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,7 +27,7 @@ - NVMeFix (1.0.9 rolling - 06-08-2021) - WhateverGreen (1.5.1 rolling - 06-08-2021) - RestrictEvents (1.0.3 rolling - 06-08-2021) - - Apple Binaries (0.0.13 release - 06-08-2021) + - Apple Binaries (0.0.14 release - 06-10-2021) - MouSSE (0.95 release - 06-08-2021) - Fix SSE4,2 Emulation diff --git a/Resources/Constants.py b/Resources/Constants.py index 08448b40b..fc10643cc 100644 --- a/Resources/Constants.py +++ b/Resources/Constants.py @@ -40,7 +40,7 @@ class Constants: self.sidecarfixup_version = "1.0.2" self.innie_version = "1.3.0" self.fw_kext = "1.0.0" - self.payload_version = "0.0.13" + self.payload_version = "0.0.14" # Get resource path self.current_path = Path(__file__).parent.parent.resolve() diff --git a/Resources/ModelArray.py b/Resources/ModelArray.py index 098d3c5ca..45a8995b9 100644 --- a/Resources/ModelArray.py +++ b/Resources/ModelArray.py @@ -1244,9 +1244,9 @@ AddIntelGen3Accel = [ "AppleIntelHD4000GraphicsGLDriver.bundle", "AppleIntelHD4000GraphicsMTLDriver.bundle", "AppleIntelHD4000GraphicsVADriver.bundle", - "IOSurface.kext", - "IOGPUFamily.kext", - "IOAcceleratorFamily2.kext", + #"IOSurface.kext", + #"IOGPUFamily.kext", + #"IOAcceleratorFamily2.kext", ] AddGeneralAccel = [ diff --git a/Resources/SysPatch.py b/Resources/SysPatch.py index 5ed6a05ce..a14fe0ab5 100644 --- a/Resources/SysPatch.py +++ b/Resources/SysPatch.py @@ -191,9 +191,9 @@ class PatchSysVolume: self.add_new_binaries(ModelArray.AddIntelGen2Accel, self.constants.legacy_intel_gen1_path) def gpu_framebuffer_ivybridge(self): - self.delete_old_binaries(ModelArray.DeleteAMDAccel11) + #self.delete_old_binaries(ModelArray.DeleteAMDAccel11) self.add_new_binaries(ModelArray.AddIntelGen3Accel, self.constants.legacy_intel_gen3_path) - self.elevated(["ditto", self.constants.payload_apple_frameworks_path_accel, self.mount_frameworks], stdout=subprocess.PIPE).stdout.decode().strip().encode() + #self.elevated(["ditto", self.constants.payload_apple_frameworks_path_accel, self.mount_frameworks], stdout=subprocess.PIPE).stdout.decode().strip().encode() def gpu_accel_legacy_extended(self): print("- Merging general legacy Frameworks") @@ -368,10 +368,9 @@ class PatchSysVolume: if self.constants.detected_os > self.constants.catalina: self.sandy_gpu = True self.amfi_must_disable = True - # TODO: Re-enable when Accel Patches are ready - #elif igpu_device in PCIIDArray.intel_ids().ivy_ids: - # if self.constants.detected_os > self.constants.big_sur: - # self.ivy_gpu = True + elif igpu_device in PCIIDArray.intel_ids().ivy_ids: + if self.constants.detected_os > self.constants.big_sur: + self.ivy_gpu = True elif igpu_vendor == self.constants.pci_nvidia: if self.constants.detected_os > self.constants.catalina: self.nvidia_legacy = True