2021-06-26 23:29:55 +00:00
|
|
|
import Defaults
|
|
|
|
|
2021-09-19 11:06:54 +00:00
|
|
|
extension Defaults.Keys {
|
2021-10-16 22:48:58 +00:00
|
|
|
static let instances = Key<[Instance]>("instances", default: [
|
|
|
|
.init(app: .piped, name: "Public", url: "https://pipedapi.kavin.rocks"),
|
|
|
|
.init(app: .invidious, name: "Private", url: "https://invidious.home.arekf.net")
|
|
|
|
])
|
2021-09-26 20:39:27 +00:00
|
|
|
static let accounts = Key<[Instance.Account]>("accounts", default: [])
|
2021-09-26 22:03:33 +00:00
|
|
|
static let defaultAccountID = Key<String?>("defaultAccountID")
|
2021-09-25 08:18:22 +00:00
|
|
|
|
2021-09-28 18:06:05 +00:00
|
|
|
static let quality = Key<Stream.ResolutionSetting>("quality", default: .hd720pFirstThenBest)
|
2021-09-19 11:06:54 +00:00
|
|
|
|
|
|
|
static let recentlyOpened = Key<[RecentItem]>("recentlyOpened", default: [])
|
2021-09-28 18:06:05 +00:00
|
|
|
|
|
|
|
static let trendingCategory = Key<TrendingCategory>("trendingCategory", default: .default)
|
|
|
|
static let trendingCountry = Key<Country>("trendingCountry", default: .us)
|
2021-09-19 11:06:54 +00:00
|
|
|
}
|