Add PointZeroToons ()

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
src/pt/pointzerotoons
build.gradle
res
mipmap-hdpi
mipmap-mdpi
mipmap-xhdpi
mipmap-xxhdpi
mipmap-xxxhdpi
src/eu/kanade/tachiyomi/extension/pt/pointzerotoons

@ -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

(image error) Size: 3.8 KiB

Binary file not shown.

After

(image error) Size: 2.1 KiB

Binary file not shown.

After

(image error) Size: 5.4 KiB

Binary file not shown.

After

(image error) Size: 10 KiB

Binary file not shown.

After

(image error) Size: 15 KiB

@ -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()
}
}