Add Marmota ()

This commit is contained in:
Chopper 2024-06-02 03:52:23 -03:00 committed by Draff
parent 7348576150
commit 258578c413
7 changed files with 25 additions and 0 deletions
src/es/marmota
build.gradle
res
mipmap-hdpi
mipmap-mdpi
mipmap-xhdpi
mipmap-xxhdpi
mipmap-xxxhdpi
src/eu/kanade/tachiyomi/extension/es/marmota

@ -0,0 +1,9 @@
ext {
extName = 'Marmota'
extClass = '.Marmota'
themePkg = 'madara'
baseUrl = 'https://marmota.me'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

(image error) Size: 8.0 KiB

Binary file not shown.

After

(image error) Size: 3.9 KiB

Binary file not shown.

After

(image error) Size: 13 KiB

Binary file not shown.

After

(image error) Size: 27 KiB

Binary file not shown.

After

(image error) Size: 44 KiB

@ -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
}