Disable Vault due to breaking installations

This commit is contained in:
Mykola Grymalyuk
2021-03-11 20:27:50 -07:00
parent 8c9b47b4d5
commit 7661b52a0a
2 changed files with 5 additions and 2 deletions

View File

@@ -1,5 +1,8 @@
# OpenCore Legacy Patcher changelog # OpenCore Legacy Patcher changelog
## 0.0.18
- Disable Vault by default due to breaking installations
## 0.0.17 ## 0.0.17
- Fix build detection breaking on older OS - Fix build detection breaking on older OS

View File

@@ -8,7 +8,7 @@ from pathlib import Path
class Constants: class Constants:
def __init__(self): def __init__(self):
self.patcher_version = "0.0.17" self.patcher_version = "0.0.18"
self.opencore_commit = "7bb41aa - 2021-03-06" self.opencore_commit = "7bb41aa - 2021-03-06"
self.opencore_version = "0.6.8" self.opencore_version = "0.6.8"
self.lilu_version = "1.5.1" self.lilu_version = "1.5.1"
@@ -52,7 +52,7 @@ class Constants:
self.gui_mode = False self.gui_mode = False
self.serial_settings = "Minimal" self.serial_settings = "Minimal"
self.showpicker = True self.showpicker = True
self.vault = True self.vault = False
self.sip_status = True self.sip_status = True
self.secure_status = True self.secure_status = True
self.detected_os = 0.0 self.detected_os = 0.0