mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-06-21 06:30:52 +10:00
sys_patch_dict.py: Fix OS versioning for CoreImage
Thanks @OnesuchDev for catching this
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
## 1.1.0
|
## 1.1.0
|
||||||
- Add error handling for corrupted patcher settings
|
- Add error handling for corrupted patcher settings
|
||||||
|
- Remove CoreImage patch for 3802 GPUs on Ventura
|
||||||
|
|
||||||
## 1.0.0
|
## 1.0.0
|
||||||
- Resolve BCM2046 and BCM2070 support on macOS 13.3 and newer
|
- Resolve BCM2046 and BCM2070 support on macOS 13.3 and newer
|
||||||
|
|||||||
@@ -377,7 +377,7 @@ class SystemPatchDictionary():
|
|||||||
"Install": {
|
"Install": {
|
||||||
"/System/Library/Frameworks": {
|
"/System/Library/Frameworks": {
|
||||||
"Metal.framework": f"13.2.1-{self.os_major}",
|
"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": {
|
"/System/Library/PrivateFrameworks": {
|
||||||
**({ "MTLCompiler.framework": "13.2.1" } if self.os_major == os_data.os_data.ventura else {}),
|
**({ "MTLCompiler.framework": "13.2.1" } if self.os_major == os_data.os_data.ventura else {}),
|
||||||
|
|||||||
Reference in New Issue
Block a user