Madara - add MangaYosh (#3092)

This commit is contained in:
Mike 2020-05-10 06:11:34 -04:00 committed by GitHub
parent 830dfb9fc5
commit 1fdeb75066
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: Madara (multiple sources)'
pkgNameSuffix = "all.madara"
extClass = '.MadaraFactory'
extVersionCode = 89
extVersionCode = 90
libVersion = '1.2'
}

View File

@ -118,7 +118,8 @@ class MadaraFactory : SourceFactory {
MangaPhoenix(),
FirstKissManhua(),
HeroManhua(),
MartialScans()
MartialScans(),
MangaYosh()
// Removed by request of site owner
// EarlyManga(),
@ -662,3 +663,5 @@ class MartialScans : Madara("Martial Scans", "https://martialscans.com", "en") {
}
override fun searchMangaFromElement(element: Element): SManga = popularMangaFromElement(element)
}
class MangaYosh : Madara("MangaYosh", "https://mangayosh.xyz", "id", SimpleDateFormat("dd MMM yyyy", Locale.US))