Add Inventario Oculto (#8061)

add Inventario Oculto
This commit is contained in:
Creepler13 2025-03-14 14:00:00 +01:00 committed by Draff
parent c986f2924c
commit 4d5e44c2a6
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 = 'Inventario Oculto'
extClass = '.InventarioOculto'
themePkg = 'madara'
baseUrl = 'https://inventariooculto.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.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

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