Madara - WuxiaWorld fix (#1506)

Madara - WuxiaWorld fix
This commit is contained in:
Mike 2019-09-14 21:30:33 -04:00 committed by arkon
parent 907ec95e8a
commit 2bf823b012
2 changed files with 6 additions and 6 deletions

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: Madara'
pkgNameSuffix = "all.madara"
extClass = '.MadaraFactory'
extVersionCode = 13
extVersionCode = 14
libVersion = '1.2'
}

View File

@ -43,8 +43,9 @@ class MadaraFactory : SourceFactory {
YoManga(),
ManyToon(),
ChibiManga(),
ManhwahentaiSite(),
ZinManga()
ToomicsMe(),
ZinManga(),
ManwahentaiMe()
)
}
@ -150,7 +151,6 @@ class WuxiaWorld : Madara("WuxiaWorld", "https://wuxiaworld.site/", "en") {
override fun latestUpdatesRequest(page: Int): Request = GET("$baseUrl/tag/webcomics/page/$page/?m_orderby=latest", headers)
override fun popularMangaSelector() = "div.page-item-detail"
override fun latestUpdatesSelector() = "div.page-item-detail"
override fun searchMangaRequest(page: Int, query: String, filters: FilterList): Request = throw Exception("Not used")
override fun getFilterList() = FilterList()
}
class YoManga : Madara("Yo Manga", "https://yomanga.info/", "en") {
@ -162,10 +162,10 @@ class ManyToon : Madara("ManyToon", "https://manytoon.com/", "en") {
class ChibiManga : Madara("Chibi Manga", "http://www.cmreader.info/", "en") {
override fun searchMangaNextPageSelector() = "nav.navigation-ajax"
}
class ManhwahentaiSite : Madara("Manhwahentai.site", "https://manhwahentai.site/", "en",
dateFormat = SimpleDateFormat("dd'th' MMMM yyyy", Locale.US)) {
class ToomicsMe : Madara("Toomics.me", "https://app.toomics.me/", "en") {
override fun searchMangaNextPageSelector() = "nav.navigation-ajax"
}
class ZinManga : Madara("Zin Translator", "https://zinmanga.com/", "en") {
override fun searchMangaNextPageSelector() = "nav.navigation-ajax"
}
class ManwahentaiMe : Madara("Manwahentai.me", "https://manhwahentai.me", "en")