Sync binaries

This commit is contained in:
Mykola Grymalyuk
2023-04-03 11:06:13 -06:00
parent 38025d7f2a
commit 9439c39437
21 changed files with 14 additions and 10 deletions

View File

@@ -13,7 +13,7 @@
- Credit to [Ausdauersportler](https://github.com/Ausdauersportler) for implementation - Credit to [Ausdauersportler](https://github.com/Ausdauersportler) for implementation
- Backend changes: - Backend changes:
- Use `.AppleSystemUIFont` for wxPython text rendering (thanks [jazzzny](https://github.com/Jazzzny)) - 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 - Handles `RemoteDisconnected('Remote end closed connection without response')` exceptions
- Move root volume patch set generation to dedicated sys_patch_generate.py module - Move root volume patch set generation to dedicated sys_patch_generate.py module
- Refactored integrity_verification.py: - Refactored integrity_verification.py:
@@ -21,6 +21,10 @@
- Reduced disk I/O and main thread monopolization - Reduced disk I/O and main thread monopolization
- Increment Binaries: - Increment Binaries:
- PatcherSupportPkg 0.9.2 - release - 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 ## 0.6.2
- Work around Black Box rendering issues on certain Display Color Profiles - Work around Black Box rendering issues on certain Display Color Profiles

View File

@@ -2611,6 +2611,8 @@
<false/> <false/>
<key>ForceResolution</key> <key>ForceResolution</key>
<false/> <false/>
<key>GopBurstMode</key>
<false/>
<key>GopPassThrough</key> <key>GopPassThrough</key>
<string>Disabled</string> <string>Disabled</string>
<key>IgnoreTextInGraphics</key> <key>IgnoreTextInGraphics</key>

View File

@@ -23,7 +23,7 @@ KEXT_DICTIONARY = {
# }, # },
"BlueToolFixup": { "BlueToolFixup": {
"Repository": "https://github.com/acidanthera/BrcmPatchRAM", "Repository": "https://github.com/acidanthera/BrcmPatchRAM",
"Constants Variable": "self.bluetoolfixup_version", "Constants Variable": "self.bluetool_version",
"Override": "BrcmPatchRAM", "Override": "BrcmPatchRAM",
}, },
"CPUFriend": { "CPUFriend": {

Binary file not shown.

View File

@@ -62,6 +62,7 @@ UNUSED_TOOLS = [
"RtcRw.efi", "RtcRw.efi",
"CsrUtil.efi", "CsrUtil.efi",
"TpmInfo.efi", "TpmInfo.efi",
"ListPartitions.efi",
] ]
IMPORTANT_UTILITIES = [ IMPORTANT_UTILITIES = [

Binary file not shown.

View File

@@ -26,8 +26,8 @@ class Constants:
# OpenCore Versioning # OpenCore Versioning
# https://github.com/acidanthera/OpenCorePkg # https://github.com/acidanthera/OpenCorePkg
self.opencore_commit: str = "e4f0ba1 - 03-06-2023" self.opencore_commit: str = "41b8aca - 04-03-2023"
self.opencore_version: str = "0.9.0" self.opencore_version: str = "0.9.1"
# Kext Versioning # Kext Versioning
## Acidanthera ## Acidanthera
@@ -35,14 +35,14 @@ class Constants:
self.lilu_version: str = "1.6.4" # Lilu self.lilu_version: str = "1.6.4" # Lilu
self.whatevergreen_version: str = "1.6.4" # WhateverGreen self.whatevergreen_version: str = "1.6.4" # WhateverGreen
self.whatevergreen_navi_version: str = "1.6.4-Navi" # WhateverGreen (Navi Patch) 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.nvmefix_version: str = "1.1.0" # NVMeFix
self.applealc_version: str = "1.6.3" # AppleALC 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.featureunlock_version: str = "1.1.4" # FeatureUnlock
self.debugenhancer_version: str = "1.0.7" # DebugEnhancer self.debugenhancer_version: str = "1.0.7" # DebugEnhancer
self.cpufriend_version: str = "1.2.6" # CPUFriend 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.cslvfixup_version: str = "2.6.1" # CSLVFixup
self.autopkg_version: str = "1.0.2" # AutoPkgInstaller self.autopkg_version: str = "1.0.2" # AutoPkgInstaller
self.cryptexfixup_version: str = "1.0.1" # CryptexFixup self.cryptexfixup_version: str = "1.0.1" # CryptexFixup

View File

@@ -15,9 +15,6 @@ import webbrowser
import time import time
import binascii
import hashlib
import logging import logging
import tempfile import tempfile