Add Projeto Scanlator and Hikari Scan. (#4529)
This commit is contained in:
parent
3ae4a27550
commit
8b86b75841
|
@ -5,7 +5,7 @@ ext {
|
||||||
extName = 'Madara (multiple sources)'
|
extName = 'Madara (multiple sources)'
|
||||||
pkgNameSuffix = "all.madara"
|
pkgNameSuffix = "all.madara"
|
||||||
extClass = '.MadaraFactory'
|
extClass = '.MadaraFactory'
|
||||||
extVersionCode = 138
|
extVersionCode = 139
|
||||||
libVersion = '1.2'
|
libVersion = '1.2'
|
||||||
containsNsfw = true
|
containsNsfw = true
|
||||||
}
|
}
|
||||||
|
|
|
@ -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", "Completo" -> SManga.COMPLETED
|
"Completed", "Completo", "Concluído" -> SManga.COMPLETED
|
||||||
"OnGoing", "Продолжается", "Updating", "Em Lançamento" -> SManga.ONGOING
|
"OnGoing", "Продолжается", "Updating", "Em Lançamento", "Em andamento" -> SManga.ONGOING
|
||||||
else -> SManga.UNKNOWN
|
else -> SManga.UNKNOWN
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -169,7 +169,9 @@ class MadaraFactory : SourceFactory {
|
||||||
OlaoeManga(),
|
OlaoeManga(),
|
||||||
FdmScan(),
|
FdmScan(),
|
||||||
ArgosScan(),
|
ArgosScan(),
|
||||||
Kombatch()
|
Kombatch(),
|
||||||
|
ProjetoScanlator(),
|
||||||
|
HikariScan()
|
||||||
// Removed by request of site owner
|
// Removed by request of site owner
|
||||||
// EarlyManga(),
|
// EarlyManga(),
|
||||||
// MangaGecesi(),
|
// MangaGecesi(),
|
||||||
|
@ -1301,3 +1303,7 @@ class S2Manga : Madara("S2Manga", "https://s2manga.com", "en")
|
||||||
class MangaLandArabic : Madara("Manga Land Arabic", "https://mangalandarabic.com", "ar")
|
class MangaLandArabic : Madara("Manga Land Arabic", "https://mangalandarabic.com", "ar")
|
||||||
|
|
||||||
class Kombatch : Madara("Kombatch", "https://kombatch.com", "id")
|
class Kombatch : Madara("Kombatch", "https://kombatch.com", "id")
|
||||||
|
|
||||||
|
class ProjetoScanlator : Madara("Projeto Scanlator", "https://projetoscanlator.com", "pt-BR", SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")))
|
||||||
|
|
||||||
|
class HikariScan : Madara("Hikari Scan", "https://hikariscan.com.br", "pt-BR", SimpleDateFormat("dd 'de' MMMM 'de' yyyy", Locale("pt", "BR")))
|
||||||
|
|
Loading…
Reference in New Issue