Add PrunusScans (#4302)

This commit is contained in:
Chopper 2024-07-28 02:51:36 -03:00 committed by Draff
parent f0e17a6531
commit 40f2170702
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 = 'Prunus Scans'
extClass = '.PrunusScans'
themePkg = 'mangathemesia'
baseUrl = 'https://prunusscans.com'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.tr.prunusscans
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
class PrunusScans : MangaThemesia(
"Prunus Scans",
"https://prunusscans.com",
"tr",
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
}