Skip to content

Commit

Permalink
Merge branch 'dortania:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
ParaDoX1994 authored Oct 2, 2023
2 parents 957b3a4 + be4ef6a commit 91f8708
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
- Note building from source will require Python 3.11 or newer and up-to-date Python modules
- Update font handling code, fixing font issues on Yosemite and El Capitan
- Resolve incorrect RELEASE usage of OpenCore binaries when DEBUG enabled
- Add RenderBox.framework patch for 3802-based Intel GPUs on macOS 13.3 and newer
- Works around Weather and Widget freezing
- Applicable for Intel Ivy Bridge and Haswell iGPUs
- Add macOS Sonoma support to PatcherSupportPkg validation in CI
- Implement basic support for macOS Sonoma:
- Supports same range of hardware as Ventura, in addition to:
- iMac18,x
Expand All @@ -35,7 +39,7 @@
- CPUFriend 1.2.7 - release
- BlueToolFixup 2.6.8 - rolling (2305aaa)
- CryptexFixup 1.0.2 - release
- PatcherSupportPkg 1.3.0 - release
- PatcherSupportPkg 1.3.2 - release
- Build Server Changes:
- Upgrade Python backend to 3.11.5
- Upgrade Python modules:
Expand Down
1 change: 1 addition & 0 deletions data/sys_patch_dict.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,7 @@ def _generate_sys_patch_dict(self):
"/System/Library/PrivateFrameworks": {
**({ "MTLCompiler.framework": "13.2.1" } if self.os_major == os_data.os_data.ventura else {}),
**({ "GPUCompiler.framework": "13.2.1" } if self.os_major == os_data.os_data.ventura else {}),
"RenderBox.framework": "13.2.1-3802" if self.os_major == os_data.os_data.ventura else "14.0-3802",
},
},
},
Expand Down
2 changes: 1 addition & 1 deletion resources/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Constants:
def __init__(self) -> None:
# Patcher Versioning
self.patcher_version: str = "1.0.0" # OpenCore-Legacy-Patcher
self.patcher_support_pkg_version: str = "1.3.1" # PatcherSupportPkg
self.patcher_support_pkg_version: str = "1.3.2" # PatcherSupportPkg
self.copyright_date: str = "Copyright © 2020-2023 Dortania"
self.patcher_name: str = "OpenCore Legacy Patcher"

Expand Down
2 changes: 1 addition & 1 deletion resources/validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def _validate_sys_patch(self) -> None:
logging.info("Mounted Universal-Binaries.dmg")


for supported_os in [os_data.os_data.big_sur, os_data.os_data.monterey, os_data.os_data.ventura]:
for supported_os in [os_data.os_data.big_sur, os_data.os_data.monterey, os_data.os_data.ventura, os_data.os_data.sonoma]:
for i in range(0, 10):
self._validate_root_patch_files(supported_os, i)
logging.info("Validating SNB Board ID patcher")
Expand Down

0 comments on commit 91f8708

Please sign in to comment.