mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-04-23 19:40:15 +10:00
Sync versioning to match
This commit is contained in:
27
CHANGELOG.md
27
CHANGELOG.md
@@ -1,6 +1,6 @@
|
|||||||
# OpenCore Legacy Patcher changelog
|
# OpenCore Legacy Patcher changelog
|
||||||
|
|
||||||
## 1.6.0
|
## 2.0.0
|
||||||
- Set `AssociatedBundleIdentifiers` property in launch services as an array
|
- Set `AssociatedBundleIdentifiers` property in launch services as an array
|
||||||
- Move to auto-generated pre/postinstall scripts for PKGs
|
- Move to auto-generated pre/postinstall scripts for PKGs
|
||||||
- Streamlines PKG creation process, ensuring Install and AutoPKG scripts are always in sync
|
- Streamlines PKG creation process, ensuring Install and AutoPKG scripts are always in sync
|
||||||
@@ -17,8 +17,33 @@
|
|||||||
- Only affects building EFI from another machine
|
- Only affects building EFI from another machine
|
||||||
- Resolve AMD Navi MXM GPU detection for modded iMac9,x-12,x
|
- Resolve AMD Navi MXM GPU detection for modded iMac9,x-12,x
|
||||||
- Thanks @Ausdauersportler for the patch!
|
- Thanks @Ausdauersportler for the patch!
|
||||||
|
- Implement early macOS Sequoia support:
|
||||||
|
- Supporting Macs with Metal-based graphics:
|
||||||
|
- MacBook8,1 - 10,1
|
||||||
|
- MacBookAir5,x - 7,x
|
||||||
|
- MacBookPro9,x - 14,x
|
||||||
|
- Macmini6,x - 7,1
|
||||||
|
- iMac13,x - 18,x
|
||||||
|
- iMac10,1 - 12,x included if Metal GPU installed.
|
||||||
|
- MacPro3,1 - 6,1
|
||||||
|
- MacPro3,1 - 5,1 require Metal GPU installed.
|
||||||
|
- MacPro3,1 can only boot with 4 cores max currently
|
||||||
|
- Xserve2,1 - 3,1
|
||||||
|
- Requires Metal GPU installed.
|
||||||
|
- Xserve2,1 can only boot with 4 cores max currently
|
||||||
|
- Excludes the newly dropped MacBookAir8,x series.
|
||||||
|
- No estimate can be given when support will be added.
|
||||||
- Increment Binaries:
|
- Increment Binaries:
|
||||||
- PatcherSupportPkg 1.6.3 - release
|
- PatcherSupportPkg 1.6.3 - release
|
||||||
|
- OpenCorePkg 1.0.1 - release
|
||||||
|
- Lilu 1.6.8 - release
|
||||||
|
- WhateverGreen 1.6.7 - release
|
||||||
|
- RestrictEvents 1.1.4 - release
|
||||||
|
- FeatureUnlock 1.1.6 - release
|
||||||
|
- DebugEnhancer 1.0.9 - release
|
||||||
|
- CPUFriend 1.2.8 - release
|
||||||
|
- AutoPkgInstaller 1.0.4 - release
|
||||||
|
- CryptexFixup 1.0.3 - release
|
||||||
|
|
||||||
## 1.5.0
|
## 1.5.0
|
||||||
- Restructure project directories
|
- Restructure project directories
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ from .detections import device_probe
|
|||||||
class Constants:
|
class Constants:
|
||||||
def __init__(self) -> None:
|
def __init__(self) -> None:
|
||||||
# Patcher Versioning
|
# Patcher Versioning
|
||||||
self.patcher_version: str = "1.6.0" # OpenCore-Legacy-Patcher
|
self.patcher_version: str = "2.0.0" # OpenCore-Legacy-Patcher
|
||||||
self.patcher_support_pkg_version: str = "1.7.8" # PatcherSupportPkg
|
self.patcher_support_pkg_version: str = "1.7.8" # PatcherSupportPkg
|
||||||
self.copyright_date: str = "Copyright © 2020-2024 Dortania"
|
self.copyright_date: str = "Copyright © 2020-2024 Dortania"
|
||||||
self.patcher_name: str = "OpenCore Legacy Patcher"
|
self.patcher_name: str = "OpenCore Legacy Patcher"
|
||||||
@@ -179,7 +179,7 @@ class Constants:
|
|||||||
## SMBIOS Settings
|
## SMBIOS Settings
|
||||||
self.serial_settings: str = "None" # Set SMBIOS level used
|
self.serial_settings: str = "None" # Set SMBIOS level used
|
||||||
self.override_smbios: str = "Default" # Set SMBIOS model used
|
self.override_smbios: str = "Default" # Set SMBIOS model used
|
||||||
self.allow_native_spoofs: bool = False # Allow native models to recieve spoofs
|
self.allow_native_spoofs: bool = False # Allow native models to receive spoofs
|
||||||
|
|
||||||
### Serial Number Overrides
|
### Serial Number Overrides
|
||||||
self.custom_serial_number: str = "" # Set SMBIOS serial number
|
self.custom_serial_number: str = "" # Set SMBIOS serial number
|
||||||
|
|||||||
Reference in New Issue
Block a user