Add LuckyManga (#1988)
This commit is contained in:
parent
a0fa7fa458
commit
b4f5680364
10
src/es/luckymanga/build.gradle
Normal file
10
src/es/luckymanga/build.gradle
Normal file
@ -0,0 +1,10 @@
|
||||
ext {
|
||||
extName = 'Lucky Manga'
|
||||
extClass = '.LuckyManga'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://luckymanga.com'
|
||||
overrideVersionCode = 0
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
BIN
src/es/luckymanga/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/es/luckymanga/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.4 KiB |
BIN
src/es/luckymanga/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/es/luckymanga/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.0 KiB |
BIN
src/es/luckymanga/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/es/luckymanga/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.0 KiB |
BIN
src/es/luckymanga/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/es/luckymanga/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
BIN
src/es/luckymanga/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/es/luckymanga/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 23 KiB |
@ -0,0 +1,21 @@
|
||||
package eu.kanade.tachiyomi.extension.es.luckymanga
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
import okhttp3.OkHttpClient
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Locale
|
||||
|
||||
class LuckyManga : Madara(
|
||||
"Lucky Manga",
|
||||
"https://luckymanga.com",
|
||||
"es",
|
||||
SimpleDateFormat("d MMMM, yyyy", Locale("es")),
|
||||
) {
|
||||
override val useLoadMoreRequest = LoadMoreStrategy.Never
|
||||
override val useNewChapterEndpoint = true
|
||||
|
||||
override val client: OkHttpClient = super.client.newBuilder()
|
||||
.rateLimit(2)
|
||||
.build()
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user