Add LumosKomik (#4395)

* Add LumosKomik

* update useLoadMoreRequest/useNEwChapterEndpoint
This commit is contained in:
Vetle Ledaal 2024-08-04 12:48:08 +02:00 committed by Draff
parent 4dac2439f8
commit aece7b3d39
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 28 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

View File

@ -0,0 +1,18 @@
package eu.kanade.tachiyomi.extension.id.lumoskomik
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class LumosKomik : Madara(
"LumosKomik",
"https://lumoskomik.com",
"id",
dateFormat = SimpleDateFormat("dd MMMM yyyy", Locale("en")),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val useNewChapterEndpoint = true
override val mangaDetailsSelectorStatus = "div.summary-heading:contains(Status) + div.summary-content"
override val mangaSubString = "komik"
}