diff --git a/Changelog.md b/Changelog.md index e88826b..edf0ccd 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,7 @@ VirtualSMC Changelog ==================== #### v1.2.5 - Added preliminary macOS 12 support +- Added macOS 10.6 support for SMCBatteryManager #### v1.2.4 - Added support for NCT6683D series diff --git a/Sensors/SMCBatteryManager/SMCSMBusController.cpp b/Sensors/SMCBatteryManager/SMCSMBusController.cpp index aa7e5d9..3a03303 100644 --- a/Sensors/SMCBatteryManager/SMCSMBusController.cpp +++ b/Sensors/SMCBatteryManager/SMCSMBusController.cpp @@ -35,8 +35,8 @@ IOService *SMCSMBusController::probe(IOService *provider, SInt32 *score) { return nullptr; } - if (getKernelVersion() < KernelVersion::Lion) { - DBGLOG("sdell", "unsupported before 10.7"); + if (getKernelVersion() < KernelVersion::SnowLeopard) { + DBGLOG("sdell", "unsupported before 10.6"); return nullptr; }