Add PointZeroToons (#8095)

This commit is contained in:
Chopper 2025-03-17 11:46:17 -03:00 committed by Draff
parent 456b3fff5e
commit 74edbbae7d
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Point Zero Toons'
extClass = '.PointZeroToons'
themePkg = 'mangathemesia'
baseUrl = 'https://pointzerotoons.com'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,23 @@
package eu.kanade.tachiyomi.extension.pt.pointzerotoons
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import eu.kanade.tachiyomi.source.model.SChapter
import okhttp3.Response
import java.text.SimpleDateFormat
import java.util.Locale
class PointZeroToons : MangaThemesia(
"Point Zero Toons",
"https://pointzerotoons.com",
"pt-BR",
dateFormat = SimpleDateFormat("MMMMM dd, yyyy", Locale("pt", "BR")),
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
override fun chapterListParse(response: Response): List<SChapter> {
return super.chapterListParse(response).reversed()
}
}