Add FDM and Argos Scan. (#4470)

Add FDM and Argos Scan
This commit is contained in:
Alessandro Jean 2020-09-30 13:05:32 -03:00 committed by GitHub
parent d93f0ba1b0
commit 6c66a78a8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 4 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 = 134 extVersionCode = 135
libVersion = '1.2' libVersion = '1.2'
containsNsfw = true containsNsfw = true
} }

View File

@ -350,8 +350,8 @@ abstract class Madara(
manga.status = when (it.text()) { manga.status = when (it.text()) {
// I don't know what's the corresponding for COMPLETED and LICENSED // I don't know what's the corresponding for COMPLETED and LICENSED
// There's no support for "Canceled" or "On Hold" // There's no support for "Canceled" or "On Hold"
"Completed" -> SManga.COMPLETED "Completed", "Completo" -> SManga.COMPLETED
"OnGoing", "Продолжается", "Updating" -> SManga.ONGOING "OnGoing", "Продолжается", "Updating", "Em Lançamento" -> SManga.ONGOING
else -> SManga.UNKNOWN else -> SManga.UNKNOWN
} }
} }

View File

@ -158,7 +158,9 @@ class MadaraFactory : SourceFactory {
ZinManga(), ZinManga(),
ShoujoHearts(), ShoujoHearts(),
AlianzaMarcial(), AlianzaMarcial(),
OlaoeManga() OlaoeManga(),
FdmScan(),
ArgosScan()
// Removed by request of site owner // Removed by request of site owner
// EarlyManga(), // EarlyManga(),
// MangaGecesi(), // MangaGecesi(),
@ -1264,3 +1266,7 @@ class ShoujoHearts : Madara("ShoujoHearts", "http://shoujohearts.com", "en") {
class AlianzaMarcial : Madara("AlianzaMarcial", "https://alianzamarcial.xyz", "es") class AlianzaMarcial : Madara("AlianzaMarcial", "https://alianzamarcial.xyz", "es")
class OlaoeManga : Madara("مانجا اولاو", "https://olaoe.giize.com", "ar") class OlaoeManga : Madara("مانجا اولاو", "https://olaoe.giize.com", "ar")
class FdmScan : Madara("FDM Scan", "https://fdmscan.com", "pt-BR", SimpleDateFormat("MMMM dd, yyyy", Locale("pt", "BR")))
class ArgosScan : Madara("Argos Scan", "https://argosscan.com", "pt-BR", SimpleDateFormat("dd 'de' MMMM 'de' yyyy", Locale("pt", "BR")))