mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-25 11:42:47 +01:00
Add YaoiManga (#5585)
This commit is contained in:
parent
d154edb342
commit
de80805000
10
src/es/yaoimanga/build.gradle
Normal file
10
src/es/yaoimanga/build.gradle
Normal file
@ -0,0 +1,10 @@
|
||||
ext {
|
||||
extName = 'Yaoi Manga'
|
||||
extClass = '.YaoiManga'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://yaoimanga.es'
|
||||
overrideVersionCode = 0
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
BIN
src/es/yaoimanga/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/es/yaoimanga/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
BIN
src/es/yaoimanga/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/es/yaoimanga/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.0 KiB |
BIN
src/es/yaoimanga/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/es/yaoimanga/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
BIN
src/es/yaoimanga/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/es/yaoimanga/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 37 KiB |
BIN
src/es/yaoimanga/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/es/yaoimanga/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 61 KiB |
@ -0,0 +1,20 @@
|
||||
package eu.kanade.tachiyomi.extension.es.yaoimanga
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
import okhttp3.OkHttpClient
|
||||
|
||||
class YaoiManga : Madara(
|
||||
"Yaoi Manga",
|
||||
"https://yaoimanga.es",
|
||||
"es",
|
||||
) {
|
||||
|
||||
override val client: OkHttpClient = super.client.newBuilder()
|
||||
.rateLimit(3)
|
||||
.build()
|
||||
|
||||
override val useNewChapterEndpoint = true
|
||||
|
||||
override val useLoadMoreRequest = LoadMoreStrategy.Never
|
||||
}
|
Loading…
Reference in New Issue
Block a user