From f35900a4b4dfb8a5e93a4f4bf297e7ed41e85408 Mon Sep 17 00:00:00 2001 From: AlfCraft07 <132297876+AlfCraft07@users.noreply.github.com> Date: Tue, 3 Dec 2024 04:54:38 +0100 Subject: [PATCH] Add constants for macOS 15/Sequoia support (#10) --- Changelog.md | 3 +++ NVMeFix/NVMeFix.cpp | 2 +- README.md | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Changelog.md b/Changelog.md index 4226d7f..33f31a8 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,8 @@ NVMeFix Changelog ================= +#### v1.1.2 +- Added constants for macOS 15 support + #### v1.1.1 - Added constants for macOS 14 support - Fixed macOS 14 compatibility diff --git a/NVMeFix/NVMeFix.cpp b/NVMeFix/NVMeFix.cpp index a3d138d..1aa0d12 100644 --- a/NVMeFix/NVMeFix.cpp +++ b/NVMeFix/NVMeFix.cpp @@ -514,7 +514,7 @@ PluginConfiguration ADDPR(config) { nullptr, 0, KernelVersion::Mojave, - KernelVersion::Sonoma, + KernelVersion::Sequoia, []() { NVMeFixPlugin::globalPlugin().init(); } diff --git a/README.md b/README.md index b52305b..3bada16 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ NVMeFix [![Build Status](https://github.com/acidanthera/NVMeFix/workflows/CI/badge.svg?branch=master)](https://github.com/acidanthera/NVMeFix/actions) [![Scan Status](https://scan.coverity.com/projects/22192/badge.svg?flat=1)](https://scan.coverity.com/projects/22192) -***NOTE***: NVMeFix supports up to macOS Sonoma (14), but some features might not be available on newer versions as of now, like the timeout panic fix. +***NOTE***: NVMeFix supports up to macOS Sequoia (15), some features might not be available on newer versions as of now, like the timeout panic fix. NVMeFix is a set of patches for the Apple NVMe storage driver, IONVMeFamily. Its goal is to improve compatibility with non-Apple SSDs. It may be used both on Apple and non-Apple @@ -20,7 +20,7 @@ submitted to our [bugtracker](https://github.com/acidanthera/bugtracker). Unfortunately, some issues cannot be fixed purely by a kernel-side driver. For example, MacBookPro 11,1 EFI includes an old version of NVMHCI DXE driver that causes a hang when resuming from -hibernaton with full disk encryption on. +hibernation with full disk encryption on. Installation ------------