mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-13 20:28:21 +10:00
Increment build to 1.0.0
Switch to semeantic versioning
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user