Add PlumaComics (#5705)
This commit is contained in:
parent
7ce559d436
commit
eb4a349e5e
|
@ -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 |
|
@ -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()
|
||||
}
|
Loading…
Reference in New Issue