mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-06-20 14:10:51 +10:00
Sync PatcherSupportPkg
This commit is contained in:
@@ -1,6 +1,11 @@
|
|||||||
# OpenCore Legacy Patcher changelog
|
# OpenCore Legacy Patcher changelog
|
||||||
|
|
||||||
## 0.6.5
|
## 0.6.5
|
||||||
|
- Update 3802 Patchset Binaries:
|
||||||
|
- Resolves additional 3rd party app crashes on Metal with macOS 13.3+
|
||||||
|
- ex: PowerPoint's "Presentation Mode"
|
||||||
|
- Increment Binaries:
|
||||||
|
- PatcherSupportPkg 0.9.6 - release
|
||||||
|
|
||||||
## 0.6.4
|
## 0.6.4
|
||||||
- Backend changes:
|
- Backend changes:
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ class Constants:
|
|||||||
def __init__(self) -> None:
|
def __init__(self) -> None:
|
||||||
# Patcher Versioning
|
# Patcher Versioning
|
||||||
self.patcher_version: str = "0.6.5" # OpenCore-Legacy-Patcher
|
self.patcher_version: str = "0.6.5" # OpenCore-Legacy-Patcher
|
||||||
self.patcher_support_pkg_version: str = "0.9.3" # PatcherSupportPkg
|
self.patcher_support_pkg_version: str = "0.9.6" # PatcherSupportPkg
|
||||||
self.copyright_date: str = "Copyright © 2020-2023 Dortania"
|
self.copyright_date: str = "Copyright © 2020-2023 Dortania"
|
||||||
|
|
||||||
# URLs
|
# URLs
|
||||||
|
|||||||
@@ -264,13 +264,6 @@ class SysPatchHelpers:
|
|||||||
logging.info(f"- Merging GPUCompiler.framework libraries to match binary")
|
logging.info(f"- Merging GPUCompiler.framework libraries to match binary")
|
||||||
|
|
||||||
src_dir = f"{LIBRARY_DIR}/{file.name}"
|
src_dir = f"{LIBRARY_DIR}/{file.name}"
|
||||||
for file in ["module.modulemap", "opencl-c.h"]:
|
|
||||||
# Copy on Write to reduce disk usage
|
|
||||||
dst_path = f"{DEST_DIR}/include/{file}"
|
|
||||||
if Path(dst_path).exists():
|
|
||||||
continue
|
|
||||||
utilities.process_status(utilities.elevated(["cp", "-c", f"{src_dir}/include/{file}", f"{DEST_DIR}/include/"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT))
|
|
||||||
|
|
||||||
if not Path(f"{DEST_DIR}/lib").exists():
|
if not Path(f"{DEST_DIR}/lib").exists():
|
||||||
utilities.process_status(utilities.elevated(["cp", "-cR", f"{src_dir}/lib", f"{DEST_DIR}/"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT))
|
utilities.process_status(utilities.elevated(["cp", "-cR", f"{src_dir}/lib", f"{DEST_DIR}/"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user