Skip to content

Commit 69917c2

Browse files
authored
[V3] Add MacOS 15 "Sequoia" to OSInfo.Branding (#4065)
* Add MacOS 15 to names list * Update changelog * Listening to the rabbit
1 parent 2c85b10 commit 69917c2

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

docs/src/content/docs/changelog.mdx

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5252
- Add `//wails:ignore` directive to prevent binding generation for chosen service methods by [@fbbdev](https://github.com/fbbdev) in [#4045](https://github.com/wailsapp/wails/pull/4045)
5353
- Add `//wails:internal` directive on services and models to allow for types that are exported in Go but not in JS/TS by [@fbbdev](https://github.com/fbbdev) in [#4045](https://github.com/wailsapp/wails/pull/4045)
5454
- Add binding generator support for constants of alias type to allow for weakly typed enums by [@fbbdev](https://github.com/fbbdev) in [#4045](https://github.com/wailsapp/wails/pull/4045)
55+
- Add support for macOS 15 "Sequoia" to `OSInfo.Branding` for improved OS version detection in [#4065](https://github.com/wailsapp/wails/pull/4065)
5556

5657
### Fixed
5758

v3/internal/operatingsystem/os_darwin.go

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ var macOSNames = map[string]string{
1818
"12": "Monterey",
1919
"13": "Ventura",
2020
"14": "Sonoma",
21+
"15": "Sequoia",
2122
// Add newer versions as they are released...
2223
}
2324

0 commit comments

Comments
 (0)