mirror of
https://github.com/yattee/yattee.git
synced 2024-11-14 01:58:24 +00:00
Updated importer and exporter to include new defaults
This commit is contained in:
parent
5559e78bc0
commit
87337f31a5
@ -15,7 +15,11 @@ final class HistorySettingsGroupExporter: SettingsGroupExporter {
|
|||||||
|
|
||||||
"watchedVideoStyle": Defaults[.watchedVideoStyle].rawValue,
|
"watchedVideoStyle": Defaults[.watchedVideoStyle].rawValue,
|
||||||
"watchedVideoBadgeColor": Defaults[.watchedVideoBadgeColor].rawValue,
|
"watchedVideoBadgeColor": Defaults[.watchedVideoBadgeColor].rawValue,
|
||||||
"showToggleWatchedStatusButton": Defaults[.showToggleWatchedStatusButton]
|
"showToggleWatchedStatusButton": Defaults[.showToggleWatchedStatusButton],
|
||||||
|
|
||||||
|
"showRecents": Defaults[.showRecents],
|
||||||
|
"limitRecents": Defaults[.limitRecents],
|
||||||
|
"limitRecentsAmount": Defaults[.limitRecentsAmount]
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -50,5 +50,17 @@ struct HistorySettingsGroupImporter {
|
|||||||
if let showToggleWatchedStatusButton = json["showToggleWatchedStatusButton"].bool {
|
if let showToggleWatchedStatusButton = json["showToggleWatchedStatusButton"].bool {
|
||||||
Defaults[.showToggleWatchedStatusButton] = showToggleWatchedStatusButton
|
Defaults[.showToggleWatchedStatusButton] = showToggleWatchedStatusButton
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if let showRecents = json["showRecents"].bool {
|
||||||
|
Defaults[.showRecents] = showRecents
|
||||||
|
}
|
||||||
|
|
||||||
|
if let limitRecents = json["limitRecents"].bool {
|
||||||
|
Defaults[.limitRecents] = limitRecents
|
||||||
|
}
|
||||||
|
|
||||||
|
if let limitRecentsAmount = json["limitRecentsAmount"].int {
|
||||||
|
Defaults[.limitRecentsAmount] = limitRecentsAmount
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user