parent
6deb8233fc
commit
351e1ce48e
|
@ -0,0 +1,10 @@
|
|||
ext {
|
||||
extName = 'Ragnarok No Chikara'
|
||||
extClass = '.RagnarokNoChikara'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://ragnarokscan.com'
|
||||
overrideVersionCode = 0
|
||||
isNsfw = false
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 5.0 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.8 KiB |
Binary file not shown.
After Width: | Height: | Size: 6.8 KiB |
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
Binary file not shown.
After Width: | Height: | Size: 16 KiB |
|
@ -0,0 +1,21 @@
|
|||
package eu.kanade.tachiyomi.extension.es.ragnaroknochikara
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimitHost
|
||||
import okhttp3.HttpUrl.Companion.toHttpUrl
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Locale
|
||||
|
||||
class RagnarokNoChikara : Madara(
|
||||
"Ragnarok No Chikara",
|
||||
"https://ragnarokscan.com",
|
||||
"es",
|
||||
SimpleDateFormat("MMMM d, yyy", Locale("es")),
|
||||
) {
|
||||
override val client = super.client.newBuilder()
|
||||
.rateLimitHost(baseUrl.toHttpUrl(), 3, 1)
|
||||
.build()
|
||||
|
||||
override val useLoadMoreRequest = LoadMoreStrategy.Never
|
||||
override val useNewChapterEndpoint = true
|
||||
}
|
Loading…
Reference in New Issue