1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-17 00:44:19 +00:00

macOS: Add Ventura to the enum of OS types

This commit is contained in:
reuk 2022-09-22 10:47:04 +01:00
parent 2ab3db90eb
commit 41adf71cc7
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C
3 changed files with 3 additions and 0 deletions

View file

@ -135,6 +135,7 @@ SystemStats::OperatingSystemType SystemStats::getOperatingSystemType()
case 11: return MacOS_11;
case 12: return MacOS_12;
case 13: return MacOS_13;
}
return UnknownOS;

View file

@ -298,6 +298,7 @@ String SystemStats::getOperatingSystemName()
case MacOSX_10_15: JUCE_FALLTHROUGH
case MacOS_11: JUCE_FALLTHROUGH
case MacOS_12: JUCE_FALLTHROUGH
case MacOS_13: JUCE_FALLTHROUGH
case UnknownOS: JUCE_FALLTHROUGH
case WASM: JUCE_FALLTHROUGH

View file

@ -64,6 +64,7 @@ public:
MacOSX_10_15 = MacOSX | 15,
MacOS_11 = MacOSX | 16,
MacOS_12 = MacOSX | 17,
MacOS_13 = MacOSX | 18,
Win2000 = Windows | 1,
WinXP = Windows | 2,