Add Kedito (#3506)

* Add Kedito

* Add rateLimit
This commit is contained in:
Chopper 2024-06-10 09:57:48 -03:00 committed by Draff
parent b94598c7f6
commit a75d6f4670
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 32 additions and 0 deletions

View File

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

View File

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