LumosKomik: update domain, fix description (#5607)

Closes #5429
This commit is contained in:
Luqman 2024-10-20 19:31:56 +07:00 committed by Draff
parent 1376e3e5dd
commit dc66595ecd
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
2 changed files with 4 additions and 3 deletions

View File

@ -2,8 +2,8 @@ ext {
extName = 'LumosKomik' extName = 'LumosKomik'
extClass = '.LumosKomik' extClass = '.LumosKomik'
themePkg = 'madara' themePkg = 'madara'
baseUrl = 'https://lumoskomik.com' baseUrl = 'https://lumos01.com'
overrideVersionCode = 0 overrideVersionCode = 1
isNsfw = false isNsfw = false
} }

View File

@ -6,7 +6,7 @@ import java.util.Locale
class LumosKomik : Madara( class LumosKomik : Madara(
"LumosKomik", "LumosKomik",
"https://lumoskomik.com", "https://lumos01.com",
"id", "id",
dateFormat = SimpleDateFormat("dd MMMM yyyy", Locale("en")), dateFormat = SimpleDateFormat("dd MMMM yyyy", Locale("en")),
) { ) {
@ -14,5 +14,6 @@ class LumosKomik : Madara(
override val useNewChapterEndpoint = true override val useNewChapterEndpoint = true
override val mangaDetailsSelectorStatus = "div.summary-heading:contains(Status) + div.summary-content" override val mangaDetailsSelectorStatus = "div.summary-heading:contains(Status) + div.summary-content"
override val mangaDetailsSelectorDescription = "#tab-manga-summary"
override val mangaSubString = "komik" override val mangaSubString = "komik"
} }