diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c7c48dfa..8dcc5fedc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,7 @@ - PatcherSupportPkg 0.6.5 - release - BrcmPatchRAM 2.6.3 - release - AutoPkgInstaller 1.0.1 - release + - CryptexFixup 1.0.0 - rolling (1e41456) ## 0.4.12 diff --git a/gui/gui_main.py b/gui/gui_main.py index 570663de7..67396dccd 100644 --- a/gui/gui_main.py +++ b/gui/gui_main.py @@ -1249,7 +1249,7 @@ class wx_python_gui: print("- Root Patcher finished successfully") if self.constants.needs_to_open_preferences is True: if self.constants.detected_os >= os_data.os_data.ventura: - self.reboot_system(message="Root Patcher finished successfully!\nIf you were prompted to open System Preferences to authorize new kexts, this can be ignored. Your system is ready once restarted.\n\nWould you like to reboot now?") + self.reboot_system(message="Root Patcher finished successfully!\nIf you were prompted to open System Settings to authorize new kexts, this can be ignored. Your system is ready once restarted.\n\nWould you like to reboot now?") else: # Create dialog box to open System Preferences -> Security and Privacy self.popup = wx.MessageDialog( @@ -1503,7 +1503,7 @@ class wx_python_gui: if ias is None: available_installers = installer.only_list_newest_installers(available_installers) for app in available_installers: - print(f"macOS {available_installers[app]['Version']} ({available_installers[app]['Build']} - {utilities.human_fmt(available_installers[app]['Size'])} - {available_installers[app]['Source']}) - {available_installers[app]['Variant']}") + print(f"macOS {available_installers[app]['Version']} ({available_installers[app]['Build']}):\n - Size: {utilities.human_fmt(available_installers[app]['Size'])}\n - Source: {available_installers[app]['Source']}\n - Variant: {available_installers[app]['Variant']}\n - Link: {available_installers[app]['Link']}\n") if available_installers[app]['Variant'] in ["DeveloperSeed" , "PublicSeed"]: extra = " Beta" else: diff --git a/payloads/Kexts/Acidanthera/CryptexFixup-v1.0.0-DEBUG.zip b/payloads/Kexts/Acidanthera/CryptexFixup-v1.0.0-DEBUG.zip index a38b9753b..4a9770130 100644 Binary files a/payloads/Kexts/Acidanthera/CryptexFixup-v1.0.0-DEBUG.zip and b/payloads/Kexts/Acidanthera/CryptexFixup-v1.0.0-DEBUG.zip differ diff --git a/payloads/Kexts/Acidanthera/CryptexFixup-v1.0.0-RELEASE.zip b/payloads/Kexts/Acidanthera/CryptexFixup-v1.0.0-RELEASE.zip index 129ea2ab4..197f97a9e 100644 Binary files a/payloads/Kexts/Acidanthera/CryptexFixup-v1.0.0-RELEASE.zip and b/payloads/Kexts/Acidanthera/CryptexFixup-v1.0.0-RELEASE.zip differ diff --git a/resources/build.py b/resources/build.py index 9ece56a2b..6df9f89c2 100644 --- a/resources/build.py +++ b/resources/build.py @@ -1072,9 +1072,8 @@ class BuildOpenCore: # Lets us check in sys_patch.py if config supports FileVault self.config["NVRAM"]["Add"]["4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102"]["OCLP-Settings"] += " -allow_fv" if smbios_data.smbios_dictionary[self.model]["CPU Generation"] <= cpu_data.cpu_data.ivy_bridge.value: + print("- Enabling Rosetta Cryptex support in Ventura") self.enable_kext("CryptexFixup.kext", self.constants.cryptexfixup_version, self.constants.cryptexfixup_path) - print("- Allowing swapped dyld shared cache in Ventura") - self.get_item_by_kv(self.config["Kernel"]["Patch"], "Comment", "Disable Root Hash validation")["Enabled"] = True if self.constants.disable_msr_power_ctl is True: print("- Disabling Firmware Throttling") if smbios_data.smbios_dictionary[self.model]["CPU Generation"] >= cpu_data.cpu_data.nehalem.value: