Add UchuujinProjects (#6742)

add UchuujinProjects
This commit is contained in:
bapeey 2024-12-22 00:26:58 -05:00 committed by Draff
parent 6a476ee786
commit a383626ae6
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 29 additions and 0 deletions

View File

@ -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

View File

@ -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
}