Add UkiyoToon (#3639)
This commit is contained in:
parent
d83d23685f
commit
eab9ce09d2
10
src/es/ukiyotoon/build.gradle
Normal file
10
src/es/ukiyotoon/build.gradle
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
ext {
|
||||||
|
extName = 'Ukiyo Toon'
|
||||||
|
extClass = '.UkiyoToon'
|
||||||
|
themePkg = 'mangathemesia'
|
||||||
|
baseUrl = 'https://ukiyotoon.com'
|
||||||
|
overrideVersionCode = 0
|
||||||
|
isNsfw = false
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
BIN
src/es/ukiyotoon/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/es/ukiyotoon/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.6 KiB |
BIN
src/es/ukiyotoon/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/es/ukiyotoon/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.5 KiB |
BIN
src/es/ukiyotoon/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/es/ukiyotoon/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.5 KiB |
BIN
src/es/ukiyotoon/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/es/ukiyotoon/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 17 KiB |
BIN
src/es/ukiyotoon/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/es/ukiyotoon/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 25 KiB |
@ -0,0 +1,18 @@
|
|||||||
|
package eu.kanade.tachiyomi.extension.es.ukiyotoon
|
||||||
|
|
||||||
|
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 UkiyoToon : MangaThemesia(
|
||||||
|
"Ukiyo Toon",
|
||||||
|
"https://ukiyotoon.com",
|
||||||
|
"es",
|
||||||
|
dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("es")),
|
||||||
|
) {
|
||||||
|
override val client = super.client.newBuilder()
|
||||||
|
.rateLimitHost(baseUrl.toHttpUrl(), 3, 1)
|
||||||
|
.build()
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user