Open Madara PR (#5585)

* Madara fix PMScans timeStamp

* add source

add Raw Mangas
add SiXiang Scans

* nsfw
This commit is contained in:
Riztard Lanthorn 2021-02-02 18:50:54 +07:00 committed by GitHub
parent 98f0495b4d
commit 050636f172
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 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 = 176 extVersionCode = 177
libVersion = '1.2' libVersion = '1.2'
containsNsfw = true containsNsfw = true
} }

View File

@ -193,12 +193,14 @@ class MadaraFactory : SourceFactory {
QueensManga(), QueensManga(),
RaiderScans(), RaiderScans(),
RandomTranslations(), RandomTranslations(),
RawMangas(),
ReadManhua(), ReadManhua(),
RenaScans(), RenaScans(),
RuyaManga(), RuyaManga(),
S2Manga(), S2Manga(),
SekteDoujin(), SekteDoujin(),
ShoujoHearts(), ShoujoHearts(),
SiXiangScans(),
Siyahmelek(), Siyahmelek(),
Skymanga(), Skymanga(),
SoloScanlation(), SoloScanlation(),
@ -241,6 +243,11 @@ class MadaraFactory : SourceFactory {
) )
} }
@Nsfw
class RawMangas : Madara("Raw Mangas", "https://rawmangas.net", "ja", SimpleDateFormat("MMMM dd, yyyy", Locale.US))
class SiXiangScans : Madara("SiXiang Scans", "http://www.sixiangscans.com", "en", SimpleDateFormat("MMMM dd, yyyy", Locale.US))
class SoloScanlation : Madara("SoloScanlation", "https://soloscanlation.site", "en", SimpleDateFormat("MMMM dd, yyyy", Locale.US)) 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 LovableSubs : Madara("LovableSubs", "https://lovablesubs.com", "tr", SimpleDateFormat("dd MMM yyyy", Locale("tr")))
@ -982,7 +989,7 @@ class MangaLord : Madara("Manga Lord", "https://mangalord.com", "en")
@Nsfw @Nsfw
class PornComix : Madara("PornComix", "https://www.porncomixonline.net", "en") class PornComix : Madara("PornComix", "https://www.porncomixonline.net", "en")
class PMScans : Madara("PMScans", "https://www.pmscans.com", "en") class PMScans : Madara("PMScans", "https://www.pmscans.com", "en", SimpleDateFormat("MMM-dd-yy", Locale.US))
class MangaRead : Madara("Manga Read", "https://mangaread.co", "en", SimpleDateFormat("yyyy-MM-dd", Locale.US)) class MangaRead : Madara("Manga Read", "https://mangaread.co", "en", SimpleDateFormat("yyyy-MM-dd", Locale.US))