mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
SystemStats: Add Sonoma to OperatingSystemType enum
This commit is contained in:
parent
17c9de053f
commit
28375c18c9
3 changed files with 3 additions and 0 deletions
|
|
@ -136,6 +136,7 @@ SystemStats::OperatingSystemType SystemStats::getOperatingSystemType()
|
|||
case 11: return MacOS_11;
|
||||
case 12: return MacOS_12;
|
||||
case 13: return MacOS_13;
|
||||
case 14: return MacOS_14;
|
||||
}
|
||||
|
||||
return MacOSX;
|
||||
|
|
|
|||
|
|
@ -350,6 +350,7 @@ String SystemStats::getOperatingSystemName()
|
|||
case MacOS_11: JUCE_FALLTHROUGH
|
||||
case MacOS_12: JUCE_FALLTHROUGH
|
||||
case MacOS_13: JUCE_FALLTHROUGH
|
||||
case MacOS_14: JUCE_FALLTHROUGH
|
||||
|
||||
case UnknownOS: JUCE_FALLTHROUGH
|
||||
case WASM: JUCE_FALLTHROUGH
|
||||
|
|
|
|||
|
|
@ -65,6 +65,7 @@ public:
|
|||
MacOS_11 = MacOSX | 16,
|
||||
MacOS_12 = MacOSX | 17,
|
||||
MacOS_13 = MacOSX | 18,
|
||||
MacOS_14 = MacOSX | 19,
|
||||
|
||||
Win2000 = Windows | 1,
|
||||
WinXP = Windows | 2,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue