diff --git a/src/es/jeazscans/build.gradle b/src/es/jeazscans/build.gradle new file mode 100644 index 000000000..eae7c836a --- /dev/null +++ b/src/es/jeazscans/build.gradle @@ -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" diff --git a/src/es/jeazscans/res/mipmap-hdpi/ic_launcher.png b/src/es/jeazscans/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..7c299c29b Binary files /dev/null and b/src/es/jeazscans/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/es/jeazscans/res/mipmap-mdpi/ic_launcher.png b/src/es/jeazscans/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..e689064f5 Binary files /dev/null and b/src/es/jeazscans/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/es/jeazscans/res/mipmap-xhdpi/ic_launcher.png b/src/es/jeazscans/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..d1f53c136 Binary files /dev/null and b/src/es/jeazscans/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/es/jeazscans/res/mipmap-xxhdpi/ic_launcher.png b/src/es/jeazscans/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..f958ca943 Binary files /dev/null and b/src/es/jeazscans/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/es/jeazscans/res/mipmap-xxxhdpi/ic_launcher.png b/src/es/jeazscans/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..edb6e4574 Binary files /dev/null and b/src/es/jeazscans/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/es/jeazscans/src/eu/kanade/tachiyomi/extension/es/jeazscans/JeazScans.kt b/src/es/jeazscans/src/eu/kanade/tachiyomi/extension/es/jeazscans/JeazScans.kt new file mode 100644 index 000000000..1ce51055e --- /dev/null +++ b/src/es/jeazscans/src/eu/kanade/tachiyomi/extension/es/jeazscans/JeazScans.kt @@ -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() +}