Add LunarScan (#1463)

This commit is contained in:
Chopper 2024-02-22 15:53:56 -03:00 committed by Draff
parent 086475a12e
commit 0624b1aa3e
7 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Lunar Scan'
extClass = '.LunarScan'
themePkg = 'madara'
baseUrl = 'https://lunarscan.com.br'
overrideVersionCode = 1
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.pt.lunarscan
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class LunarScan : Madara(
"Lunar Scan",
"https://lunarscan.com.br",
"pt-BR",
SimpleDateFormat("MMMMM dd, yyyy", Locale("pt", "BR")),
) {
override val mangaSubString = "obra"
}