Users can still select all the chapters (long press + select all) to download them. (cherry picked from commit 09acc534835d6aa664b037b54401a817ed44fb45) # Conflicts: # app/src/main/java/eu/kanade/presentation/library/LibrarySettingsDialog.kt
34 lines
467 B
Kotlin
34 lines
467 B
Kotlin
package eu.kanade.presentation.manga
|
|
|
|
enum class DownloadAction {
|
|
NEXT_1_CHAPTER,
|
|
NEXT_5_CHAPTERS,
|
|
NEXT_10_CHAPTERS,
|
|
NEXT_25_CHAPTERS,
|
|
UNREAD_CHAPTERS,
|
|
}
|
|
|
|
enum class EditCoverAction {
|
|
EDIT,
|
|
DELETE,
|
|
}
|
|
|
|
enum class MangaScreenItem {
|
|
INFO_BOX,
|
|
ACTION_ROW,
|
|
|
|
// SY -->
|
|
METADATA_INFO,
|
|
|
|
// SY <--
|
|
DESCRIPTION_WITH_TAG,
|
|
|
|
// SY -->
|
|
INFO_BUTTONS,
|
|
CHAPTER_PREVIEW,
|
|
|
|
// SY <--
|
|
CHAPTER_HEADER,
|
|
CHAPTER,
|
|
}
|