Add DarkNebulus (#6012)
This commit is contained in:
parent
21beafbf88
commit
c1a88e2b19
|
@ -0,0 +1,10 @@
|
||||||
|
ext {
|
||||||
|
extName = 'Dark Nebulus'
|
||||||
|
extClass = '.DarkNebulus'
|
||||||
|
themePkg = 'madara'
|
||||||
|
baseUrl = 'https://www.darknebulus.com'
|
||||||
|
overrideVersionCode = 0
|
||||||
|
isNsfw = true
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 5.8 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.9 KiB |
Binary file not shown.
After Width: | Height: | Size: 9.2 KiB |
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
Binary file not shown.
After Width: | Height: | Size: 30 KiB |
|
@ -0,0 +1,22 @@
|
||||||
|
package eu.kanade.tachiyomi.extension.es.darknebulus
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||||
|
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||||
|
import okhttp3.OkHttpClient
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
class DarkNebulus : Madara(
|
||||||
|
"Dark Nebulus",
|
||||||
|
"https://www.darknebulus.com",
|
||||||
|
"es",
|
||||||
|
dateFormat = SimpleDateFormat("MMM dd, yyyy", Locale("es")),
|
||||||
|
) {
|
||||||
|
override val client: OkHttpClient = super.client.newBuilder()
|
||||||
|
.rateLimit(3)
|
||||||
|
.build()
|
||||||
|
|
||||||
|
override val useNewChapterEndpoint = true
|
||||||
|
|
||||||
|
override val useLoadMoreRequest = LoadMoreStrategy.Never
|
||||||
|
}
|
Loading…
Reference in New Issue