Remove Sparkle update framework

This commit is contained in:
Arkadiusz Fal
2022-06-08 01:14:47 +02:00
parent fd3b3e604a
commit 59978ecebe
7 changed files with 1 additions and 154 deletions

View File

@@ -5,7 +5,7 @@ import SwiftUI
struct SettingsView: View {
#if os(macOS)
private enum Tabs: Hashable {
case instances, browsing, player, history, sponsorBlock, updates, help
case instances, browsing, player, history, sponsorBlock, help
}
@State private var selection = Tabs.instances
@@ -68,14 +68,6 @@ struct SettingsView: View {
}
.tag(Tabs.sponsorBlock)
Form {
UpdatesSettings()
}
.tabItem {
Label("Updates", systemImage: "gearshape.2")
}
.tag(Tabs.updates)
Form {
Help()
}
@@ -184,8 +176,6 @@ struct SettingsView: View {
return 480
case .sponsorBlock:
return 660
case .updates:
return 200
case .help:
return 570
}