diff --git a/src/es/marmota/build.gradle b/src/es/marmota/build.gradle new file mode 100644 index 000000000..0ba7ac58d --- /dev/null +++ b/src/es/marmota/build.gradle @@ -0,0 +1,9 @@ +ext { + extName = 'Marmota' + extClass = '.Marmota' + themePkg = 'madara' + baseUrl = 'https://marmota.me' + overrideVersionCode = 0 +} + +apply from: "$rootDir/common.gradle" diff --git a/src/es/marmota/res/mipmap-hdpi/ic_launcher.png b/src/es/marmota/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..f3866ca52 Binary files /dev/null and b/src/es/marmota/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/es/marmota/res/mipmap-mdpi/ic_launcher.png b/src/es/marmota/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..470dcf187 Binary files /dev/null and b/src/es/marmota/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/es/marmota/res/mipmap-xhdpi/ic_launcher.png b/src/es/marmota/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..2356a9f39 Binary files /dev/null and b/src/es/marmota/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/es/marmota/res/mipmap-xxhdpi/ic_launcher.png b/src/es/marmota/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..58bba7e30 Binary files /dev/null and b/src/es/marmota/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/es/marmota/res/mipmap-xxxhdpi/ic_launcher.png b/src/es/marmota/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..7aca9f11a Binary files /dev/null and b/src/es/marmota/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/es/marmota/src/eu/kanade/tachiyomi/extension/es/marmota/Marmota.kt b/src/es/marmota/src/eu/kanade/tachiyomi/extension/es/marmota/Marmota.kt new file mode 100644 index 000000000..ca3b28ad5 --- /dev/null +++ b/src/es/marmota/src/eu/kanade/tachiyomi/extension/es/marmota/Marmota.kt @@ -0,0 +1,16 @@ +package eu.kanade.tachiyomi.extension.es.marmota + +import eu.kanade.tachiyomi.multisrc.madara.Madara +import java.text.SimpleDateFormat +import java.util.Locale + +class Marmota : Madara( + "Marmota", + "https://marmota.me", + "es", + dateFormat = SimpleDateFormat("d 'de' MMM 'de' yyyy", Locale("es")), +) { + override val mangaSubString: String = "comic" + override val useNewChapterEndpoint = true + override val useLoadMoreRequest = LoadMoreStrategy.Never +}