Initial commit
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 3.8 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.2 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 5.3 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 9.5 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
BIN
multisrc/overrides/mangathemesia/natsu/res/web_hi_res_512.png
Normal file
BIN
multisrc/overrides/mangathemesia/natsu/res/web_hi_res_512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 50 KiB |
20
multisrc/overrides/mangathemesia/natsu/src/Natsu.kt
Normal file
20
multisrc/overrides/mangathemesia/natsu/src/Natsu.kt
Normal file
@@ -0,0 +1,20 @@
|
||||
package eu.kanade.tachiyomi.extension.id.natsu
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
import okhttp3.OkHttpClient
|
||||
import org.jsoup.nodes.Document
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Locale
|
||||
|
||||
class Natsu : MangaThemesia("Natsu", "https://natsu.id", "id", dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("id"))) {
|
||||
|
||||
override val client: OkHttpClient = super.client.newBuilder()
|
||||
.rateLimit(4)
|
||||
.build()
|
||||
|
||||
// manga details
|
||||
override fun mangaDetailsParse(document: Document) = super.mangaDetailsParse(document).apply {
|
||||
title = document.selectFirst(seriesThumbnailSelector)!!.attr("title")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user