Sync PatcherSupportPkg

This commit is contained in:
Mykola Grymalyuk
2023-10-15 13:47:01 -06:00
parent 2ec63ce006
commit 457615a161
3 changed files with 5 additions and 3 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.3.9 - release
- PatcherSupportPkg 1.4.1 - release
- AirportBrcmFixup 2.1.8 - release
- BlueToolFixup 2.6.8 - release
- RestrictEvents 1.1.3 - release

View File

@@ -70,6 +70,7 @@ class SystemPatchDictionary():
self.macOS_12_4: float = 21.5
self.macOS_12_5: float = 21.6
self.macOS_13_3: float = 22.4
self.macOS_14_1: float = 23.1
self._generate_sys_patch_dict()
@@ -1346,7 +1347,8 @@ class SystemPatchDictionary():
"libPN548_API.dylib": "13.6"
},
"/usr/libexec": {
"biometrickitd": "13.6" # Required for Touch ID
"biometrickitd": "13.6", # Required for Touch ID
**({"nfcd": "14.0"} if (self.os_float >= self.macOS_14_1) else {}), # Missing symbol ('_NFDriverEnableReaderModeDynamicBBAControl')
},
},
},

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.3.9" # PatcherSupportPkg
self.patcher_support_pkg_version: str = "1.4.1" # PatcherSupportPkg
self.copyright_date: str = "Copyright © 2020-2023 Dortania"
self.patcher_name: str = "OpenCore Legacy Patcher"