From 5a67212bdcf0f30221cf6220d06949afd6ab00d5 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Thu, 27 Oct 2022 09:21:44 -0600 Subject: [PATCH] Increment build --- CHANGELOG.md | 2 ++ gui/gui_main.py | 1 - resources/constants.py | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2876fb496..1945b7290 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # OpenCore Legacy Patcher changelog +## 0.5.2 + ## 0.5.1 - Add support for `APPLE SSD TS0128F/256F` SSDs in macOS Ventura - ie. stock SSD found in MacBookAir6,x diff --git a/gui/gui_main.py b/gui/gui_main.py index 8ad6d0eac..d9843ac68 100644 --- a/gui/gui_main.py +++ b/gui/gui_main.py @@ -1585,7 +1585,6 @@ class wx_python_gui: def download_macos_click(self, app_dict): # Unsupported Models include: # - USB 1.1 machines (Penryn, MacPro3,1-5,1) - # - VBIOS Boot Issue (MacPro6,1) # - Non-Metal GPUs model = self.constants.custom_model or self.constants.computer.real_model if model in model_array.LegacyGPU or model in ["MacPro3,1", "MacPro4,1", "MacPro5,1"]: diff --git a/resources/constants.py b/resources/constants.py index 481ad8364..4b34ac2b7 100644 --- a/resources/constants.py +++ b/resources/constants.py @@ -12,7 +12,7 @@ from data import os_data class Constants: def __init__(self): # Patcher Versioning - self.patcher_version = "0.5.1" # OpenCore-Legacy-Patcher + self.patcher_version = "0.5.2" # OpenCore-Legacy-Patcher self.patcher_support_pkg_version = "0.7.1" # PatcherSupportPkg self.url_patcher_support_pkg = "https://github.com/dortania/PatcherSupportPkg/releases/download/" self.nightly_url_patcher_support_pkg = "https://nightly.link/dortania/PatcherSupportPkg/workflows/build/master/"