WP MangaReader add TurkToon (#5432)

This commit is contained in:
Riztard Lanthorn 2021-01-16 10:29:14 +07:00 committed by GitHub
parent 416a648d72
commit 057070f05b
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 {
extName = 'WP MangaReader (multiple sources)'
pkgNameSuffix = 'all.wpmangareader'
extClass = '.WPMangaReaderFactory'
extVersionCode = 3
extVersionCode = 4
libVersion = '1.2'
}

View File

@ -9,10 +9,13 @@ class WPMangaReaderFactory : SourceFactory {
override fun createSources(): List<Source> = listOf(
KomikMama(),
MangaKita(),
Ngomik()
Ngomik(),
TurkToon(),
)
}
class TurkToon : WPMangaReader("TurkToon", "https://turktoon.com", "tr", "/manga", SimpleDateFormat("MMM d, yyyy", Locale("tr")))
class KomikMama : WPMangaReader("KomikMama", "https://komikmama.net", "id", "/manga", SimpleDateFormat("MMMM dd, yyyy", Locale.forLanguageTag("id")))
class MangaKita : WPMangaReader("MangaKita", "https://mangakita.net", "id")