From 8a6a9ec0545e11c97532e9b95de957a33f6c6898 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Mon, 2 Oct 2023 20:26:22 -0600 Subject: [PATCH] sys_patch_dict.py: Fix OS versioning for CoreImage Thanks @OnesuchDev for catching this --- CHANGELOG.md | 1 + data/sys_patch_dict.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bfae26b46..ded3d71f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## 1.1.0 - Add error handling for corrupted patcher settings +- Remove CoreImage patch for 3802 GPUs on Ventura ## 1.0.0 - Resolve BCM2046 and BCM2070 support on macOS 13.3 and newer diff --git a/data/sys_patch_dict.py b/data/sys_patch_dict.py index ca7995036..76826ea87 100644 --- a/data/sys_patch_dict.py +++ b/data/sys_patch_dict.py @@ -377,7 +377,7 @@ class SystemPatchDictionary(): "Install": { "/System/Library/Frameworks": { "Metal.framework": f"13.2.1-{self.os_major}", - **({ "CoreImage.framework": "14.0 Beta 3" } if self.os_major >= os_data.os_data.ventura else {}), + **({ "CoreImage.framework": "14.0 Beta 3" } if self.os_major >= os_data.os_data.sonoma else {}), }, "/System/Library/PrivateFrameworks": { **({ "MTLCompiler.framework": "13.2.1" } if self.os_major == os_data.os_data.ventura else {}),