mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-06-15 03:46:28 +10:00
Sync PatcherSupportPkg
This commit is contained in:
+8
-1
@@ -1,6 +1,13 @@
|
||||
# OpenCore Legacy Patcher changelog
|
||||
|
||||
## 1.1.0
|
||||
## 1.0.1
|
||||
- Resolve rendering issues on Intel ivy Bridge iGPUs
|
||||
- Update non-Metal Binaries for MacOS Sonoma:
|
||||
- Resolve unresponsive Catalyst buttons
|
||||
- Resolve window unfocusing issues
|
||||
- Resolve menu bar fonts not changing color automatically with Beta Menu Bar enabled
|
||||
- Improve Lock Screen clock transparency
|
||||
- Prevent random WiFiAgent crashes
|
||||
- Add error handling for corrupted patcher settings
|
||||
- Remove CoreImage patch for 3802 GPUs on Ventura
|
||||
- Avoid listing PCIe FaceTime camera patch on pre-Sonoma OSes
|
||||
|
||||
@@ -949,7 +949,7 @@ class SystemPatchDictionary():
|
||||
"Install": {
|
||||
"/System/Library/Extensions": {
|
||||
"AppleIntelHD4000GraphicsGLDriver.bundle": "11.0 Beta 6",
|
||||
"AppleIntelHD4000GraphicsMTLDriver.bundle": "11.0 Beta 6",
|
||||
"AppleIntelHD4000GraphicsMTLDriver.bundle": "11.0 Beta 6" if self.os_major < os_data.os_data.ventura else "11.0-beta 6-22",
|
||||
"AppleIntelHD4000GraphicsVADriver.bundle": "11.3 Beta 1",
|
||||
"AppleIntelFramebufferCapri.kext": "11.4" if self.os_major < os_data.os_data.sonoma else "11.4-23",
|
||||
"AppleIntelHD4000Graphics.kext": "11.4" if self.os_major < os_data.os_data.sonoma else "11.4-23",
|
||||
|
||||
@@ -13,8 +13,8 @@ from data import os_data
|
||||
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.2" # PatcherSupportPkg
|
||||
self.patcher_version: str = "1.0.1" # OpenCore-Legacy-Patcher
|
||||
self.patcher_support_pkg_version: str = "1.3.3" # PatcherSupportPkg
|
||||
self.copyright_date: str = "Copyright © 2020-2023 Dortania"
|
||||
self.patcher_name: str = "OpenCore Legacy Patcher"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user