diff --git a/src/es/demanhuas/build.gradle b/src/es/demanhuas/build.gradle new file mode 100644 index 000000000..e22b34b95 --- /dev/null +++ b/src/es/demanhuas/build.gradle @@ -0,0 +1,9 @@ +ext { + extName = 'DeManhuas' + extClass = '.DeManhuas' + themePkg = 'madara' + baseUrl = 'https://demanhuas.com' + overrideVersionCode = 0 +} + +apply from: "$rootDir/common.gradle" diff --git a/src/es/demanhuas/res/mipmap-hdpi/ic_launcher.png b/src/es/demanhuas/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..6d4b03552 Binary files /dev/null and b/src/es/demanhuas/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/es/demanhuas/res/mipmap-mdpi/ic_launcher.png b/src/es/demanhuas/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..eea4dc0dd Binary files /dev/null and b/src/es/demanhuas/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/es/demanhuas/res/mipmap-xhdpi/ic_launcher.png b/src/es/demanhuas/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..7db882923 Binary files /dev/null and b/src/es/demanhuas/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/es/demanhuas/res/mipmap-xxhdpi/ic_launcher.png b/src/es/demanhuas/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..fe4ebf4a6 Binary files /dev/null and b/src/es/demanhuas/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/es/demanhuas/res/mipmap-xxxhdpi/ic_launcher.png b/src/es/demanhuas/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..14f7943a5 Binary files /dev/null and b/src/es/demanhuas/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/es/demanhuas/src/eu/kanade/tachiyomi/extension/es/demanhuas/DeManhuas.kt b/src/es/demanhuas/src/eu/kanade/tachiyomi/extension/es/demanhuas/DeManhuas.kt new file mode 100644 index 000000000..2bba1a63f --- /dev/null +++ b/src/es/demanhuas/src/eu/kanade/tachiyomi/extension/es/demanhuas/DeManhuas.kt @@ -0,0 +1,21 @@ +package eu.kanade.tachiyomi.extension.es.demanhuas + +import eu.kanade.tachiyomi.multisrc.madara.Madara +import eu.kanade.tachiyomi.network.interceptor.rateLimitHost +import okhttp3.HttpUrl.Companion.toHttpUrl +import java.text.SimpleDateFormat +import java.util.Locale + +class DeManhuas : Madara( + "DeManhuas", + "https://demanhuas.com", + "es", + SimpleDateFormat("MMMM d, yyyy", Locale("es")), +) { + override val client = super.client.newBuilder() + .rateLimitHost(baseUrl.toHttpUrl(), 2) + .build() + + override val mangaSubString = "sm" + override val useNewChapterEndpoint = true +}