Add LerMangas (#2068)
This commit is contained in:
parent
d2fec71228
commit
217846f693
10
src/pt/lermangas/build.gradle
Normal file
10
src/pt/lermangas/build.gradle
Normal file
@ -0,0 +1,10 @@
|
||||
ext {
|
||||
extName = 'Ler Mangas'
|
||||
extClass = '.LerMangas'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://lermangas.me'
|
||||
overrideVersionCode = 0
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
BIN
src/pt/lermangas/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/pt/lermangas/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.0 KiB |
BIN
src/pt/lermangas/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/pt/lermangas/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.2 KiB |
BIN
src/pt/lermangas/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/pt/lermangas/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.5 KiB |
BIN
src/pt/lermangas/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/pt/lermangas/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.9 KiB |
BIN
src/pt/lermangas/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/pt/lermangas/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
@ -0,0 +1,19 @@
|
||||
package eu.kanade.tachiyomi.extension.pt.lermangas
|
||||
|
||||
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
|
||||
import java.util.concurrent.TimeUnit
|
||||
|
||||
class LerMangas : Madara(
|
||||
"Ler Mangas",
|
||||
"https://lermangas.me",
|
||||
"pt-BR",
|
||||
SimpleDateFormat("dd 'de' MMMMM 'de' yyyy", Locale("pt", "BR")),
|
||||
) {
|
||||
override val client: OkHttpClient = super.client.newBuilder()
|
||||
.rateLimit(1, 2, TimeUnit.SECONDS)
|
||||
.build()
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user