diff --git a/Scripts/datasets/kext_data.py b/Scripts/datasets/kext_data.py index f94a883..a00f474 100644 --- a/Scripts/datasets/kext_data.py +++ b/Scripts/datasets/kext_data.py @@ -169,7 +169,6 @@ kexts = [ name = "AirportItlwm", description = "Intel Wi-Fi drivers support the native macOS Wi-Fi interface", category = "Wi-Fi", - max_darwin_version = "24.99.99", conflict_group_id = "IntelWiFi", github_repo = { "owner": "OpenIntelWireless", @@ -205,7 +204,6 @@ kexts = [ description = "Enable legacy Apple Wireless adapters", category = "Wi-Fi", min_darwin_version = "23.0.0", - max_darwin_version = "24.99.99", requires_kexts = ["AMFIPass", "IOSkywalkFamily"], download_info = { "id": 817294638, @@ -217,7 +215,6 @@ kexts = [ description = "Enable legacy Apple Wireless adapters", category = "Wi-Fi", min_darwin_version = "23.0.0", - max_darwin_version = "24.99.99", requires_kexts = ["AMFIPass", "IO80211FamilyLegacy"], download_info = { "id": 926584761, diff --git a/Scripts/kext_maestro.py b/Scripts/kext_maestro.py index ef29752..a2fd1ad 100644 --- a/Scripts/kext_maestro.py +++ b/Scripts/kext_maestro.py @@ -280,11 +280,6 @@ class KextMaestro: print("") self.utils.request_input("Press Enter to continue...") selected_option = recommended_option - elif self.utils.parse_darwin_version(macos_version) >= self.utils.parse_darwin_version("25.0.0"): - print("\033[91mImportant:\033[0m For macOS Tahoe 26, only itlwm kext is supported") - print("") - self.utils.request_input("Press Enter to continue...") - selected_option = recommended_option else: kext_option = self.utils.request_input("Select kext for your Intel WiFi device (default: {}): ".format(recommended_name)).strip() or str(recommended_option)