macos: text in about window is selectable

Fixes #1163

I also fixed the AppIconImage from being 1024x1024 to much smaller so we
don't see as many artifacts in the downsize.
This commit is contained in:
Mitchell Hashimoto
2023-12-27 07:53:28 -08:00
parent 107f1b1050
commit 789107ff1b
8 changed files with 5 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 242 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 242 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 242 KiB

View File

@ -1,17 +1,17 @@
{
"images" : [
{
"filename" : "199110421-9ff5fc30-a244-441e-9882-26070662adf9.png",
"filename" : "icon_128x128.png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "199110421-9ff5fc30-a244-441e-9882-26070662adf9 1.png",
"filename" : "icon_128x128@2x@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "199110421-9ff5fc30-a244-441e-9882-26070662adf9 2.png",
"filename" : "icon_256x256@2x@2x.png",
"idiom" : "universal",
"scale" : "3x"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View File

@ -15,10 +15,12 @@ struct AboutView: View {
Text("Ghostty")
.font(.title3)
.textSelection(.enabled)
if let version = self.version {
Text("Version: \(version)")
.font(.body)
.textSelection(.enabled)
}
}
.frame(minWidth: 300)