diff --git a/CHANGELOG.md b/CHANGELOG.md index 51b1204ba..20e10d631 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,8 @@ - Note: enabling may create network instability - Increment Binaries - OpenCore 0.7.1 release (07-05-2021) - - SidecarFixup 1.0.2 release (07-05-2021) + - FeatureUnlock 1.0.3 rolling (07-07-2021) + - Previously known as SidecarFixup - Lilu 1.5.4 release (07-05-2021) - AppleALC 1.6.2 release - WhateverGreen 1.6.2 release diff --git a/Resources/Build.py b/Resources/Build.py index 9463bd416..87d17e7a8 100644 --- a/Resources/Build.py +++ b/Resources/Build.py @@ -189,7 +189,7 @@ class BuildOpenCore: # IDE patch ("AppleIntelPIIXATA.kext", self.constants.piixata_version, self.constants.piixata_path, lambda: self.model in ModelArray.IDEPatch), # Misc - ("SidecarFixup.kext", self.constants.sidecarfixup_version, self.constants.sidecarfixup_path, lambda: self.model in ModelArray.SidecarPatch), + ("FeatureUnlock.kext", self.constants.featureunlock_version, self.constants.featureunlock_path, lambda: self.model in ModelArray.SidecarPatch), ("DebugEnhancer.kext", self.constants.debugenhancer_version, self.constants.debugenhancer_path, lambda: self.constants.kext_debug is True), ]: self.enable_kext(name, version, path, check) diff --git a/Resources/Constants.py b/Resources/Constants.py index b8fc9f5cf..ad5b9dd5b 100644 --- a/Resources/Constants.py +++ b/Resources/Constants.py @@ -38,7 +38,7 @@ class Constants: self.nightshift_version = "1.1.0" self.smcspoof_version = "1.0.0" self.nvmefix_version = "1.0.9" - self.sidecarfixup_version = "1.0.2" + self.featureunlock_version = "1.0.3" self.debugenhancer_version = "1.0.3" self.innie_version = "1.3.0" self.fw_kext = "1.0.0" @@ -89,6 +89,7 @@ class Constants: self.terascale_2_patch = False self.enable_wake_on_wlan = False self.allow_ivy_igpu = False + self.moj_cat_accel = False # OS Versions self.tiger = 8 @@ -267,8 +268,8 @@ class Constants: return self.payload_kexts_path / Path(f"Acidanthera/NVMeFix-v{self.nvmefix_version}.zip") @property - def sidecarfixup_path(self): - return self.payload_kexts_path / Path(f"Acidanthera/SidecarFixup-v{self.sidecarfixup_version}.zip") + def featureunlock_path(self): + return self.payload_kexts_path / Path(f"Acidanthera/FeatureUnlock-v{self.featureunlock_version}.zip") @property def debugenhancer_path(self): diff --git a/docs/LICENSE.md b/docs/LICENSE.md index a2c54f637..3be9c3b8a 100644 --- a/docs/LICENSE.md +++ b/docs/LICENSE.md @@ -9,14 +9,13 @@ This patcher is made of multiple external applications from different people and * [AirportBrcmFixup](https://github.com/acidanthera/AirportBrcmFixup/blob/master/LICENSE.txt) * [CPUFriend](https://github.com/acidanthera/CPUFriend/blob/master/LICENSE) * [RestrictEvents](https://github.com/acidanthera/RestrictEvents/blob/master/LICENSE.txt) - * [NightShiftEnabler](https://github.com/cdf/NightShiftEnabler/blob/master/LICENSE.txt) + * [FeatureUnlock](https://github.com/acidanthera/FeatureUnlock/blob/master/LICENSE.txt) * [Innie](https://github.com/cdf/Innie/blob/master/LICENSE.txt) * GPL 2.0 * [NVMeFix](https://github.com/acidanthera/NVMeFix/blob/master/LICENSE.txt) * All rights reserved to respective authors * [AAAMouSSE](https://forums.macrumors.com/threads/mp3-1-others-sse-4-2-emulation-to-enable-amd-metal-driver.2206682/) - Syncretic * [telemetrap](https://forums.macrumors.com/threads/mp3-1-others-sse-4-2-emulation-to-enable-amd-metal-driver.2206682/post-28447707) - Syncretic - * [SidecarFixup](https://github.com/khronokernel/SidecarFixup) - Khronokernel * Apple Binaries - Apple Inc. Remaining files within OpenCore Legacy Patcher are copyrighted 2020-2021 Mykola Grymalyuk & Dhinak G. For integration into other projects, please request written permission. diff --git a/payloads/Config/config.plist b/payloads/Config/config.plist index f760e11ff..9dea6daa1 100644 --- a/payloads/Config/config.plist +++ b/payloads/Config/config.plist @@ -812,7 +812,7 @@ Arch x86_64 Comment - SidecarFixup + FeatureUnlock Enabled MaxKernel @@ -820,9 +820,9 @@ MinKernel 16.0.0 BundlePath - SidecarFixup.kext + FeatureUnlock.kext ExecutablePath - Contents/MacOS/SidecarFixup + Contents/MacOS/FeatureUnlock PlistPath Contents/Info.plist diff --git a/payloads/Kexts/Acidanthera/FeatureUnlock-v1.0.3.zip b/payloads/Kexts/Acidanthera/FeatureUnlock-v1.0.3.zip new file mode 100644 index 000000000..cd512b7ff Binary files /dev/null and b/payloads/Kexts/Acidanthera/FeatureUnlock-v1.0.3.zip differ