Add AthenaManga (#2956)

This commit is contained in:
Chopper 2024-05-12 01:23:06 -03:00 committed by Draff
parent a9b5fbd2aa
commit caf462e781
7 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Athena Manga'
extClass = '.AthenaManga'
themePkg = 'mangathemesia'
baseUrl = 'https://athenamanga.com'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

View File

@ -0,0 +1,17 @@
package eu.kanade.tachiyomi.extension.tr.athenamanga
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class AthenaManga : MangaThemesia(
"Athena Manga",
"https://athenamanga.com",
"tr",
dateFormat = SimpleDateFormat("MMMM d, yyy", Locale("tr")),
) {
override val client = super.client.newBuilder()
.rateLimit(2)
.build()
}