diff --git a/src/es/zevep/build.gradle b/src/es/zevep/build.gradle new file mode 100644 index 000000000..df4a957bc --- /dev/null +++ b/src/es/zevep/build.gradle @@ -0,0 +1,9 @@ +ext { + extName = 'Zevep' + extClass = '.Zevep' + themePkg = 'madara' + baseUrl = 'https://zevep.com' + overrideVersionCode = 0 +} + +apply from: "$rootDir/common.gradle" diff --git a/src/es/zevep/res/mipmap-hdpi/ic_launcher.png b/src/es/zevep/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..4672af9a0 Binary files /dev/null and b/src/es/zevep/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/es/zevep/res/mipmap-mdpi/ic_launcher.png b/src/es/zevep/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..413bfd984 Binary files /dev/null and b/src/es/zevep/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/es/zevep/res/mipmap-xhdpi/ic_launcher.png b/src/es/zevep/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..8da9961fd Binary files /dev/null and b/src/es/zevep/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/es/zevep/res/mipmap-xxhdpi/ic_launcher.png b/src/es/zevep/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..67b510ba7 Binary files /dev/null and b/src/es/zevep/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/es/zevep/res/mipmap-xxxhdpi/ic_launcher.png b/src/es/zevep/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..0c67e4b4d Binary files /dev/null and b/src/es/zevep/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/es/zevep/src/eu/kanade/tachiyomi/extension/es/zevep/Zevep.kt b/src/es/zevep/src/eu/kanade/tachiyomi/extension/es/zevep/Zevep.kt new file mode 100644 index 000000000..cd146a4c0 --- /dev/null +++ b/src/es/zevep/src/eu/kanade/tachiyomi/extension/es/zevep/Zevep.kt @@ -0,0 +1,14 @@ +package eu.kanade.tachiyomi.extension.es.zevep + +import eu.kanade.tachiyomi.multisrc.madara.Madara +import java.text.SimpleDateFormat +import java.util.Locale + +class Zevep : Madara( + "Zevep", + "https://zevep.com", + "es", + dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("es")), +) { + override val useNewChapterEndpoint: Boolean = true +}