parent
df3319f128
commit
8c230e25c3
10
src/pt/mangalivreto/build.gradle
Normal file
10
src/pt/mangalivreto/build.gradle
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
ext {
|
||||||
|
extName = 'Manga Livre.to'
|
||||||
|
extClass = '.MangaLivreTo'
|
||||||
|
themePkg = 'madara'
|
||||||
|
baseUrl = 'https://mangalivre.to'
|
||||||
|
overrideVersionCode = 1
|
||||||
|
isNsfw = true
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
||||||
BIN
src/pt/mangalivreto/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/pt/mangalivreto/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3.6 KiB |
BIN
src/pt/mangalivreto/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/pt/mangalivreto/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.0 KiB |
BIN
src/pt/mangalivreto/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/pt/mangalivreto/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.1 KiB |
BIN
src/pt/mangalivreto/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/pt/mangalivreto/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 10 KiB |
BIN
src/pt/mangalivreto/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/pt/mangalivreto/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
@ -0,0 +1,21 @@
|
|||||||
|
package eu.kanade.tachiyomi.extension.pt.mangalivreto
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||||
|
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
class MangaLivreTo : Madara(
|
||||||
|
"Manga Livre.to",
|
||||||
|
"https://mangalivre.to",
|
||||||
|
"pt-BR",
|
||||||
|
SimpleDateFormat("dd 'de' MMMM 'de' yyyy", Locale("pt")),
|
||||||
|
) {
|
||||||
|
override val client = super.client.newBuilder()
|
||||||
|
.rateLimit(2)
|
||||||
|
.build()
|
||||||
|
|
||||||
|
override fun chapterListSelector() = ".listing-chapters-wrap .chapter-box"
|
||||||
|
|
||||||
|
override fun chapterDateSelector() = ".chapter-date"
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user