Add MangaTrend (#3181)

This commit is contained in:
Chopper 2024-05-22 02:46:35 -03:00 committed by GitHub
parent 3f21005ebf
commit 03a3124c02
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Manga Trend'
extClass = '.MangaTrend'
themePkg = 'mangathemesia'
baseUrl = 'https://mangaatrend.net'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

View File

@ -0,0 +1,17 @@
package eu.kanade.tachiyomi.extension.ar.mangatrend
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class MangaTrend : MangaThemesia(
"Manga Trend",
"https://mangaatrend.net",
"ar",
dateFormat = SimpleDateFormat("MMMMM dd, yyyy", Locale("ar")),
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
}