Skip to content

Commit

Permalink
Merge pull request #400 from LavareX/support_visionOS
Browse files Browse the repository at this point in the history
SDK column in the info panel supports displaying visionOS
  • Loading branch information
MattKiazyk authored Nov 22, 2023
2 parents 330f590 + 5977210 commit 47710b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Xcodes.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1411,7 +1411,7 @@
repositoryURL = "https://github.com/xcodereleases/data";
requirement = {
kind = revision;
revision = b47228c688b608e34b3b84079ab6052a24c7a981;
revision = a43ad89e536d7a3da525fcc23fb182c37b756ecc;
};
};
CAA858CB25A3D8BC00ACF8C0 /* XCRemoteSwiftPackageReference "ErrorHandling" */ = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"repositoryURL": "https://github.com/xcodereleases/data",
"state": {
"branch": null,
"revision": "b47228c688b608e34b3b84079ab6052a24c7a981",
"revision": "a43ad89e536d7a3da525fcc23fb182c37b756ecc",
"version": null
}
},
Expand Down
1 change: 1 addition & 0 deletions Xcodes/Frontend/InfoPane/InfoPane.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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: ", "))")
Expand Down

0 comments on commit 47710b6

Please sign in to comment.