HouseMangas: Rebrand to "Visor Mangas" (#3418)

Rebrand
This commit is contained in:
bapeey 2024-06-05 07:23:16 -05:00 committed by GitHub
parent 43659aeaf6
commit fe5204de98
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 9 deletions

View File

@ -1,9 +1,9 @@
ext { ext {
extName = 'HouseMangas' extName = 'Visor Mangas'
extClass = '.HouseMangas' extClass = '.VisorMangas'
themePkg = 'madara' themePkg = 'madara'
baseUrl = 'https://housemangas.com' baseUrl = 'https://visormanga.xyz'
overrideVersionCode = 0 overrideVersionCode = 1
} }
apply from: "$rootDir/common.gradle" apply from: "$rootDir/common.gradle"

View File

@ -6,11 +6,11 @@ import java.text.SimpleDateFormat
import java.util.Locale import java.util.Locale
import java.util.concurrent.TimeUnit import java.util.concurrent.TimeUnit
class HouseMangas : Madara( class VisorMangas : Madara(
"HouseMangas", "Visor Mangas",
"https://housemangas.com", "https://visormanga.xyz",
"es", "es",
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("es")), dateFormat = SimpleDateFormat("dd 'de' MMMM 'de' yyyy", Locale("es")),
) { ) {
override val client = super.client.newBuilder() override val client = super.client.newBuilder()
.rateLimit(2, 1, TimeUnit.SECONDS) .rateLimit(2, 1, TimeUnit.SECONDS)
@ -19,5 +19,5 @@ class HouseMangas : Madara(
override val useNewChapterEndpoint = true override val useNewChapterEndpoint = true
override val useLoadMoreRequest = LoadMoreStrategy.Always override val useLoadMoreRequest = LoadMoreStrategy.Always
override val mangaDetailsSelectorStatus = "div.post-content_item:contains(Estado) > div.summary-content" override val popularMangaUrlSelector = "div.post-title a[href^=$baseUrl]"
} }