File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 27
27
- utilities.py:
28
28
- Fix indexing error on Device Paths (thx [ @Ausdauersportler ] ( https://github.com/Ausdauersportler ) )
29
29
- Increment Binaries:
30
- - PatcherSupportPkg 1.2.0 - release
30
+ - PatcherSupportPkg 1.2.1 - release
31
31
32
32
## 0.6.7
33
33
- Resolve partition buttons overlapping in Install OpenCore UI
Original file line number Diff line number Diff line change @@ -373,6 +373,7 @@ def _generate_sys_patch_dict(self):
373
373
"Install" : {
374
374
"/System/Library/Frameworks" : {
375
375
"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 {}),
376
377
},
377
378
"/System/Library/PrivateFrameworks" : {
378
379
** ({ "MTLCompiler.framework" : "13.2.1" } if self .os_major == os_data .os_data .ventura else {}),
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ class Constants:
13
13
def __init__ (self ) -> None :
14
14
# Patcher Versioning
15
15
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
17
17
self .copyright_date : str = "Copyright © 2020-2023 Dortania"
18
18
self .patcher_name : str = "OpenCore Legacy Patcher"
19
19
You can’t perform that action at this time.
0 commit comments