Add DarkNebulus (#6012)

This commit is contained in:
Chopper 2024-11-14 03:22:48 -03:00 committed by GitHub
parent 3cefa155ca
commit 05e9c4f33a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 32 additions and 0 deletions

View File

@ -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

View File

@ -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
}