2021-06-27 04:59:55 +05:30
|
|
|
import Defaults
|
2021-10-20 02:57:04 +05:30
|
|
|
import Foundation
|
2021-06-27 04:59:55 +05:30
|
|
|
|
2021-09-19 16:36:54 +05:30
|
|
|
extension Defaults.Keys {
|
2021-10-20 02:57:04 +05:30
|
|
|
static let invidiousInstanceID = "default-invidious-instance"
|
|
|
|
static let pipedInstanceID = "default-piped-instance"
|
|
|
|
|
2021-10-17 04:18:58 +05:30
|
|
|
static let instances = Key<[Instance]>("instances", default: [
|
2021-10-20 02:57:04 +05:30
|
|
|
.init(app: .piped, id: pipedInstanceID, name: "Public", url: "https://pipedapi.kavin.rocks"),
|
|
|
|
.init(app: .invidious, id: invidiousInstanceID, name: "Private", url: "https://invidious.home.arekf.net")
|
|
|
|
])
|
2021-10-21 03:51:50 +05:30
|
|
|
static let accounts = Key<[Account]>("accounts", default: [
|
2021-10-20 02:57:04 +05:30
|
|
|
.init(instanceID: invidiousInstanceID,
|
|
|
|
name: "arekf",
|
|
|
|
url: "https://invidious.home.arekf.net",
|
|
|
|
sid: "ki55SJbaQmm0bOxUWctGAQLYPQRgk-CXDPw5Dp4oBmI=")
|
2021-10-17 04:18:58 +05:30
|
|
|
])
|
2021-10-21 03:51:50 +05:30
|
|
|
static let lastAccountID = Key<Account.ID?>("lastAccountID")
|
2021-10-20 02:57:04 +05:30
|
|
|
static let lastInstanceID = Key<Instance.ID?>("lastInstanceID")
|
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
|
|
|
}
|