Add Manga-Lc (#2779)

This commit is contained in:
Vetle Ledaal 2024-05-03 10:34:46 +00:00 committed by Draff
parent b50abc61c6
commit 2f91187312
7 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Manga-Lc'
extClass = '.MangaLc'
themePkg = 'madara'
baseUrl = 'https://manga-lc.net'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

View File

@ -0,0 +1,19 @@
package eu.kanade.tachiyomi.extension.th.mangalc
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class MangaLc : Madara(
"Manga-Lc",
"https://manga-lc.net",
"th",
dateFormat = SimpleDateFormat("d MMMM yyyy", Locale("th")),
) {
override val pageListParseSelector = ".reading-content img"
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = false
override val filterNonMangaItems = false
}