Add MangaHoNa (#2838)

This commit is contained in:
Vetle Ledaal 2024-05-05 12:28:03 +00:00 committed by Draff
parent 18ff934880
commit cc45142058
7 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'MangaHoNa'
extClass = '.MangaHoNa'
themePkg = 'madara'
baseUrl = 'https://mangahona.pl'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.pl.mangahona
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class MangaHoNa : Madara(
"MangaHoNa",
"https://mangahona.pl",
"pl",
dateFormat = SimpleDateFormat("yyyy-MM-dd", Locale.ROOT),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val useNewChapterEndpoint = true
}