diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ccbb7208..9493938da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ # OpenCore Legacy Patcher changelog -## 2.4.0 +## 2.3.2 +- Resolve erroring in Passwords app and Safari Autofill on T1 Macs running 15.3 or later +- Increment binaries: + - PatcherSupportPkg 1.9.3 - release ## 2.3.1 - Resolve error on OpenCore Vaulted configs diff --git a/opencore_legacy_patcher/constants.py b/opencore_legacy_patcher/constants.py index 59bd59b9b..550856877 100644 --- a/opencore_legacy_patcher/constants.py +++ b/opencore_legacy_patcher/constants.py @@ -13,8 +13,8 @@ from .detections import device_probe class Constants: def __init__(self) -> None: # Patcher Versioning - self.patcher_version: str = "2.4.0" # OpenCore-Legacy-Patcher - self.patcher_support_pkg_version: str = "1.9.2" # PatcherSupportPkg + self.patcher_version: str = "2.3.2" # OpenCore-Legacy-Patcher + self.patcher_support_pkg_version: str = "1.9.3" # PatcherSupportPkg self.copyright_date: str = "Copyright © 2020-2025 Dortania" self.patcher_name: str = "OpenCore Legacy Patcher" diff --git a/opencore_legacy_patcher/sys_patch/patchsets/base.py b/opencore_legacy_patcher/sys_patch/patchsets/base.py index 13dbea898..f39d15eca 100644 --- a/opencore_legacy_patcher/sys_patch/patchsets/base.py +++ b/opencore_legacy_patcher/sys_patch/patchsets/base.py @@ -33,4 +33,5 @@ class BasePatchset: self.macOS_14_1: float = 23.1 self.macOS_14_2: float = 23.2 self.macOS_14_4: float = 23.4 - self.macOS_15_2: float = 24.2 \ No newline at end of file + self.macOS_15_2: float = 24.2 + self.macOS_15_3: float = 24.3 \ No newline at end of file diff --git a/opencore_legacy_patcher/sys_patch/patchsets/hardware/misc/t1_security.py b/opencore_legacy_patcher/sys_patch/patchsets/hardware/misc/t1_security.py index d98a96de9..34038baa2 100644 --- a/opencore_legacy_patcher/sys_patch/patchsets/hardware/misc/t1_security.py +++ b/opencore_legacy_patcher/sys_patch/patchsets/hardware/misc/t1_security.py @@ -84,6 +84,7 @@ class T1SecurityChip(BaseHardware): "SharedUtils.framework": f"13.6-{self._xnu_major}" if self._xnu_major < os_data.sequoia else f"13.7.1-{self._xnu_major}", # Required for Password Authentication (SharedUtils.framework) **({ "MechanismPlugins": "15.0 Beta 4" } if self._xnu_major >= os_data.sequoia else {}), # Required to add a TouchID fingerprint **({ "ModulePlugins": "15.1" } if self._xnu_float >= self.macOS_15_2 else {}), + **({ "ModuleBase.framework": "15.2" } if self._xnu_float >= self.macOS_15_3 else {}), }, "/System/Library/PrivateFrameworks": { "EmbeddedOSInstall.framework": "13.6", # Required for biometrickitd