Add ManhuaTop (#2817)

This commit is contained in:
Vetle Ledaal 2024-05-04 17:37:17 +00:00 committed by Draff
parent 38cf9505d2
commit 91ed215f0b
7 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'ManhuaTop'
extClass = '.ManhuaTop'
themePkg = 'madara'
baseUrl = 'https://manhuatop.org'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

View File

@ -0,0 +1,18 @@
package eu.kanade.tachiyomi.extension.en.manhuatop
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class ManhuaTop : Madara(
"ManhuaTop",
"https://manhuatop.org",
"en",
dateFormat = SimpleDateFormat("MM/dd/yyyy", Locale.ROOT),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = false
override val mangaSubString = "manhua"
override val filterNonMangaItems = false
}