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)'
pkgNameSuffix = "all.madara"
extClass = '.MadaraFactory'
extVersionCode = 165
extVersionCode = 166
libVersion = '1.2'
containsNsfw = true
}

View File

@ -89,6 +89,7 @@ class MadaraFactory : SourceFactory {
Kombatch(),
KomikGo(),
LilyManga(),
LovableSubs(),
Manga18Fun(),
Manga347(),
Manga3asq(),
@ -112,6 +113,7 @@ class MadaraFactory : SourceFactory {
MangaLord(),
ManganeloLink(),
MangaNine(),
MangaOnlineCo(),
MangaPhoenix(),
MangaRave(),
MangaRawr(),
@ -188,6 +190,7 @@ class MadaraFactory : SourceFactory {
S2Manga(),
ShoujoHearts(),
Skymanga(),
SoloScanlation(),
SpookyScanlations(),
StageComics(),
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 WarQueenScan : Madara("War Queen Scan", "https://wqscan.com", "pt-BR", SimpleDateFormat("dd/MM/yyyy", Locale.US))