mirror of
https://github.com/nimbold/Firelink.git
synced 2026-08-21 16:36:50 +00:00
fix: correct download list row selection and remove build number from version string
This commit is contained in:
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user