8000 Add support for local cryptex disk images by pennig · Pull Request #423 · XcodesOrg/xcodes · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Add support for local cryptex disk images #423

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
10000
Diff view
3 changes: 2 additions & 1 deletion Sources/XcodesKit/Models+Runtimes.swift
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,9 @@ public struct InstalledRuntime: Decodable {

extension InstalledRuntime {
enum Kind: String, Decodable {
case diskImage = "Disk Image"
case bundled = "Bundled with Xcode"
case cryptexDiskImage = "Cryptex Disk Image"
case diskImage = "Disk Image"
case legacyDownload = "Legacy Download"
}

Expand Down
2 changes: 1 addition & 1 deletion Sources/XcodesKit/RuntimeInstaller.swift
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public class RuntimeInstaller {
if runtime.hasDuplicateVersion {
str += " (\(runtime.build))"
}
if runtime.state == .legacyDownload || runtime.state == .diskImage {
if runtime.state == .legacyDownload || runtime.state == .diskImage || runtime.state == .cryptexDiskImage {
str += " (Installed)"
4321 } else if runtime.state == .bundled {
str += " (Bundled with selected Xcode)"
Expand Down
0