|
@@ -157,11 +157,12 @@ class LibrarySettingsSheet(
|
|
|
private val lastChecked = Item.MultiSort(R.string.action_sort_last_checked, this)
|
|
|
private val unread = Item.MultiSort(R.string.action_filter_unread, this)
|
|
|
private val latestChapter = Item.MultiSort(R.string.action_sort_latest_chapter, this)
|
|
|
+ private val chapterFetchDate = Item.MultiSort(R.string.action_sort_chapter_fetch_date, this)
|
|
|
private val dateAdded = Item.MultiSort(R.string.action_sort_date_added, this)
|
|
|
|
|
|
override val header = null
|
|
|
override val items =
|
|
|
- listOf(alphabetically, lastRead, lastChecked, unread, total, latestChapter, dateAdded)
|
|
|
+ listOf(alphabetically, lastRead, lastChecked, unread, total, latestChapter, chapterFetchDate, dateAdded)
|
|
|
override val footer = null
|
|
|
|
|
|
override fun initModels() {
|
|
@@ -184,6 +185,8 @@ class LibrarySettingsSheet(
|
|
|
if (sorting == LibrarySort.TOTAL) order else Item.MultiSort.SORT_NONE
|
|
|
latestChapter.state =
|
|
|
if (sorting == LibrarySort.LATEST_CHAPTER) order else Item.MultiSort.SORT_NONE
|
|
|
+ chapterFetchDate.state =
|
|
|
+ if (sorting == LibrarySort.CHAPTER_FETCH_DATE) order else Item.MultiSort.SORT_NONE
|
|
|
dateAdded.state =
|
|
|
if (sorting == LibrarySort.DATE_ADDED) order else Item.MultiSort.SORT_NONE
|
|
|
}
|
|
@@ -211,6 +214,7 @@ class LibrarySettingsSheet(
|
|
|
unread -> LibrarySort.UNREAD
|
|
|
total -> LibrarySort.TOTAL
|
|
|
latestChapter -> LibrarySort.LATEST_CHAPTER
|
|
|
+ chapterFetchDate -> LibrarySort.CHAPTER_FETCH_DATE
|
|
|
dateAdded -> LibrarySort.DATE_ADDED
|
|
|
else -> throw Exception("Unknown sorting")
|
|
|
}
|