Skip to content

Commit

Permalink
Add Windows 11
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacMarovitz committed Apr 12, 2024
1 parent ff39f27 commit fc7dda9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions WhiskyKit/Sources/WhiskyKit/Whisky/BottleSettings.swift
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ public enum WinVersion: String, CaseIterable, Codable {
case win8 = "win8"
case win81 = "win81"
case win10 = "win10"
case win11 = "win11"

public func pretty() -> String {
switch self {
Expand All @@ -70,6 +71,8 @@ public enum WinVersion: String, CaseIterable, Codable {
return "Windows 8.1"
case .win10:
return "Windows 10"
case .win11:
return "Windows 11"
}
}
}
Expand Down

3 comments on commit fc7dda9

@Kingjay78
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how do i add window 11 to the app

@Gcenx
Copy link

@Gcenx Gcenx commented on fc7dda9 Apr 13, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

how do i add window 11 to the app

That’s what this commit has done in combination with Whisky-App/wine@2121e28 so once you have the latest versions of WhiskyApp & WineskyWine you’ll be able to select Windows 11, currently I don’t known of anything that actually requires Windows 11 but it was simpler to add the commit than rebase all other subsequent commits to skip it.

@Kingjay78
Copy link

@Kingjay78 Kingjay78 commented on fc7dda9 Apr 13, 2024 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.