Add source MangaShiro (#19000)
This commit is contained in:
parent
de8508ef7f
commit
f758d12a10
Binary file not shown.
After Width: | Height: | Size: 4.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
Binary file not shown.
After Width: | Height: | Size: 6.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
Binary file not shown.
After Width: | Height: | Size: 123 KiB |
|
@ -0,0 +1,19 @@
|
|||
package eu.kanade.tachiyomi.extension.id.mangashiro
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
import okhttp3.OkHttpClient
|
||||
import java.util.concurrent.TimeUnit
|
||||
|
||||
class MangaShiro : MangaThemesia("MangaShiro", "https://mangashiro.me", "id") {
|
||||
|
||||
override val client: OkHttpClient = super.client.newBuilder()
|
||||
.rateLimit(20, 5, TimeUnit.SECONDS)
|
||||
.build()
|
||||
|
||||
override val hasProjectPage = true
|
||||
|
||||
override val projectPageString = "/project-manga"
|
||||
|
||||
override val seriesTitleSelector = ".ts-breadcrumb li:last-child span"
|
||||
}
|
|
@ -79,6 +79,7 @@ class MangaThemesiaGenerator : ThemeSourceGenerator {
|
|||
SingleLang("MangaKita", "https://mangakita.id", "id", overrideVersionCode = 2),
|
||||
SingleLang("Mangakyo", "https://mangakyo.org", "id", overrideVersionCode = 3),
|
||||
SingleLang("MangaShiina", "https://mangashiina.com", "es"),
|
||||
SingleLang("MangaShiro", "https://mangashiro.me", "id"),
|
||||
SingleLang("Mangasusu", "https://mangasusuku.xyz/", "id", isNsfw = true, overrideVersionCode = 2),
|
||||
SingleLang("MangaTale", "https://mangatale.co", "id", overrideVersionCode = 1),
|
||||
SingleLang("MangaWT", "https://mangawt.com", "tr", overrideVersionCode = 5),
|
||||
|
|
Loading…
Reference in New Issue