diff --git a/CHANGELOG.md b/CHANGELOG.md index 881af20fa..70159078a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # OpenCore Legacy Patcher changelog -## 0.6.9 +## 1.0.0 - Resolve BCM2046 and BCM2070 support on macOS 13.3 and newer - Workaround 13.3+ Kernel Panic on AMD GCN GPUs playing DRM content - Add new macOS Installer download menu (Jazzzny) diff --git a/resources/constants.py b/resources/constants.py index 17f921c07..3579e9f77 100644 --- a/resources/constants.py +++ b/resources/constants.py @@ -13,7 +13,7 @@ from data import os_data class Constants: def __init__(self) -> None: # Patcher Versioning - self.patcher_version: str = "0.6.9" # OpenCore-Legacy-Patcher + self.patcher_version: str = "1.0.0" # OpenCore-Legacy-Patcher self.patcher_support_pkg_version: str = "1.3.1" # PatcherSupportPkg self.copyright_date: str = "Copyright © 2020-2023 Dortania" self.patcher_name: str = "OpenCore Legacy Patcher" @@ -730,27 +730,27 @@ class Constants: @property def icon_path_ssd(self): return self.payload_path / Path("Icon/SSD/.VolumeIcon.icns") - + @property def icon_path_macos_generic(self): return self.payload_path / Path("Icon/AppIcons/Generic.icns") - + @property def icon_path_macos_big_sur(self): return self.payload_path / Path("Icon/AppIcons/BigSur.icns") - + @property def icon_path_macos_monterey(self): return self.payload_path / Path("Icon/AppIcons/Monterey.icns") - + @property def icon_path_macos_ventura(self): return self.payload_path / Path("Icon/AppIcons/Ventura.icns") - + @property def icon_path_macos_sonoma(self): return self.payload_path / Path("Icon/AppIcons/Sonoma.icns") - + @property def gui_path(self): return self.payload_path / Path("Icon/Resources.zip")