Add Kedito (#3506)

* Add Kedito

* Add rateLimit
This commit is contained in:
Chopper 2024-06-10 09:57:48 -03:00 committed by GitHub
parent 0e5f5516b0
commit 6eac9d2324
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,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 = ""
}