Add Doujin-Lc (#2780)

This commit is contained in:
Vetle Ledaal 2024-05-03 10:35:12 +00:00 committed by Draff
parent 2f91187312
commit 7cd7706644
7 changed files with 30 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

View File

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