From 461edd3e1f2708801ac987617a03b730eb10d362 Mon Sep 17 00:00:00 2001 From: al-lac Date: Mon, 7 Aug 2023 09:55:28 +0200 Subject: [PATCH] Add OS support for macOS Sonoma (14.x) --- include/osdetection | 1 + 1 file changed, 1 insertion(+) diff --git a/include/osdetection b/include/osdetection index bed25033..0f88c7f0 100644 --- a/include/osdetection +++ b/include/osdetection @@ -65,6 +65,7 @@ 11 | 11.[0-9]*) OS_FULLNAME="macOS Big Sur (${OS_VERSION})" ;; 12 | 12.[0-9]*) OS_FULLNAME="macOS Monterey (${OS_VERSION})" ;; 13 | 13.[0-9]*) OS_FULLNAME="macOS Ventura (${OS_VERSION})" ;; + 14 | 14.[0-9]*) OS_FULLNAME="macOS Sonoma (${OS_VERSION})" ;; *) echo "Unknown macOS version. Do you know what version it is? Create an issue at ${PROGRAM_SOURCE}" ;; esac else