parent
b94598c7f6
commit
a75d6f4670
|
@ -0,0 +1,9 @@
|
||||||
|
ext {
|
||||||
|
extName = 'Kedi.to'
|
||||||
|
extClass = '.Kedito'
|
||||||
|
themePkg = 'madara'
|
||||||
|
baseUrl = 'https://kedi.to'
|
||||||
|
overrideVersionCode = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 4.5 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
Binary file not shown.
After Width: | Height: | Size: 6.3 KiB |
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
|
@ -0,0 +1,23 @@
|
||||||
|
package eu.kanade.tachiyomi.extension.tr.kedito
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||||
|
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
class Kedito : Madara(
|
||||||
|
"Kedi.to",
|
||||||
|
"https://kedi.to",
|
||||||
|
"tr",
|
||||||
|
SimpleDateFormat("dd MMM yyyy", Locale("tr")),
|
||||||
|
) {
|
||||||
|
override val client = super.client.newBuilder()
|
||||||
|
.rateLimit(3)
|
||||||
|
.build()
|
||||||
|
|
||||||
|
override val useNewChapterEndpoint = true
|
||||||
|
|
||||||
|
override val useLoadMoreRequest = LoadMoreStrategy.Never
|
||||||
|
|
||||||
|
override val chapterUrlSuffix = ""
|
||||||
|
}
|
Loading…
Reference in New Issue