Add PointZeroToons (#8095)
This commit is contained in:
parent
456b3fff5e
commit
74edbbae7d
10
src/pt/pointzerotoons/build.gradle
Normal file
10
src/pt/pointzerotoons/build.gradle
Normal 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"
|
BIN
src/pt/pointzerotoons/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/pt/pointzerotoons/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.8 KiB |
BIN
src/pt/pointzerotoons/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/pt/pointzerotoons/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.1 KiB |
BIN
src/pt/pointzerotoons/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/pt/pointzerotoons/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.4 KiB |
BIN
src/pt/pointzerotoons/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/pt/pointzerotoons/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
BIN
src/pt/pointzerotoons/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/pt/pointzerotoons/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | 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()
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user