madara add sources (#5356)

LovableSubs
Manga-Online.co
SoloScanlation
This commit is contained in:
Riztard Lanthorn 2021-01-08 22:41:38 +07:00 committed by GitHub
parent 02259c06bd
commit 4bc49d08c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'Madara (multiple sources)' extName = 'Madara (multiple sources)'
pkgNameSuffix = "all.madara" pkgNameSuffix = "all.madara"
extClass = '.MadaraFactory' extClass = '.MadaraFactory'
extVersionCode = 165 extVersionCode = 166
libVersion = '1.2' libVersion = '1.2'
containsNsfw = true containsNsfw = true
} }

View File

@ -89,6 +89,7 @@ class MadaraFactory : SourceFactory {
Kombatch(), Kombatch(),
KomikGo(), KomikGo(),
LilyManga(), LilyManga(),
LovableSubs(),
Manga18Fun(), Manga18Fun(),
Manga347(), Manga347(),
Manga3asq(), Manga3asq(),
@ -112,6 +113,7 @@ class MadaraFactory : SourceFactory {
MangaLord(), MangaLord(),
ManganeloLink(), ManganeloLink(),
MangaNine(), MangaNine(),
MangaOnlineCo(),
MangaPhoenix(), MangaPhoenix(),
MangaRave(), MangaRave(),
MangaRawr(), MangaRawr(),
@ -188,6 +190,7 @@ class MadaraFactory : SourceFactory {
S2Manga(), S2Manga(),
ShoujoHearts(), ShoujoHearts(),
Skymanga(), Skymanga(),
SoloScanlation(),
SpookyScanlations(), SpookyScanlations(),
StageComics(), StageComics(),
TheTopComic(), TheTopComic(),
@ -223,6 +226,14 @@ class MadaraFactory : SourceFactory {
) )
} }
class SoloScanlation : Madara("SoloScanlation", "https://soloscanlation.site", "en", SimpleDateFormat("MMMM dd, yyyy", Locale.US))
class LovableSubs : Madara("LovableSubs", "https://lovablesubs.com", "tr", SimpleDateFormat("dd MMM yyyy", Locale("tr")))
class MangaOnlineCo : Madara("Manga-Online.co", "https://www.manga-online.co", "th", SimpleDateFormat("MMM dd, yyyy", Locale("th"))) {
override fun chapterListParse(response: Response): List<SChapter> = super.chapterListParse(response).reversed()
}
class NeatManga : Madara("NeatManga", "https://neatmanga.com", "en", SimpleDateFormat("dd MMM yyyy", Locale.US)) class NeatManga : Madara("NeatManga", "https://neatmanga.com", "en", SimpleDateFormat("dd MMM yyyy", Locale.US))
class WarQueenScan : Madara("War Queen Scan", "https://wqscan.com", "pt-BR", SimpleDateFormat("dd/MM/yyyy", Locale.US)) class WarQueenScan : Madara("War Queen Scan", "https://wqscan.com", "pt-BR", SimpleDateFormat("dd/MM/yyyy", Locale.US))