From 38188a5ccb2a8228ad8fbacaac5800a0e6c64225 Mon Sep 17 00:00:00 2001 From: Eduardo Covas <44532297+educovas@users.noreply.github.com> Date: Fri, 6 Oct 2023 14:16:26 -0300 Subject: [PATCH] Sync PatcherSupportPkg --- CHANGELOG.md | 5 +++++ data/sys_patch_dict.py | 2 +- resources/constants.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a44cafdf..bbaf5cf24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # 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 ## 1.0.1 - Resolve rendering issues on Intel Ivy Bridge iGPUs 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 3830c2bcd..19da1a5cc 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"