diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2024-06-07 17:44:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-07 17:44:09 +0200 |
| commit | 7c977bb859bd1559bfa2467bb1fa7bbf84a8f927 (patch) | |
| tree | 320ed8d1ae81c3531b7fc21239f5cabfedb4f39c | |
| parent | 4c45f7d3ae4e71313e0825e0b53b4c3225169b65 (diff) | |
| parent | 072825ac5a1652de349eae20ccae0e67c23a843b (diff) | |
Merge pull request #3699 from laytan/macos-14.5
add MacOS 14.5 to 'core:sys/info' and 'odin report'
| -rw-r--r-- | core/sys/info/platform_darwin.odin | 1 | ||||
| -rw-r--r-- | src/bug_report.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/core/sys/info/platform_darwin.odin b/core/sys/info/platform_darwin.odin index 122dd42ee..0cae0aa98 100644 --- a/core/sys/info/platform_darwin.odin +++ b/core/sys/info/platform_darwin.odin @@ -527,6 +527,7 @@ macos_release_map: map[string]Darwin_To_Release = { "23D60" = {{23, 3, 0}, "macOS", {"Sonoma", {14, 3, 1}}}, "23E214" = {{23, 4, 0}, "macOS", {"Sonoma", {14, 4, 0}}}, "23E224" = {{23, 4, 0}, "macOS", {"Sonoma", {14, 4, 1}}}, + "23F79" = {{23, 5, 0}, "macOS", {"Sonoma", {14, 5, 0}}}, } @(private) diff --git a/src/bug_report.cpp b/src/bug_report.cpp index 1f754ce7c..dab8c4391 100644 --- a/src/bug_report.cpp +++ b/src/bug_report.cpp @@ -910,6 +910,7 @@ gb_internal void report_os_info() { {"23D60", {23, 3, 0}, "macOS", {"Sonoma", {14, 3, 1}}}, {"23E214", {23, 4, 0}, "macOS", {"Sonoma", {14, 4, 0}}}, {"23E224", {23, 4, 0}, "macOS", {"Sonoma", {14, 4, 1}}}, + {"23F79", {23, 5, 0}, "macOS", {"Sonoma", {14, 5, 0}}}, }; |