diff --git a/src/es/bymichiscan/build.gradle b/src/es/bymichiscan/build.gradle new file mode 100644 index 000000000..1a4a3ff54 --- /dev/null +++ b/src/es/bymichiscan/build.gradle @@ -0,0 +1,10 @@ +ext { + extName = 'Bymichi Scan' + extClass = '.BymichiScan' + themePkg = 'mangathemesia' + baseUrl = 'https://bymichiby.com' + overrideVersionCode = 0 + isNsfw = true +} + +apply from: "$rootDir/common.gradle" diff --git a/src/es/bymichiscan/res/mipmap-hdpi/ic_launcher.png b/src/es/bymichiscan/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..798d527a5 Binary files /dev/null and b/src/es/bymichiscan/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/es/bymichiscan/res/mipmap-mdpi/ic_launcher.png b/src/es/bymichiscan/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..8a7c7d9be Binary files /dev/null and b/src/es/bymichiscan/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/es/bymichiscan/res/mipmap-xhdpi/ic_launcher.png b/src/es/bymichiscan/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..9790c9c7b Binary files /dev/null and b/src/es/bymichiscan/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/es/bymichiscan/res/mipmap-xxhdpi/ic_launcher.png b/src/es/bymichiscan/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..3640ff368 Binary files /dev/null and b/src/es/bymichiscan/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/es/bymichiscan/res/mipmap-xxxhdpi/ic_launcher.png b/src/es/bymichiscan/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..cd4bd45d3 Binary files /dev/null and b/src/es/bymichiscan/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/es/bymichiscan/src/eu/kanade/tachiyomi/extension/es/bymichiscan/BymichiScan.kt b/src/es/bymichiscan/src/eu/kanade/tachiyomi/extension/es/bymichiscan/BymichiScan.kt new file mode 100644 index 000000000..460574300 --- /dev/null +++ b/src/es/bymichiscan/src/eu/kanade/tachiyomi/extension/es/bymichiscan/BymichiScan.kt @@ -0,0 +1,21 @@ +package eu.kanade.tachiyomi.extension.es.bymichiscan + +import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia +import eu.kanade.tachiyomi.network.interceptor.rateLimitHost +import okhttp3.HttpUrl.Companion.toHttpUrl +import java.text.SimpleDateFormat +import java.util.Locale +import java.util.concurrent.TimeUnit + +class BymichiScan : MangaThemesia( + "Bymichi Scan", + "https://bymichiby.com", + "es", + dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("es")), +) { + override val client = super.client.newBuilder() + .rateLimitHost(baseUrl.toHttpUrl(), 3, 1, TimeUnit.SECONDS) + .build() + + override val hasProjectPage = true +}