Increment build to 1.0.0

Switch to semeantic versioning
This commit is contained in:
Mykola Grymalyuk
2023-10-01 14:19:00 -06:00
parent 404e855443
commit 7dc80475c3
2 changed files with 8 additions and 8 deletions

View File

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

View File

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