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 {
extName = 'HouseMangas'
extClass = '.HouseMangas'
extName = 'Visor Mangas'
extClass = '.VisorMangas'
themePkg = 'madara'
baseUrl = 'https://housemangas.com'
overrideVersionCode = 0
baseUrl = 'https://visormanga.xyz'
overrideVersionCode = 1
}
apply from: "$rootDir/common.gradle"

View File

@ -6,11 +6,11 @@ import java.text.SimpleDateFormat
import java.util.Locale
import java.util.concurrent.TimeUnit
class HouseMangas : Madara(
"HouseMangas",
"https://housemangas.com",
class VisorMangas : Madara(
"Visor Mangas",
"https://visormanga.xyz",
"es",
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("es")),
dateFormat = SimpleDateFormat("dd 'de' MMMM 'de' yyyy", Locale("es")),
) {
override val client = super.client.newBuilder()
.rateLimit(2, 1, TimeUnit.SECONDS)
@ -19,5 +19,5 @@ class HouseMangas : Madara(
override val useNewChapterEndpoint = true
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]"
}