adding new source to madara (#5398)
This commit is contained in:
parent
d69bf37f73
commit
6910f2fc88
|
@ -5,7 +5,7 @@ ext {
|
||||||
extName = 'Madara (multiple sources)'
|
extName = 'Madara (multiple sources)'
|
||||||
pkgNameSuffix = "all.madara"
|
pkgNameSuffix = "all.madara"
|
||||||
extClass = '.MadaraFactory'
|
extClass = '.MadaraFactory'
|
||||||
extVersionCode = 168
|
extVersionCode = 169
|
||||||
libVersion = '1.2'
|
libVersion = '1.2'
|
||||||
containsNsfw = true
|
containsNsfw = true
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,6 +68,7 @@ class MadaraFactory : SourceFactory {
|
||||||
FirstKissManhua(),
|
FirstKissManhua(),
|
||||||
FreeWebtoonCoins(),
|
FreeWebtoonCoins(),
|
||||||
FurioScans(),
|
FurioScans(),
|
||||||
|
GeceninLordu(),
|
||||||
GoldenManga(),
|
GoldenManga(),
|
||||||
GuncelManga(),
|
GuncelManga(),
|
||||||
HeroManhua(),
|
HeroManhua(),
|
||||||
|
@ -1496,3 +1497,7 @@ class MangaTeca : Madara(
|
||||||
class Voidscans : Madara("Void Scans", "https://voidscans.com", "en") {
|
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")
|
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")
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue