mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-14 04:38:20 +10:00
sys_patch_dict: Seperate 3802 patch set files
Ensure XPC service is not downgraded
This commit is contained in:
@@ -40,7 +40,7 @@
|
||||
- OpenCorePkg 0.8.3 release
|
||||
- Lilu 1.6.2 - release
|
||||
- FeatureUnlock 1.0.9 release
|
||||
- PatcherSupportPkg 0.6.1 - release
|
||||
- PatcherSupportPkg 0.6.3 - release
|
||||
- BrcmPatchRAM 2.6.3 - release
|
||||
- AutoPkgInstaller 1.0.1 - release
|
||||
|
||||
|
||||
@@ -191,12 +191,11 @@ def SystemPatchDictionary(os_major, os_minor, non_metal_os_support):
|
||||
**({ "Metal.framework": "12.5" } if os_major >= os_data.os_data.ventura else {}),
|
||||
**({ "MetalPerformanceShaders.framework": "12.5" } if os_major >= os_data.os_data.ventura else {}),
|
||||
},
|
||||
"/System/Library/Sandbox/Profiles": {
|
||||
**({ "com.apple.mtlcompilerservice.sb": "12.5" } if os_major >= os_data.os_data.ventura else {}),
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
# Intel Ivy Bridge, Haswell and Nvidia Kepler are Metal 3802-based GPUs
|
||||
# Due to this, we need to re-add 3802 compiler support to the Metal stack
|
||||
"Metal 3802 Common": {
|
||||
"Display Name": "",
|
||||
"OS Support": {
|
||||
@@ -210,10 +209,16 @@ def SystemPatchDictionary(os_major, os_minor, non_metal_os_support):
|
||||
},
|
||||
},
|
||||
"Install": {
|
||||
"/System/Library/PrivateFrameworks": {
|
||||
"MTLCompiler.framework": "12.5",
|
||||
"GPUCompiler.framework": "12.5",
|
||||
"/System/Library/Frameworks": {
|
||||
**({ "Metal.framework": "12.5-3802" } if os_major >= os_data.os_data.ventura else {}),
|
||||
},
|
||||
"/System/Library/PrivateFrameworks": {
|
||||
"MTLCompiler.framework": "12.5-3802",
|
||||
"GPUCompiler.framework": "12.5-3802",
|
||||
},
|
||||
"/System/Library/Sandbox/Profiles": {
|
||||
**({ "com.apple.mtlcompilerservice.sb": "12.5-3802" } if os_major >= os_data.os_data.ventura else {}),
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ class Constants:
|
||||
def __init__(self):
|
||||
# Patcher Versioning
|
||||
self.patcher_version = "0.5.0" # OpenCore-Legacy-Patcher
|
||||
self.patcher_support_pkg_version = "0.6.1" # PatcherSupportPkg
|
||||
self.patcher_support_pkg_version = "0.6.3" # PatcherSupportPkg
|
||||
self.url_patcher_support_pkg = "https://github.com/dortania/PatcherSupportPkg/releases/download/"
|
||||
self.nightly_url_patcher_support_pkg = "https://nightly.link/dortania/PatcherSupportPkg/workflows/build/master/"
|
||||
self.discord_link = "https://discord.gg/rqdPgH8xSN"
|
||||
|
||||
Reference in New Issue
Block a user