Madara - add Plot Twist No Fansub ()

Madara - add Plot Twist No Fansub
This commit is contained in:
Mike 2019-12-25 16:58:38 -05:00 committed by arkon
parent 6a703ead9b
commit 9df8e25b0e
2 changed files with 7 additions and 2 deletions
src/all/madara
build.gradle
src/eu/kanade/tachiyomi/extension/all/madara

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: Madara (multiple sources)' appName = 'Tachiyomi: Madara (multiple sources)'
pkgNameSuffix = "all.madara" pkgNameSuffix = "all.madara"
extClass = '.MadaraFactory' extClass = '.MadaraFactory'
extVersionCode = 36 extVersionCode = 37
libVersion = '1.2' libVersion = '1.2'
} }

@ -61,7 +61,8 @@ class MadaraFactory : SourceFactory {
HunterFansub(), HunterFansub(),
MangaArabTeam(), MangaArabTeam(),
NightComic(), NightComic(),
Toonily() Toonily(),
PlotTwistScan()
) )
} }
@ -388,3 +389,7 @@ class NightComic : Madara("Night Comic", "http://www.nightcomic.com", "en")
class Toonily : Madara("Toonily", "https://toonily.com", "en") class Toonily : Madara("Toonily", "https://toonily.com", "en")
class PlotTwistScan : Madara("Plot Twist No Fansub", "https://www.plotwistscan.com", "es") {
override fun chapterListParse(response: Response): List<SChapter> = super.chapterListParse(response).asReversed()
}