Add manhwas.es (#6216)

* Add manhwas.es

* Add isNsfw

* suggested change

Co-authored-by: AwkwardPeak7 <48650614+AwkwardPeak7@users.noreply.github.com>

* remove rate limit

---------

Co-authored-by: AwkwardPeak7 <48650614+AwkwardPeak7@users.noreply.github.com>
Co-authored-by: Vetle Ledaal <vetle.ledaal@gmail.com>
This commit is contained in:
dngonz 2024-11-27 22:05:28 +01:00 committed by Draff
parent 0b29192c10
commit 5e34b3aaee
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Manhwas.es'
extClass = '.ManhwasEs'
themePkg = 'madara'
baseUrl = 'https://www.manhwas.es'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.es.manhwases
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class ManhwasEs : Madara(
"Manhwas.es",
"https://manhwas.es",
"es",
dateFormat = SimpleDateFormat("MMM dd, yy", Locale("es")),
) {
override val useNewChapterEndpoint = true
}