Add Pewpiece (#2721)

This commit is contained in:
Vetle Ledaal 2024-05-02 00:55:54 +00:00 committed by Draff
parent e867689cc5
commit 4058612bca
7 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Pewpiece'
extClass = '.Pewpiece'
themePkg = 'madara'
baseUrl = 'https://pewpiece.com'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

View File

@ -0,0 +1,18 @@
package eu.kanade.tachiyomi.extension.ar.pewpiece
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.source.model.SChapter
import okhttp3.Response
class Pewpiece : Madara(
"Pewpiece",
"https://pewpiece.com",
"ar",
) {
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = true
override fun chapterListParse(response: Response): List<SChapter> {
return super.chapterListParse(response).reversed()
}
}