Sync PatcherSupportPkg

This commit is contained in:
Mykola Grymalyuk
2024-08-11 19:57:39 -06:00
parent 1a576c72a2
commit e453bd1b51
3 changed files with 18 additions and 16 deletions

View File

@@ -12,6 +12,8 @@
- Implement new Copy on Write detection mechanism for all file copying operations - Implement new Copy on Write detection mechanism for all file copying operations
- Implemented using `getattrlist` and `VOL_CAP_INT_CLONE` flag - Implemented using `getattrlist` and `VOL_CAP_INT_CLONE` flag
- Helps improve performance on APFS volumes - Helps improve performance on APFS volumes
- Increment Binaries:
- PatcherSupportPkg 1.6.3 - release
## 1.5.0 ## 1.5.0
- Restructure project directories - Restructure project directories

View File

@@ -14,7 +14,7 @@ class Constants:
def __init__(self) -> None: def __init__(self) -> None:
# Patcher Versioning # Patcher Versioning
self.patcher_version: str = "1.6.0" # OpenCore-Legacy-Patcher self.patcher_version: str = "1.6.0" # OpenCore-Legacy-Patcher
self.patcher_support_pkg_version: str = "1.4.9" # PatcherSupportPkg self.patcher_support_pkg_version: str = "1.6.3" # PatcherSupportPkg
self.copyright_date: str = "Copyright © 2020-2024 Dortania" self.copyright_date: str = "Copyright © 2020-2024 Dortania"
self.patcher_name: str = "OpenCore Legacy Patcher" self.patcher_name: str = "OpenCore Legacy Patcher"

View File

@@ -91,10 +91,10 @@ class SystemPatchDictionary():
- AppleIntelHD4000Graphics.kext - AppleIntelHD4000Graphics.kext
""" """
if self.os_major < os_data.os_data.sonoma: if self.os_major < os_data.os_data.sonoma:
return "11.4" return "11.7.10"
if self.os_float < self.macOS_14_4: if self.os_float < self.macOS_14_4:
return "11.4-23" return "11.7.10-23"
return "11.4-23.4" return "11.7.10-23.4"
def __resolve_kepler_geforce_framebuffers(self) -> str: def __resolve_kepler_geforce_framebuffers(self) -> str:
@@ -509,8 +509,8 @@ class SystemPatchDictionary():
}, },
"Install": { "Install": {
"/System/Library/PrivateFrameworks": { "/System/Library/PrivateFrameworks": {
"AppleGVA.framework": "10.15.7", "AppleGVA.framework": "11.7.10",
"AppleGVACore.framework": "10.15.7", "AppleGVACore.framework": "11.7.10",
}, },
}, },
}, },
@@ -1031,13 +1031,13 @@ class SystemPatchDictionary():
}, },
"Install": { "Install": {
"/System/Library/Extensions": { "/System/Library/Extensions": {
"AppleIntelHD4000GraphicsGLDriver.bundle": "11.0 Beta 6", "AppleIntelHD4000GraphicsGLDriver.bundle": "11.7.10",
"AppleIntelHD4000GraphicsMTLDriver.bundle": "11.0 Beta 6" if self.os_major < os_data.os_data.ventura else "11.0-beta 6-22", "AppleIntelHD4000GraphicsMTLDriver.bundle": "11.7.10" if self.os_major < os_data.os_data.ventura else "11.7.10-22",
"AppleIntelHD4000GraphicsVADriver.bundle": "11.3 Beta 1", "AppleIntelHD4000GraphicsVADriver.bundle": "11.7.10",
"AppleIntelFramebufferCapri.kext": self.__resolve_ivy_bridge_framebuffers(), "AppleIntelFramebufferCapri.kext": self.__resolve_ivy_bridge_framebuffers(),
"AppleIntelHD4000Graphics.kext": self.__resolve_ivy_bridge_framebuffers(), "AppleIntelHD4000Graphics.kext": self.__resolve_ivy_bridge_framebuffers(),
"AppleIntelIVBVA.bundle": "11.4", "AppleIntelIVBVA.bundle": "11.7.10",
"AppleIntelGraphicsShared.bundle": "11.4", # libIGIL-Metal.dylib pulled from 11.0 Beta 6 "AppleIntelGraphicsShared.bundle": "11.7.10", # libIGIL-Metal.dylib pulled from 11.0 Beta 6
}, },
}, },
}, },
@@ -1239,12 +1239,12 @@ class SystemPatchDictionary():
"wifip2pd": "13.6.5", "wifip2pd": "13.6.5",
}, },
"/System/Library/Frameworks": { "/System/Library/Frameworks": {
"CoreWLAN.framework": "13.6.5", "CoreWLAN.framework": f"13.6.5-{self.os_major}",
}, },
"/System/Library/PrivateFrameworks": { "/System/Library/PrivateFrameworks": {
"CoreWiFi.framework": "13.6.5", "CoreWiFi.framework": f"13.6.5-{self.os_major}",
"IO80211.framework": "13.6.5", "IO80211.framework": f"13.6.5-{self.os_major}",
"WiFiPeerToPeer.framework": "13.6.5", "WiFiPeerToPeer.framework": f"13.6.5-{self.os_major}",
}, },
}, },
}, },
@@ -1406,7 +1406,7 @@ class SystemPatchDictionary():
}, },
"Install": { "Install": {
"/System/Library/Frameworks": { "/System/Library/Frameworks": {
"LocalAuthentication.framework": "13.6" # Required for Password Authentication (SharedUtils.framework) "LocalAuthentication.framework": f"13.6-{self.os_major}" # Required for Password Authentication (SharedUtils.framework)
}, },
"/System/Library/PrivateFrameworks": { "/System/Library/PrivateFrameworks": {
"EmbeddedOSInstall.framework": "13.6" # Required for biometrickitd "EmbeddedOSInstall.framework": "13.6" # Required for biometrickitd