Add JeazScans (#1990)
This commit is contained in:
parent
e7c326bb6c
commit
99b0273848
10
src/es/jeazscans/build.gradle
Normal file
10
src/es/jeazscans/build.gradle
Normal 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"
|
BIN
src/es/jeazscans/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/es/jeazscans/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.3 KiB |
BIN
src/es/jeazscans/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/es/jeazscans/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.0 KiB |
BIN
src/es/jeazscans/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/es/jeazscans/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.4 KiB |
BIN
src/es/jeazscans/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/es/jeazscans/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
BIN
src/es/jeazscans/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/es/jeazscans/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
@ -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()
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user