Add AsemiFansub (#3507)

This commit is contained in:
Chopper 2024-06-10 09:58:28 -03:00 committed by Draff
parent a75d6f4670
commit 29624cca71
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Asemi Fansub'
extClass = '.AsemiFansub'
themePkg = 'mangathemesia'
baseUrl = 'https://asemifansub.com'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -0,0 +1,17 @@
package eu.kanade.tachiyomi.extension.tr.asemifansub
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class AsemiFansub : MangaThemesia(
"Asemi Fansub",
"https://asemifansub.com",
"tr",
dateFormat = SimpleDateFormat("MMM d, yyyy", Locale("tr")),
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
}