Add LeitorDeManga (#2280)
* Add LeitorDeManga * Add icons * Remove isNfsw * Fix extension name * Replace icons * Add custom path
This commit is contained in:
parent
1b722d308d
commit
8a2a65ac53
|
@ -0,0 +1,9 @@
|
|||
ext {
|
||||
extName = 'Leitor de Mangá'
|
||||
extClass = '.LeitorDeManga'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://leitordemanga.com'
|
||||
overrideVersionCode = 0
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
Binary file not shown.
After Width: | Height: | Size: 2.7 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.6 KiB |
Binary file not shown.
After Width: | Height: | Size: 6.4 KiB |
Binary file not shown.
After Width: | Height: | Size: 9.1 KiB |
|
@ -0,0 +1,21 @@
|
|||
package eu.kanade.tachiyomi.extension.pt.leitordemanga
|
||||
|
||||
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 LeitorDeManga : Madara(
|
||||
"Leitor de Mangá",
|
||||
"https://leitordemanga.com",
|
||||
"pt-BR",
|
||||
SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")),
|
||||
) {
|
||||
override val mangaSubString = "ler-manga"
|
||||
|
||||
override val client: OkHttpClient = super.client.newBuilder()
|
||||
.rateLimit(1, 2, TimeUnit.SECONDS)
|
||||
.build()
|
||||
}
|
Loading…
Reference in New Issue