Remove KenhuaScan (#2523)

This commit is contained in:
Vetle Ledaal 2024-04-23 08:00:16 +00:00 committed by Draff
parent 7fd04cd006
commit c1185fdd78
7 changed files with 0 additions and 31 deletions

View File

@ -1,9 +0,0 @@
ext {
extName = 'KenhuaScan'
extClass = '.KenhuaScan'
themePkg = 'madara'
baseUrl = 'https://kenhuav2scan.com'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

View File

@ -1,22 +0,0 @@
package eu.kanade.tachiyomi.extension.es.kenhuascan
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient
import java.text.SimpleDateFormat
import java.util.Locale
import java.util.concurrent.TimeUnit
class KenhuaScan : Madara(
"KenhuaScan",
"https://kenhuav2scan.com",
"es",
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("es")),
) {
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(2, 1, TimeUnit.SECONDS)
.build()
override val useNewChapterEndpoint = true
override val useLoadMoreRequest = LoadMoreStrategy.Always
}