Add Marmota (#3340)

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

View File

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

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

View File

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