Merge branch 'main' into gui-refactor

This commit is contained in:
Mykola Grymalyuk
2023-05-17 10:07:06 -07:00
committed by GitHub
3 changed files with 6 additions and 3 deletions

View File

@@ -14,6 +14,9 @@
- Resolve low power mode on MacPro6,1
- Credit to CaseyJ's [PCI Bus Enumeration Patch](https://github.com/AMD-OSX/AMD_Vanilla/pull/196)
- Resolve PCI eject menu appearing on unsupported hardware
- Resolve kernel panic on wake for AMD TeraScale 1 and Nvidia Tesla 8000 series GPUs
- Resolve graphics corruption on wake for TeraScale 1
- Patch currently limited to Ventura and newer
- Backend changes:
- Rename OCLP-Helper to OpenCore-Patcher-Helper
- Allows for better identification when displaying prompts
@@ -31,7 +34,7 @@
- ex. Root patching
- Implement default selections for disks and installers
- Increment Binaries:
- PatcherSupportPkg 1.0.0 - release
- PatcherSupportPkg 1.0.1 - release
- OpenCorePkg 0.9.2 - release
- Lilu 1.6.5 - release
- RestrictEvents 1.1.1 - release

View File

@@ -699,7 +699,7 @@ class SystemPatchDictionary():
"AMD3800Controller.kext": "10.13.6",
"AMD4600Controller.kext": "10.13.6",
"AMD4800Controller.kext": "10.13.6",
"ATIRadeonX2000.kext": "10.13.6",
"ATIRadeonX2000.kext": "10.13.6" if self.os_major < os_data.os_data.ventura else "10.13.6 TS1",
"ATIRadeonX2000GA.plugin": "10.13.6",
"ATIRadeonX2000GLDriver.bundle": "10.13.6",
"ATIRadeonX2000VADriver.bundle": "10.13.6",

View File

@@ -13,7 +13,7 @@ class Constants:
def __init__(self) -> None:
# Patcher Versioning
self.patcher_version: str = "0.6.6" # OpenCore-Legacy-Patcher
self.patcher_support_pkg_version: str = "1.0.0" # PatcherSupportPkg
self.patcher_support_pkg_version: str = "1.0.1" # PatcherSupportPkg
self.copyright_date: str = "Copyright © 2020-2023 Dortania"
self.patcher_name: str = "OpenCore Legacy Patcher"