adding new source to madara (#5398)

This commit is contained in:
OncePunchedMan 2021-01-13 20:40:13 +00:00 committed by GitHub
parent d69bf37f73
commit 6910f2fc88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'Madara (multiple sources)'
pkgNameSuffix = "all.madara"
extClass = '.MadaraFactory'
extVersionCode = 168
extVersionCode = 169
libVersion = '1.2'
containsNsfw = true
}

View File

@ -68,6 +68,7 @@ class MadaraFactory : SourceFactory {
FirstKissManhua(),
FreeWebtoonCoins(),
FurioScans(),
GeceninLordu(),
GoldenManga(),
GuncelManga(),
HeroManhua(),
@ -1496,3 +1497,7 @@ class MangaTeca : Madara(
class Voidscans : Madara("Void Scans", "https://voidscans.com", "en") {
override fun searchMangaRequest(page: Int, query: String, filters: FilterList) = GET("$baseUrl/?s=$query&post_type=wp-manga")
}
class GeceninLordu : Madara("Gecenin Lordu", "https://geceninlordu.com/", "tr", SimpleDateFormat("dd MMM yyyy", Locale("tr"))) {
override fun searchMangaRequest(page: Int, query: String, filters: FilterList) = GET("$baseUrl/?s=$query&post_type=wp-manga")
}