This commit is contained in:
Jobobby04 2022-08-13 15:46:27 -04:00
parent af070a3f0a
commit 655126eaa2
3 changed files with 10 additions and 13 deletions

View File

@ -474,8 +474,8 @@ class MigrationListController(bundle: Bundle? = null) :
}
private fun MenuItem.setIconTint(enabled: Boolean, color: Int) {
icon.mutate()
icon.setTint(color)
icon?.mutate()
icon?.setTint(color)
isEnabled = enabled
}

View File

@ -53,10 +53,8 @@ class ReaderTransitionView @JvmOverloads constructor(context: Context, attrs: At
if (prevChapter != null) {
binding.upperText.textAlignment = TEXT_ALIGNMENT_TEXT_START
val isPrevDownloaded = downloadManager.isChapterDownloaded(
prevChapter.name,
prevChapter.scanlator,
manga.title,
manga.source,
prevChapter,
manga
)
val isCurrentDownloaded = transition.from.pageLoader is DownloadPageLoader
binding.upperText.text = buildSpannedString {
@ -90,10 +88,8 @@ class ReaderTransitionView @JvmOverloads constructor(context: Context, attrs: At
binding.upperText.textAlignment = TEXT_ALIGNMENT_TEXT_START
val isCurrentDownloaded = transition.from.pageLoader is DownloadPageLoader
val isNextDownloaded = downloadManager.isChapterDownloaded(
nextChapter.name,
nextChapter.scanlator,
manga.title,
manga.source,
nextChapter,
manga
)
binding.upperText.text = buildSpannedString {
bold { append(context.getString(R.string.transition_finished)) }

View File

@ -37,6 +37,7 @@ import eu.kanade.tachiyomi.ui.library.setting.SortModeSetting
import eu.kanade.tachiyomi.ui.reader.setting.OrientationType
import eu.kanade.tachiyomi.util.preference.minusAssign
import eu.kanade.tachiyomi.util.system.DeviceUtil
import eu.kanade.tachiyomi.util.system.logcat
import exh.eh.EHentaiUpdateWorker
import exh.log.xLogE
import exh.log.xLogW
@ -314,14 +315,14 @@ object EXHMigrations {
val newSortingMode = when (oldSortingMode) {
0 -> SortModeSetting.ALPHABETICAL
1 -> SortModeSetting.LAST_READ
2 -> SortModeSetting.LAST_MANGA_UPDATE
3 -> SortModeSetting.UNREAD_COUNT
2 -> SortModeSetting.LAST_CHECKED
3 -> SortModeSetting.UNREAD
4 -> SortModeSetting.TOTAL_CHAPTERS
6 -> SortModeSetting.LATEST_CHAPTER
7 -> SortModeSetting.DRAG_AND_DROP
8 -> SortModeSetting.DATE_ADDED
9 -> SortModeSetting.TAG_LIST
10 -> SortModeSetting.CHAPTER_FETCH_DATE
10 -> SortModeSetting.DATE_FETCHED
else -> SortModeSetting.ALPHABETICAL
}