parent
02259c06bd
commit
4bc49d08c9
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
|
@ -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))
|
||||||
|
|
Loading…
Reference in New Issue