Increment build

This commit is contained in:
Mykola Grymalyuk
2022-10-27 09:21:44 -06:00
parent f0991d2cd0
commit 5a67212bdc
3 changed files with 3 additions and 2 deletions

View File

@@ -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

View File

@@ -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"]:

View File

@@ -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/"