mirror of
https://github.com/yattee/yattee.git
synced 2026-07-21 14:52:03 +00:00
Remove Enable DASH setting; make DASH a last-resort format
Drop the dashEnabled toggle and its plumbing. Stream auto-selection now keeps DASH as a candidate but ranks it strictly below progressive and HLS formats, so DASH is only chosen when it is the only format available (including live-stream fallback after HLS). The manual quality selector hides DASH entirely on iOS/tvOS/macOS. Reconciles BackendSwitcher, which previously treated HLS/DASH equally, to use the same DASH-last ranking.
This commit is contained in:
@@ -206,13 +206,6 @@ struct AdvancedSettingsView: View {
|
||||
Label(String(localized: "settings.advanced.mpv.edl"), systemImage: "arrow.trianglehead.merge")
|
||||
}
|
||||
|
||||
Toggle(isOn: Binding(
|
||||
get: { settingsManager.dashEnabled },
|
||||
set: { settingsManager.dashEnabled = $0 }
|
||||
)) {
|
||||
Label(String(localized: "settings.playback.dash"), systemImage: "bolt.horizontal")
|
||||
}
|
||||
|
||||
#if os(tvOS)
|
||||
NavigationLink {
|
||||
TVSidebarDetailContainer(
|
||||
|
||||
Reference in New Issue
Block a user