mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-17 13:22:54 +10:00
Sync binaries
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
- Credit to [Ausdauersportler](https://github.com/Ausdauersportler) for implementation
|
||||
- Backend changes:
|
||||
- Use `.AppleSystemUIFont` for wxPython text rendering (thanks [jazzzny](https://github.com/Jazzzny))
|
||||
- Add extra error handling for network errors
|
||||
- Add extra error handling for network errors:
|
||||
- Handles `RemoteDisconnected('Remote end closed connection without response')` exceptions
|
||||
- Move root volume patch set generation to dedicated sys_patch_generate.py module
|
||||
- Refactored integrity_verification.py:
|
||||
@@ -21,6 +21,10 @@
|
||||
- Reduced disk I/O and main thread monopolization
|
||||
- Increment Binaries:
|
||||
- PatcherSupportPkg 0.9.2 - release
|
||||
- OpenCorePkg 0.9.1 - release
|
||||
- AirPortBrcmFixup 2.1.7 - release
|
||||
- RestrictEvents 1.1.0 - release
|
||||
- BrcmPatchRAM 2.6.5 - release
|
||||
|
||||
## 0.6.2
|
||||
- Work around Black Box rendering issues on certain Display Color Profiles
|
||||
|
||||
@@ -2611,6 +2611,8 @@
|
||||
<false/>
|
||||
<key>ForceResolution</key>
|
||||
<false/>
|
||||
<key>GopBurstMode</key>
|
||||
<false/>
|
||||
<key>GopPassThrough</key>
|
||||
<string>Disabled</string>
|
||||
<key>IgnoreTextInGraphics</key>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
BIN
payloads/Kexts/Acidanthera/AirportBrcmFixup-v2.1.7-DEBUG.zip
Normal file
BIN
payloads/Kexts/Acidanthera/AirportBrcmFixup-v2.1.7-DEBUG.zip
Normal file
Binary file not shown.
BIN
payloads/Kexts/Acidanthera/AirportBrcmFixup-v2.1.7-RELEASE.zip
Normal file
BIN
payloads/Kexts/Acidanthera/AirportBrcmFixup-v2.1.7-RELEASE.zip
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
payloads/Kexts/Acidanthera/BlueToolFixup-v2.6.5-DEBUG.zip
Normal file
BIN
payloads/Kexts/Acidanthera/BlueToolFixup-v2.6.5-DEBUG.zip
Normal file
Binary file not shown.
BIN
payloads/Kexts/Acidanthera/BlueToolFixup-v2.6.5-RELEASE.zip
Normal file
BIN
payloads/Kexts/Acidanthera/BlueToolFixup-v2.6.5-RELEASE.zip
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
payloads/Kexts/Acidanthera/RestrictEvents-v1.1.0-DEBUG.zip
Normal file
BIN
payloads/Kexts/Acidanthera/RestrictEvents-v1.1.0-DEBUG.zip
Normal file
Binary file not shown.
BIN
payloads/Kexts/Acidanthera/RestrictEvents-v1.1.0-RELEASE.zip
Normal file
BIN
payloads/Kexts/Acidanthera/RestrictEvents-v1.1.0-RELEASE.zip
Normal file
Binary file not shown.
@@ -23,7 +23,7 @@ KEXT_DICTIONARY = {
|
||||
# },
|
||||
"BlueToolFixup": {
|
||||
"Repository": "https://github.com/acidanthera/BrcmPatchRAM",
|
||||
"Constants Variable": "self.bluetoolfixup_version",
|
||||
"Constants Variable": "self.bluetool_version",
|
||||
"Override": "BrcmPatchRAM",
|
||||
},
|
||||
"CPUFriend": {
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -62,6 +62,7 @@ UNUSED_TOOLS = [
|
||||
"RtcRw.efi",
|
||||
"CsrUtil.efi",
|
||||
"TpmInfo.efi",
|
||||
"ListPartitions.efi",
|
||||
]
|
||||
|
||||
IMPORTANT_UTILITIES = [
|
||||
|
||||
Binary file not shown.
@@ -26,8 +26,8 @@ class Constants:
|
||||
|
||||
# OpenCore Versioning
|
||||
# https://github.com/acidanthera/OpenCorePkg
|
||||
self.opencore_commit: str = "e4f0ba1 - 03-06-2023"
|
||||
self.opencore_version: str = "0.9.0"
|
||||
self.opencore_commit: str = "41b8aca - 04-03-2023"
|
||||
self.opencore_version: str = "0.9.1"
|
||||
|
||||
# Kext Versioning
|
||||
## Acidanthera
|
||||
@@ -35,14 +35,14 @@ class Constants:
|
||||
self.lilu_version: str = "1.6.4" # Lilu
|
||||
self.whatevergreen_version: str = "1.6.4" # WhateverGreen
|
||||
self.whatevergreen_navi_version: str = "1.6.4-Navi" # WhateverGreen (Navi Patch)
|
||||
self.airportbcrmfixup_version: str = "2.1.6" # AirPortBrcmFixup
|
||||
self.airportbcrmfixup_version: str = "2.1.7" # AirPortBrcmFixup
|
||||
self.nvmefix_version: str = "1.1.0" # NVMeFix
|
||||
self.applealc_version: str = "1.6.3" # AppleALC
|
||||
self.restrictevents_version: str = "1.0.9" # RestrictEvents
|
||||
self.restrictevents_version: str = "1.1.0" # RestrictEvents
|
||||
self.featureunlock_version: str = "1.1.4" # FeatureUnlock
|
||||
self.debugenhancer_version: str = "1.0.7" # DebugEnhancer
|
||||
self.cpufriend_version: str = "1.2.6" # CPUFriend
|
||||
self.bluetool_version: str = "2.6.4" # BlueToolFixup (BrcmPatchRAM)
|
||||
self.bluetool_version: str = "2.6.5" # BlueToolFixup (BrcmPatchRAM)
|
||||
self.cslvfixup_version: str = "2.6.1" # CSLVFixup
|
||||
self.autopkg_version: str = "1.0.2" # AutoPkgInstaller
|
||||
self.cryptexfixup_version: str = "1.0.1" # CryptexFixup
|
||||
|
||||
@@ -15,9 +15,6 @@ import webbrowser
|
||||
|
||||
import time
|
||||
|
||||
import binascii
|
||||
import hashlib
|
||||
|
||||
import logging
|
||||
import tempfile
|
||||
|
||||
|
||||
Reference in New Issue
Block a user