Add MangaStop (#9553)

This commit is contained in:
Chopper 2025-07-07 13:27:55 -03:00 committed by Draff
parent 3297983a49
commit dd8c469abf
Signed by: Draff
GPG Key ID: E8A89F3211677653
7 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Manga Stop'
extClass = '.MangaStop'
themePkg = 'mangathemesia'
baseUrl = 'https://mangastop.net'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,17 @@
package eu.kanade.tachiyomi.extension.pt.mangastop
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class MangaStop : MangaThemesia(
"Manga Stop",
"https://mangastop.net",
"pt-BR",
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("pt", "BR")),
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
}