Add Mundo Manhwa (#2845)

This commit is contained in:
Vetle Ledaal 2024-05-05 12:45:41 +00:00 committed by Draff
parent c84a1acd0b
commit b531e1fc39
7 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Mundo Manhwa'
extClass = '.MundoManhwa'
themePkg = 'madara'
baseUrl = 'https://mundomanhwa.com'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.es.mundomanhwa
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class MundoManhwa : Madara(
"Mundo Manhwa",
"https://mundomanhwa.com",
"es",
dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("es")),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = false
}