Mangabat pagelist Empty (#2004)
* Update build.gradle * Allow for Nelo redirect in Mangabat
This commit is contained in:
parent
91478150eb
commit
752bfe1c8f
|
@ -5,7 +5,7 @@ ext {
|
||||||
appName = 'Tachiyomi: MangaBox (Mangakakalot and others)'
|
appName = 'Tachiyomi: MangaBox (Mangakakalot and others)'
|
||||||
pkgNameSuffix = 'all.mangabox'
|
pkgNameSuffix = 'all.mangabox'
|
||||||
extClass = '.MangaBoxFactory'
|
extClass = '.MangaBoxFactory'
|
||||||
extVersionCode = 11
|
extVersionCode = 12
|
||||||
libVersion = '1.2'
|
libVersion = '1.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -71,7 +71,7 @@ class Mangabat : MangaBox("Mangabat", "https://mangabat.com", "en") {
|
||||||
override val mangaDetailsMainSelector = "div.truyen_info"
|
override val mangaDetailsMainSelector = "div.truyen_info"
|
||||||
override val thumbnailSelector = "img.info_image_manga"
|
override val thumbnailSelector = "img.info_image_manga"
|
||||||
override val descriptionSelector = "div#contentm"
|
override val descriptionSelector = "div#contentm"
|
||||||
override val pageListSelector = "div.vung_doc img"
|
override val pageListSelector = "div.vung_doc img, ${super.pageListSelector}" //some chapters link to Nelo
|
||||||
}
|
}
|
||||||
|
|
||||||
class KonoBasho : MangaBox("Kono-Basho", "https://kono-basho.com", "en", SimpleDateFormat("MMM dd,yy", Locale.ENGLISH)) {
|
class KonoBasho : MangaBox("Kono-Basho", "https://kono-basho.com", "en", SimpleDateFormat("MMM dd,yy", Locale.ENGLISH)) {
|
||||||
|
@ -87,7 +87,7 @@ class MangaOnl : MangaBox("MangaOnl", "https://mangaonl.com", "en") {
|
||||||
override val popularUrlPath = "story-list-ty-topview-st-all-ca-all-"
|
override val popularUrlPath = "story-list-ty-topview-st-all-ca-all-"
|
||||||
override val latestUrlPath = "story-list-ty-latest-st-all-ca-all-"
|
override val latestUrlPath = "story-list-ty-latest-st-all-ca-all-"
|
||||||
override fun popularMangaSelector() = "div.story_item"
|
override fun popularMangaSelector() = "div.story_item"
|
||||||
override val mangaDetailsMainSelector = "div.panel_story_info, ${super.mangaDetailsMainSelector}"
|
override val mangaDetailsMainSelector = "div.panel_story_info, ${super.mangaDetailsMainSelector}" //Some manga link to Nelo
|
||||||
override val thumbnailSelector = "img.story_avatar, ${super.thumbnailSelector}"
|
override val thumbnailSelector = "img.story_avatar, ${super.thumbnailSelector}"
|
||||||
override val descriptionSelector = "div.panel_story_info_description, ${super.descriptionSelector}"
|
override val descriptionSelector = "div.panel_story_info_description, ${super.descriptionSelector}"
|
||||||
override fun chapterListSelector() = "div.chapter_list_title + ul li, ${super.chapterListSelector()}"
|
override fun chapterListSelector() = "div.chapter_list_title + ul li, ${super.chapterListSelector()}"
|
||||||
|
|
Loading…
Reference in New Issue