Add Marmota (#3340)
This commit is contained in:
parent
7348576150
commit
258578c413
|
@ -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 |
|
@ -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
|
||||
}
|
Loading…
Reference in New Issue