Madara - add Novel France (#2167)

Madara - add Novel France
This commit is contained in:
Mike 2020-02-01 10:03:12 -05:00 committed by GitHub
parent 44c1ebba51
commit b9fd83a50d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -5,7 +5,7 @@ ext {
appName = 'Tachiyomi: Madara (multiple sources)' appName = 'Tachiyomi: Madara (multiple sources)'
pkgNameSuffix = "all.madara" pkgNameSuffix = "all.madara"
extClass = '.MadaraFactory' extClass = '.MadaraFactory'
extVersionCode = 50 extVersionCode = 51
libVersion = '1.2' libVersion = '1.2'
} }

View File

@ -65,7 +65,8 @@ class MadaraFactory : SourceFactory {
YaoiToshokan(), YaoiToshokan(),
GoldenManga(), GoldenManga(),
Mangalek(), Mangalek(),
AstralLibrary() AstralLibrary(),
NovelFrance()
) )
} }
@ -415,3 +416,5 @@ class Mangalek : Madara("مانجا ليك", "https://mangalek.com", "ar", Simpl
class AstralLibrary : Madara("Astral Library", "https://astrallibrary.net", "en") { class AstralLibrary : Madara("Astral Library", "https://astrallibrary.net", "en") {
override fun chapterListParse(response: Response): List<SChapter> = super.chapterListParse(response).reversed() override fun chapterListParse(response: Response): List<SChapter> = super.chapterListParse(response).reversed()
} }
class NovelFrance : Madara("Novel France", "http://novel-france.fr", "fr", SimpleDateFormat("dd MMM yyyy", Locale.FRENCH))