Sync PatcherSupportPkg

This commit is contained in:
Mykola Grymalyuk
2023-10-15 18:06:41 -06:00
parent 14e5772b44
commit d83f8ee381
3 changed files with 11 additions and 6 deletions

View File

@@ -12,7 +12,7 @@
- Resolve T1 Security Chip support on macOS 14
- Applicable for MacBookPro13,2, MacBookPro13,3, MacBookPro14,2, MacBookPro14,3
- Increment Binaries:
- PatcherSupportPkg 1.4.1 - release
- PatcherSupportPkg 1.4.2 - release
- AirportBrcmFixup 2.1.8 - release
- BlueToolFixup 2.6.8 - release
- RestrictEvents 1.1.3 - release

View File

@@ -1344,11 +1344,16 @@ class SystemPatchDictionary():
"/usr/lib": {
"libNFC_Comet.dylib": "13.6",
"libNFC_HAL.dylib": "13.6",
"libnfshared.dylib": "13.6",
"libnfshared.dylibOld.dylib": "13.6",
"libnfstorage.dylib": "13.6",
"libPN548_API.dylib": "13.6"
},
"/usr/libexec": {
"biometrickitd": "13.6", # Required for Touch ID
**({"nfcd": "14.0"} if (self.os_float >= self.macOS_14_1) else {}), # Missing symbol ('_NFDriverEnableReaderModeDynamicBBAControl')
"nfcd": "13.6", # Required for Apple Pay
},
},
},

View File

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