diff --git a/src/pt/pointzerotoons/build.gradle b/src/pt/pointzerotoons/build.gradle new file mode 100644 index 000000000..6c1f33c5d --- /dev/null +++ b/src/pt/pointzerotoons/build.gradle @@ -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" diff --git a/src/pt/pointzerotoons/res/mipmap-hdpi/ic_launcher.png b/src/pt/pointzerotoons/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000..77e51ea35 Binary files /dev/null and b/src/pt/pointzerotoons/res/mipmap-hdpi/ic_launcher.png differ diff --git a/src/pt/pointzerotoons/res/mipmap-mdpi/ic_launcher.png b/src/pt/pointzerotoons/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000..82d054eca Binary files /dev/null and b/src/pt/pointzerotoons/res/mipmap-mdpi/ic_launcher.png differ diff --git a/src/pt/pointzerotoons/res/mipmap-xhdpi/ic_launcher.png b/src/pt/pointzerotoons/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000..0cbe6f616 Binary files /dev/null and b/src/pt/pointzerotoons/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/src/pt/pointzerotoons/res/mipmap-xxhdpi/ic_launcher.png b/src/pt/pointzerotoons/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000..20440704b Binary files /dev/null and b/src/pt/pointzerotoons/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/src/pt/pointzerotoons/res/mipmap-xxxhdpi/ic_launcher.png b/src/pt/pointzerotoons/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 000000000..565b49d4b Binary files /dev/null and b/src/pt/pointzerotoons/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/src/pt/pointzerotoons/src/eu/kanade/tachiyomi/extension/pt/pointzerotoons/PointZeroToons.kt b/src/pt/pointzerotoons/src/eu/kanade/tachiyomi/extension/pt/pointzerotoons/PointZeroToons.kt new file mode 100644 index 000000000..562466a2c --- /dev/null +++ b/src/pt/pointzerotoons/src/eu/kanade/tachiyomi/extension/pt/pointzerotoons/PointZeroToons.kt @@ -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 { + return super.chapterListParse(response).reversed() + } +}