Add ApeComics (#7083)

This commit is contained in:
dngonz 2025-01-09 15:37:21 +01:00 committed by Draff
parent e1c5cc473e
commit 690c553b6c
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 = 'ApeComics'
extClass = '.ApeComics'
themePkg = 'madara'
baseUrl = 'https://apecomics.net'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.pt.apecomics
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class ApeComics : Madara(
"ApeComics",
"https://apecomics.net",
"pt-BR",
SimpleDateFormat("MMMM dd, yyyy", Locale("pt", "BR")),
) {
override val useNewChapterEndpoint = true
}