Sync FeatureUnlock

With this new build, lowering FeatureUnlock settings on older machines is no longer needed
This commit is contained in:
Mykola Grymalyuk
2022-10-30 16:43:25 -06:00
parent d2d68fd08f
commit 55478fd81c
7 changed files with 2 additions and 8 deletions

View File

@@ -4,6 +4,7 @@
- Increment Binaries:
- AirPortBrcmFixup 2.1.6 - release
- DebugEnhancer 1.0.7 - release
- FeatureUnlock 1.1.0 - rolling (2bb3c50)
## 0.5.1
- Add support for `APPLE SSD TS0128F/256F` SSDs in macOS Ventura

View File

@@ -39,7 +39,7 @@ class Constants:
self.applealc_version = "1.6.3" # AppleALC
self.restrictevents_version = "1.0.6" # RestrictEvents
self.restrictevents_mbp_version = "1.0.6" # RestrictEvents blocking displaypolicyd (see RestrictEvents-MBP91.patch)
self.featureunlock_version = "1.0.9" # FeatureUnlock
self.featureunlock_version = "1.1.0" # FeatureUnlock
self.debugenhancer_version = "1.0.7" # DebugEnhancer
self.cpufriend_version = "1.2.5" # CPUFriend
self.bluetool_version = "2.6.4" # BlueToolFixup (BrcmPatchRAM)

View File

@@ -46,13 +46,6 @@ class generate_defaults:
self.constants.allow_ts2_accel = False
if self.model in smbios_data.smbios_dictionary:
if smbios_data.smbios_dictionary[self.model]["CPU Generation"] < cpu_data.cpu_data.ivy_bridge.value and self.model != "MacPro5,1":
# Sidecar and AirPlay to Mac only blacklist Ivy and newer (as well as MacPro5,1)
# Avoid extra patching without benefit
self.constants.fu_arguments = " -disable_sidecar_mac"
else:
self.constants.fu_arguments = None
if smbios_data.smbios_dictionary[self.model]["CPU Generation"] >= cpu_data.cpu_data.skylake.value:
# On 2016-2017 MacBook Pros, 15" devices used a stock Samsung SSD with IONVMeController
# Technically this should be patched based on NVMeFix.kext logic,