Skip to content

Commit 20d04d3

Browse files
committed
sys_patch: Add CoreImage patch for 3802
Resolves Preview and QuickLook support on Sonoma
1 parent 24a1e35 commit 20d04d3

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
- utilities.py:
2828
- Fix indexing error on Device Paths (thx [@Ausdauersportler](https://github.com/Ausdauersportler))
2929
- Increment Binaries:
30-
- PatcherSupportPkg 1.2.0 - release
30+
- PatcherSupportPkg 1.2.1 - release
3131

3232
## 0.6.7
3333
- Resolve partition buttons overlapping in Install OpenCore UI

data/sys_patch_dict.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,7 @@ def _generate_sys_patch_dict(self):
373373
"Install": {
374374
"/System/Library/Frameworks": {
375375
"Metal.framework": f"13.2.1-{self.os_major}",
376+
**({ "CoreImage.framework": "14.0 Beta 3" } if self.os_major >= os_data.os_data.ventura else {}),
376377
},
377378
"/System/Library/PrivateFrameworks": {
378379
**({ "MTLCompiler.framework": "13.2.1" } if self.os_major == os_data.os_data.ventura else {}),

resources/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Constants:
1313
def __init__(self) -> None:
1414
# Patcher Versioning
1515
self.patcher_version: str = "0.6.8" # OpenCore-Legacy-Patcher
16-
self.patcher_support_pkg_version: str = "1.2.0" # PatcherSupportPkg
16+
self.patcher_support_pkg_version: str = "1.2.1" # PatcherSupportPkg
1717
self.copyright_date: str = "Copyright © 2020-2023 Dortania"
1818
self.patcher_name: str = "OpenCore Legacy Patcher"
1919

0 commit comments

Comments
 (0)