fix: correct download list row selection and remove build number from version string

This commit is contained in:
nimbold
2026-06-05 19:46:12 +03:30
parent 47eb226160
commit 2fb851b138
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -164,9 +164,9 @@ struct DownloadTable: View {
content() content()
.frame(maxWidth: .infinity, alignment: .leading) .frame(maxWidth: .infinity, alignment: .leading)
.contentShape(Rectangle()) .contentShape(Rectangle())
.onTapGesture(count: 2) { .simultaneousGesture(TapGesture(count: 2).onEnded {
performPrimaryAction(for: item) performPrimaryAction(for: item)
} })
} }
private func performPrimaryAction(for item: DownloadItem) { private func performPrimaryAction(for item: DownloadItem) {
@@ -30,7 +30,7 @@ struct AboutSettingsPane: View {
VStack(alignment: .leading, spacing: 4) { VStack(alignment: .leading, spacing: 4) {
Text("Firelink") Text("Firelink")
.font(.title2.weight(.bold)) .font(.title2.weight(.bold))
Text("Version \(appVersion) (\(buildNumber))") Text("Version \(appVersion)")
.foregroundStyle(.secondary) .foregroundStyle(.secondary)
Text("A native macOS download manager for fast, organized, segmented transfers.") Text("A native macOS download manager for fast, organized, segmented transfers.")
.font(.caption) .font(.caption)