From c9c5597ca4dd5987be447771ba68fe1d710b9ef5 Mon Sep 17 00:00:00 2001 From: Levi <13402525+LeviSnoot@users.noreply.github.com> Date: Sun, 8 Jun 2025 16:02:34 +0200 Subject: [PATCH] fix: corrected identify iMac 12,1 and 12,2 (#2588) Signed-off-by: Levi <13402525+LeviSnoot@users.noreply.github.com> --- Kit/plugins/SystemKit.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Kit/plugins/SystemKit.swift b/Kit/plugins/SystemKit.swift index 752d087b..c660580d 100644 --- a/Kit/plugins/SystemKit.swift +++ b/Kit/plugins/SystemKit.swift @@ -608,7 +608,8 @@ let deviceDict: [String: model_s] = [ "Mac14,8": model_s(name: "Mac Pro (M2 Ultra)", year: 2023, type: .macPro), // iMac - "iMac12,1": model_s(name: "iMac 27-Inch", year: 2011, type: .iMac), + "iMac12,1": model_s(name: "iMac 21.5-Inch", year: 2011, type: .iMac), + "iMac12,2": model_s(name: "iMac 27-Inch", year: 2011, type: .iMac), "iMac13,1": model_s(name: "iMac 21.5-Inch", year: 2012, type: .iMac), "iMac13,2": model_s(name: "iMac 27-Inch", year: 2012, type: .iMac), "iMac14,2": model_s(name: "iMac 27-Inch", year: 2013, type: .iMac),