mirror of
https://github.com/dortania/OpenCore-Legacy-Patcher.git
synced 2026-06-21 06:30:52 +10:00
push
This commit is contained in:
+1
-2
@@ -6,9 +6,8 @@
|
|||||||
- Resolve unresponsive Weather app
|
- Resolve unresponsive Weather app
|
||||||
- Resolve full screen menubar covering the app toolbar
|
- Resolve full screen menubar covering the app toolbar
|
||||||
- Resolve unfocused password windows
|
- Resolve unfocused password windows
|
||||||
- Enable OpenCore Vaulting (Jazzzny)
|
- OpenCore Vaulting (Jazzzny)
|
||||||
- Ensures that OpenCore is not corrupted or maliciously tampered with
|
- Ensures that OpenCore is not corrupted or maliciously tampered with
|
||||||
- Developers who wish to modify their EFIs can disable "OpenCore Vaulting" in Developer settings
|
|
||||||
|
|
||||||
## 1.0.1
|
## 1.0.1
|
||||||
- Resolve rendering issues on Intel Ivy Bridge iGPUs
|
- Resolve rendering issues on Intel Ivy Bridge iGPUs
|
||||||
|
|||||||
@@ -187,7 +187,7 @@ class Constants:
|
|||||||
## Security Settings
|
## Security Settings
|
||||||
self.sip_status: bool = True # System Integrity Protection
|
self.sip_status: bool = True # System Integrity Protection
|
||||||
self.secure_status: bool = False # Secure Boot Model
|
self.secure_status: bool = False # Secure Boot Model
|
||||||
self.vault: bool = True # EFI Vault
|
self.vault: bool = False # EFI Vault
|
||||||
self.disable_cs_lv: bool = False # Disable Library validation
|
self.disable_cs_lv: bool = False # Disable Library validation
|
||||||
self.disable_amfi: bool = False # Disable AMFI
|
self.disable_amfi: bool = False # Disable AMFI
|
||||||
|
|
||||||
|
|||||||
@@ -277,16 +277,16 @@ class SettingsFrame(wx.Frame):
|
|||||||
"wrap_around 2": {
|
"wrap_around 2": {
|
||||||
"type": "wrap_around",
|
"type": "wrap_around",
|
||||||
},
|
},
|
||||||
"APFS Trim": {
|
"OpenCore Vaulting": {
|
||||||
"type": "checkbox",
|
"type": "checkbox",
|
||||||
"value": self.constants.apfs_trim_timeout,
|
"value": self.constants.vault,
|
||||||
"variable": "apfs_trim_timeout",
|
"variable": "vault",
|
||||||
"description": [
|
"description": [
|
||||||
"Recommended for all users, however faulty",
|
"Digitally sign OpenCore to prevent",
|
||||||
"SSDs may benefit from disabling this.",
|
"tampering or corruption."
|
||||||
],
|
],
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
"Show OpenCore Boot Picker": {
|
"Show OpenCore Boot Picker": {
|
||||||
"type": "checkbox",
|
"type": "checkbox",
|
||||||
"value": self.constants.showpicker,
|
"value": self.constants.showpicker,
|
||||||
@@ -443,6 +443,16 @@ class SettingsFrame(wx.Frame):
|
|||||||
],
|
],
|
||||||
"condition": not bool(self.constants.computer.third_party_sata_ssd is False and not self.constants.custom_model)
|
"condition": not bool(self.constants.computer.third_party_sata_ssd is False and not self.constants.custom_model)
|
||||||
},
|
},
|
||||||
|
"APFS Trim": {
|
||||||
|
"type": "checkbox",
|
||||||
|
"value": self.constants.apfs_trim_timeout,
|
||||||
|
"variable": "apfs_trim_timeout",
|
||||||
|
"description": [
|
||||||
|
"Recommended for all users, however faulty",
|
||||||
|
"SSDs may benefit from disabling this.",
|
||||||
|
],
|
||||||
|
|
||||||
|
},
|
||||||
},
|
},
|
||||||
"Advanced": {
|
"Advanced": {
|
||||||
"Miscellaneous": {
|
"Miscellaneous": {
|
||||||
@@ -836,15 +846,7 @@ class SettingsFrame(wx.Frame):
|
|||||||
"Export constants.py values to a txt file.",
|
"Export constants.py values to a txt file.",
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
"OpenCore Vaulting": {
|
|
||||||
"type": "checkbox",
|
|
||||||
"value": self.constants.vault,
|
|
||||||
"variable": "vault",
|
|
||||||
"description": [
|
|
||||||
"Untick to disable vaulting for",
|
|
||||||
"testing purposes."
|
|
||||||
],
|
|
||||||
},
|
|
||||||
"Developer Root Volume Patching": {
|
"Developer Root Volume Patching": {
|
||||||
"type": "title",
|
"type": "title",
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user