Sync PatcherSupportPkg

This commit is contained in:
Eduardo Covas
2023-06-03 15:02:04 -03:00
committed by GitHub
parent c51f283125
commit b5db385cd4
4 changed files with 7 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ class Constants:
def __init__(self) -> None:
# Patcher Versioning
self.patcher_version: str = "0.6.8" # OpenCore-Legacy-Patcher
self.patcher_support_pkg_version: str = "1.1.2" # PatcherSupportPkg
self.patcher_support_pkg_version: str = "1.1.3" # PatcherSupportPkg
self.copyright_date: str = "Copyright © 2020-2023 Dortania"
self.patcher_name: str = "OpenCore Legacy Patcher"

View File

@@ -311,7 +311,7 @@ class GenerateDefaults:
# Only disable AMFI if we officially support Ventura
self.constants.disable_amfi = True
for key in ["Moraea_BlurBeta"]:
for key in ["Moraea_BlurBeta", "Amy.MenuBar2Beta"]:
# Enable BetaBlur if user hasn't disabled it
is_key_enabled = subprocess.run(["defaults", "read", "-g", key], stdout=subprocess.PIPE).stdout.decode("utf-8").strip()
if is_key_enabled not in ["false", "0"]: