mirror of
https://github.com/XcodesOrg/XcodesApp.git
synced 2026-03-25 08:55:46 +00:00
Merge pull request #400 from LavareX/support_visionOS
SDK column in the info panel supports displaying visionOS
This commit is contained in:
commit
47710b6bed
3 changed files with 3 additions and 2 deletions
|
|
@ -1411,7 +1411,7 @@
|
|||
repositoryURL = "https://github.com/xcodereleases/data";
|
||||
requirement = {
|
||||
kind = revision;
|
||||
revision = b47228c688b608e34b3b84079ab6052a24c7a981;
|
||||
revision = a43ad89e536d7a3da525fcc23fb182c37b756ecc;
|
||||
};
|
||||
};
|
||||
CAA858CB25A3D8BC00ACF8C0 /* XCRemoteSwiftPackageReference "ErrorHandling" */ = {
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
"repositoryURL": "https://github.com/xcodereleases/data",
|
||||
"state": {
|
||||
"branch": null,
|
||||
"revision": "b47228c688b608e34b3b84079ab6052a24c7a981",
|
||||
"revision": "a43ad89e536d7a3da525fcc23fb182c37b756ecc",
|
||||
"version": null
|
||||
}
|
||||
},
|
||||
|
|
|
|||
|
|
@ -180,6 +180,7 @@ struct InfoPane: View {
|
|||
("iOS", \.iOS),
|
||||
("watchOS", \.watchOS),
|
||||
("tvOS", \.tvOS),
|
||||
("visionOS", \.visionOS),
|
||||
], id: \.0) { row in
|
||||
if let sdk = sdks[keyPath: row.1] {
|
||||
Text("\(row.0): \(sdk.compactMap { $0.number }.joined(separator: ", "))")
|
||||
|
|
|
|||
Loading…
Reference in a new issue