diff --git a/CHANGELOG.md b/CHANGELOG.md index 78a9e7318..5e7049fee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,13 @@ # OpenCore Legacy Patcher changelog ## 1.1.0 +- Resolve rendering issues on Intel Broadwell iGPUs +- Update non-Metal Binaries for macOS Sonoma: + - Resolve unresponsive Weather app + - Resolve full screen menubar covering the app toolbar + - Resolve unfocused password windows - Increment Binaries: + - PatcherSupportPkg 1.3.4 - release - AirportBrcmFixup 2.1.8 - release - BlueToolFixup 2.6.8 - release - RestrictEvents 1.1.3 - release diff --git a/data/sys_patch_dict.py b/data/sys_patch_dict.py index 8091c889f..945b210bc 100644 --- a/data/sys_patch_dict.py +++ b/data/sys_patch_dict.py @@ -999,7 +999,7 @@ class SystemPatchDictionary(): "AppleIntelBDWGraphics.kext": "12.5" if self.os_major < os_data.os_data.sonoma else "12.5-23", "AppleIntelBDWGraphicsFramebuffer.kext": "12.5" if self.os_major < os_data.os_data.sonoma else "12.5-23", "AppleIntelBDWGraphicsGLDriver.bundle": "12.5", - "AppleIntelBDWGraphicsMTLDriver.bundle": "12.5", + "AppleIntelBDWGraphicsMTLDriver.bundle": "12.5" if self.os_major < os_data.os_data.ventura else "12.5-22", "AppleIntelBDWGraphicsVADriver.bundle": "12.5", "AppleIntelBDWGraphicsVAME.bundle": "12.5", "AppleIntelGraphicsShared.bundle": "12.5", diff --git a/resources/constants.py b/resources/constants.py index f7a9339ee..3ba7a2b66 100644 --- a/resources/constants.py +++ b/resources/constants.py @@ -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.3" # PatcherSupportPkg + self.patcher_support_pkg_version: str = "1.3.4" # PatcherSupportPkg self.copyright_date: str = "Copyright © 2020-2023 Dortania" self.patcher_name: str = "OpenCore Legacy Patcher"