mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-25 11:42:47 +01:00
parent
0e5f5516b0
commit
6eac9d2324
9
src/tr/kedito/build.gradle
Normal file
9
src/tr/kedito/build.gradle
Normal file
@ -0,0 +1,9 @@
|
||||
ext {
|
||||
extName = 'Kedi.to'
|
||||
extClass = '.Kedito'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://kedi.to'
|
||||
overrideVersionCode = 0
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
BIN
src/tr/kedito/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/tr/kedito/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.5 KiB |
BIN
src/tr/kedito/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/tr/kedito/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
BIN
src/tr/kedito/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/tr/kedito/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.3 KiB |
BIN
src/tr/kedito/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/tr/kedito/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
BIN
src/tr/kedito/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/tr/kedito/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
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
Block a user