parent
6a476ee786
commit
a383626ae6
|
@ -0,0 +1,9 @@
|
|||
ext {
|
||||
extName = 'Uchuujin Projects'
|
||||
extClass = '.UchuujinProjects'
|
||||
themePkg = 'mangathemesia'
|
||||
baseUrl = 'https://uchuujinmangas.com'
|
||||
overrideVersionCode = 0
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 4.9 KiB |
Binary file not shown.
After Width: | Height: | Size: 2.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 6.9 KiB |
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
|
@ -0,0 +1,20 @@
|
|||
package eu.kanade.tachiyomi.extension.es.uchuujinprojects
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimitHost
|
||||
import okhttp3.HttpUrl.Companion.toHttpUrl
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Locale
|
||||
|
||||
class UchuujinProjects : MangaThemesia(
|
||||
"Uchuujin Projects",
|
||||
"https://uchuujinmangas.com",
|
||||
"es",
|
||||
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("es")),
|
||||
) {
|
||||
override val client = super.client.newBuilder()
|
||||
.rateLimitHost(baseUrl.toHttpUrl(), 3, 1)
|
||||
.build()
|
||||
|
||||
override val hasProjectPage = true
|
||||
}
|
Loading…
Reference in New Issue