Add Lich Mangas (#2644)

This commit is contained in:
Vetle Ledaal 2024-04-29 10:27:04 +00:00 committed by Draff
parent 5db5f710dd
commit 07c41e78fb
7 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Lich Mangas'
extClass = '.LichMangas'
themePkg = 'madara'
baseUrl = 'https://lichmangas.com'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.pt.lichmangas
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class LichMangas : Madara(
"Lich Mangas",
"https://lichmangas.com",
"pt-BR",
dateFormat = SimpleDateFormat("dd/MM/yyyy", Locale.ROOT),
) {
override val useNewChapterEndpoint = true
}