Add JeazScans (#1990)

This commit is contained in:
bapeey 2024-03-21 11:20:16 -05:00 committed by Draff
parent e7c326bb6c
commit 99b0273848
7 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Jeaz Scans'
extClass = '.JeazScans'
themePkg = 'madara'
baseUrl = 'https://jeazscansv1.com'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,21 @@
package eu.kanade.tachiyomi.extension.es.jeazscans
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
class JeazScans : Madara(
"JeazScans",
"https://jeazscansv1.com",
"es",
SimpleDateFormat("d MMMM, yyyy", Locale("es")),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val useNewChapterEndpoint = true
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(2)
.build()
}