This commit is contained in:
Creepler13 2024-12-05 21:47:13 +01:00 committed by Draff
parent dc905e5f6d
commit b91a9c90af
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 23 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.es.zevep
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class Zevep : Madara(
"Zevep",
"https://zevep.com",
"es",
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("es")),
) {
override val useNewChapterEndpoint: Boolean = true
}