Add PlumaComics (#5705)

This commit is contained in:
Chopper 2024-10-25 18:47:44 -03:00 committed by Draff
parent 7ce559d436
commit eb4a349e5e
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Pluma Comics'
extClass = '.PlumaComics'
themePkg = 'madara'
baseUrl = 'https://plumacomics.cloud'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

View File

@ -0,0 +1,18 @@
package eu.kanade.tachiyomi.extension.pt.plumacomics
import eu.kanade.tachiyomi.multisrc.madara.Madara
import okhttp3.Response
import java.text.SimpleDateFormat
import java.util.Locale
class PlumaComics : Madara(
"Pluma Comics",
"https://plumacomics.cloud",
"pt-BR",
SimpleDateFormat("dd 'de' MMM 'de' yyyy", Locale("pt", "BR")),
) {
override val useNewChapterEndpoint = true
override fun chapterListParse(response: Response) =
super.chapterListParse(response).reversed()
}