Remove Pewpiece (#3518)

This commit is contained in:
Chopper 2024-06-12 07:39:00 -03:00 committed by Draff
parent 770f7ba5a0
commit c322f75562
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 0 additions and 28 deletions

View File

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 37 KiB

View File

@ -1,18 +0,0 @@
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()
}
}