Sync changelog

This commit is contained in:
Mykola Grymalyuk
2021-10-27 20:07:41 -06:00
parent 5db6be9828
commit 491b5fe078
3 changed files with 5 additions and 1 deletions

View File

@@ -1,6 +1,9 @@
# OpenCore Legacy Patcher changelog # OpenCore Legacy Patcher changelog
## 0.3.2 ## 0.3.2
- Implement spoofless support (ie. no SMBIOS patching)
- Requires macOS 11.3 or newer, for 11.2.3 and older use Minimal or higher spoofing
- See additional notes before updating: [VMM usage notes](https://github.com/dortania/OpenCore-Legacy-Patcher/issues/543#issuecomment-953441283)
## 0.3.1 ## 0.3.1
- Increment Binaries: - Increment Binaries:

View File

@@ -196,7 +196,7 @@ Q. Return to previous menu
print( print(
"""SecureBootModel is used to ensure best firmware security, """SecureBootModel is used to ensure best firmware security,
however to patch the root volume this must be disabled. however to patch the root volume this must be disabled.
Only disable is absolutely necessary. SIP value = 0xFEF Only recommended to enable for users with T2 SMBIOS spoofs.
Valid options: Valid options:

View File

@@ -70,5 +70,6 @@ def validate(settings):
settings.disable_tb = True settings.disable_tb = True
settings.force_surplus = True settings.force_surplus = True
settings.software_demux = True settings.software_demux = True
settings.serial_settings = "Minimal"
build_prebuilt() build_prebuilt()
build_dumps() build_dumps()