2021-06-27 04:59:55 +05:30
|
|
|
import Defaults
|
|
|
|
|
2021-09-19 16:36:54 +05:30
|
|
|
extension Defaults.Keys {
|
2021-10-17 04:18:58 +05:30
|
|
|
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-27 02:09:27 +05:30
|
|
|
static let accounts = Key<[Instance.Account]>("accounts", default: [])
|
2021-09-27 03:33:33 +05:30
|
|
|
static let defaultAccountID = Key<String?>("defaultAccountID")
|
2021-09-25 13:48:22 +05:30
|
|
|
|
2021-09-28 23:36:05 +05:30
|
|
|
static let quality = Key<Stream.ResolutionSetting>("quality", default: .hd720pFirstThenBest)
|
2021-09-19 16:36:54 +05:30
|
|
|
|
|
|
|
static let recentlyOpened = Key<[RecentItem]>("recentlyOpened", default: [])
|
2021-09-28 23:36:05 +05:30
|
|
|
|
|
|
|
static let trendingCategory = Key<TrendingCategory>("trendingCategory", default: .default)
|
|
|
|
static let trendingCountry = Key<Country>("trendingCountry", default: .us)
|
2021-09-19 16:36:54 +05:30
|
|
|
}
|