Add LittleTyrant (#8746)

This commit is contained in:
Chopper 2025-05-07 12:27:26 -03:00 committed by Draff
parent 7d55595507
commit 0d16a6ca77
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 = 'Little Tyrant'
extClass = '.LittleTyrant'
themePkg = 'madara'
baseUrl = 'https://www.tiraninha.baby'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,23 @@
package eu.kanade.tachiyomi.extension.pt.littletyrant
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class LittleTyrant : Madara(
"Little Tyrant",
"https://www.tiraninha.baby",
"pt-BR",
dateFormat = SimpleDateFormat("MMM dd, yyyy", Locale("pt", "BR")),
) {
override val client = super.client.newBuilder()
.rateLimit(2)
.build()
override val useNewChapterEndpoint = true
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val mangaDetailsSelectorDescription = "div.manga-summary"
}