Add AthenaManga (#2956)
This commit is contained in:
parent
a9b5fbd2aa
commit
caf462e781
|
@ -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 |
|
@ -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()
|
||||
}
|
Loading…
Reference in New Issue