MiauScan: Update domain (#1386)

This commit is contained in:
Rolando Lecca 2024-02-19 09:18:06 -05:00 committed by Draff
parent b874f0d1c3
commit c9633f3d0c
2 changed files with 6 additions and 3 deletions

View File

@ -2,8 +2,8 @@ ext {
extName = 'Miau Scan' extName = 'Miau Scan'
extClass = '.MiauScanFactory' extClass = '.MiauScanFactory'
themePkg = 'mangathemesia' themePkg = 'mangathemesia'
baseUrl = 'https://miaucomics.org' baseUrl = 'https://miauvisor.org'
overrideVersionCode = 2 overrideVersionCode = 3
} }
apply from: "$rootDir/common.gradle" apply from: "$rootDir/common.gradle"

View File

@ -20,7 +20,7 @@ class MiauScanFactory : SourceFactory {
open class MiauScan(lang: String) : MangaThemesia( open class MiauScan(lang: String) : MangaThemesia(
name = "Miau Scan", name = "Miau Scan",
baseUrl = "https://miaucomics.org", baseUrl = "https://miauvisor.org",
lang = lang, lang = lang,
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("es")), dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("es")),
) { ) {
@ -58,6 +58,9 @@ open class MiauScan(lang: String) : MangaThemesia(
} }
} }
override val seriesAuthorSelector = ".tsinfo .imptdt:contains(autor) i"
override val seriesStatusSelector = ".tsinfo .imptdt:contains(estado) i"
override fun mangaDetailsParse(document: Document): SManga { override fun mangaDetailsParse(document: Document): SManga {
return super.mangaDetailsParse(document).apply { return super.mangaDetailsParse(document).apply {
title = title.replace(PORTUGUESE_SUFFIX, "") title = title.replace(PORTUGUESE_SUFFIX, "")