parent
478c0aa327
commit
6b64899c4d
|
@ -6,7 +6,7 @@ ext {
|
||||||
extName = 'MANGA Plus by SHUEISHA'
|
extName = 'MANGA Plus by SHUEISHA'
|
||||||
pkgNameSuffix = 'all.mangaplus'
|
pkgNameSuffix = 'all.mangaplus'
|
||||||
extClass = '.MangaPlusFactory'
|
extClass = '.MangaPlusFactory'
|
||||||
extVersionCode = 46
|
extVersionCode = 47
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
|
@ -70,6 +70,9 @@ data class TitleDetailView(
|
||||||
) {
|
) {
|
||||||
|
|
||||||
val chapterList: List<Chapter> by lazy {
|
val chapterList: List<Chapter> by lazy {
|
||||||
|
// Doesn't include `midChapterList` by design as their site API returns it
|
||||||
|
// just for visual representation to redirect users to their app. The extension
|
||||||
|
// intends to allow users to read only what they can already read in their site.
|
||||||
chapterListGroup.flatMap { it.firstChapterList + it.lastChapterList }
|
chapterListGroup.flatMap { it.firstChapterList + it.lastChapterList }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -212,10 +215,12 @@ enum class LabelCode {
|
||||||
|
|
||||||
@SerialName("J_PLUS")
|
@SerialName("J_PLUS")
|
||||||
SHOUNEN_JUMP_PLUS,
|
SHOUNEN_JUMP_PLUS,
|
||||||
REVIVAL,
|
|
||||||
|
|
||||||
@SerialName("CREATORS")
|
@SerialName("CREATORS")
|
||||||
MANGA_PLUS_CREATORS,
|
MANGA_PLUS_CREATORS,
|
||||||
|
|
||||||
|
REVIVAL,
|
||||||
|
OTHERS,
|
||||||
}
|
}
|
||||||
|
|
||||||
@Serializable
|
@Serializable
|
||||||
|
|
Loading…
Reference in New Issue