Add Manhua Español (#3188)

* Add Manhua Español

* Adjust Date Format & useNewChapterEndpoint

* Removed accent mark in extension name

* Re-dd accent mark back into source name
This commit is contained in:
Smol Ame 2024-05-21 23:07:59 -07:00 committed by GitHub
parent c7973ccb3a
commit 2817912c47
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Manhua Espanol'
extClass = '.ManhuaEspanol'
themePkg = 'madara'
baseUrl = 'https://manhuaespanol.com'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.es.manhuaespanol
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class ManhuaEspanol : Madara(
"Manhua Español",
"https://manhuaespanol.com",
"es",
dateFormat = SimpleDateFormat("dd/MM/yyyy", Locale("es")),
) {
override val useNewChapterEndpoint = true
}