mirror of
https://github.com/nimbold/Firelink.git
synced 2026-08-12 12:37:04 +00:00
47 lines
1.7 KiB
Swift
47 lines
1.7 KiB
Swift
import SwiftUI
|
|
|
|
struct DownloadSettingsPane: View {
|
|
@EnvironmentObject private var settings: AppSettings
|
|
|
|
var body: some View {
|
|
Form {
|
|
Section {
|
|
Stepper(
|
|
"Default connections per server: \(settings.perServerConnections)",
|
|
value: $settings.perServerConnections,
|
|
in: 1...16
|
|
)
|
|
Text("Used as the default for new downloads. The Add Downloads window can override it per batch.")
|
|
.font(.caption)
|
|
.foregroundStyle(.secondary)
|
|
|
|
Stepper(
|
|
"Parallel downloads: \(settings.maxConcurrentDownloads)",
|
|
value: $settings.maxConcurrentDownloads,
|
|
in: 1...12
|
|
)
|
|
Text("Controls how many files Firelink downloads at the same time.")
|
|
.font(.caption)
|
|
.foregroundStyle(.secondary)
|
|
}
|
|
|
|
Section {
|
|
LabeledContent("Global speed limit") {
|
|
HStack {
|
|
TextField("0", value: $settings.globalSpeedLimitKiBPerSecond, format: .number)
|
|
.textFieldStyle(.roundedBorder)
|
|
.multilineTextAlignment(.trailing)
|
|
.frame(width: 80)
|
|
Text("KiB/s")
|
|
.foregroundStyle(.secondary)
|
|
}
|
|
}
|
|
Text("Set to 0 for unlimited speed. This limit is divided across currently active downloads.")
|
|
.font(.caption)
|
|
.foregroundStyle(.secondary)
|
|
}
|
|
}
|
|
.formStyle(.grouped)
|
|
}
|
|
}
|