Add HaremDeKira (#3402)

* Add HaremDeKira

* Remove unused import
This commit is contained in:
Chopper 2024-06-04 02:30:51 -03:00 committed by Draff
parent 05dfff4465
commit 00ff44e696
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Harem de Kira'
extClass = '.HaremDeKira'
themePkg = 'madara'
baseUrl = 'https://haremscann.es'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,19 @@
package eu.kanade.tachiyomi.extension.es.haremdekira
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class HaremDeKira : Madara(
"Harem de Kira",
"https://haremscann.es",
"es",
SimpleDateFormat("MMMM dd, yyyy", Locale("es")),
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
override val useLoadMoreRequest = LoadMoreStrategy.Always
}