Add InmoralNoFansub (#1989)
This commit is contained in:
parent
b4f5680364
commit
e7c326bb6c
|
@ -0,0 +1,10 @@
|
||||||
|
ext {
|
||||||
|
extName = 'Inmoral No Fansub'
|
||||||
|
extClass = '.InmoralNoFansub'
|
||||||
|
themePkg = 'madara'
|
||||||
|
baseUrl = 'https://inmoralnofansub.xyz'
|
||||||
|
overrideVersionCode = 0
|
||||||
|
isNsfw = false
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 6.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.4 KiB |
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
Binary file not shown.
After Width: | Height: | Size: 21 KiB |
Binary file not shown.
After Width: | Height: | Size: 34 KiB |
|
@ -0,0 +1,21 @@
|
||||||
|
package eu.kanade.tachiyomi.extension.es.inmoralnofansub
|
||||||
|
|
||||||
|
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 InmoralNoFansub : Madara(
|
||||||
|
"Inmoral No Fansub",
|
||||||
|
"https://inmoralnofansub.xyz",
|
||||||
|
"es",
|
||||||
|
SimpleDateFormat("dd/MM/yyyy", Locale("es")),
|
||||||
|
) {
|
||||||
|
override val useLoadMoreRequest = LoadMoreStrategy.Always
|
||||||
|
override val useNewChapterEndpoint = true
|
||||||
|
|
||||||
|
override val client: OkHttpClient = super.client.newBuilder()
|
||||||
|
.rateLimit(2)
|
||||||
|
.build()
|
||||||
|
}
|
Loading…
Reference in New Issue