FMReader - add ManhuaScan (#3089)

FMReader - add ManhuaScan
This commit is contained in:
Mike 2020-05-09 20:00:28 -04:00 committed by GitHub
parent 0fac11a5a3
commit 4285114a03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: FMReader (multiple aggregators)'
pkgNameSuffix = 'all.fmreader'
extClass = '.FMReaderFactory'
extVersionCode = 12
extVersionCode = 13
libVersion = '1.2'
}

View File

@ -40,7 +40,8 @@ class FMReaderFactory : SourceFactory {
Manhwa18NetRaw(),
MangaBorn(),
SayTruyen(),
EpikManga()
EpikManga(),
ManhuaScan()
)
}
@ -361,3 +362,5 @@ class EpikManga : FMReader("Epik Manga", "https://www.epikmanga.com", "tr") {
override fun chapterListSelector() = "table.table tbody tr"
override fun getFilterList(): FilterList = FilterList()
}
class ManhuaScan : FMReader("ManhuaScan", "https://manhuascan.com", "en")