Add MysticMoon (#7169)

This commit is contained in:
Hellkaros 2025-01-15 09:49:16 -03:00 committed by Draff
parent 7ae3695832
commit 87c6e30551
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Mystic Moon'
extClass = '.MysticMoon'
themePkg = 'madara'
baseUrl = 'https://mysticmoon.lat'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.pt.mysticmoon
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class MysticMoon : Madara(
"Mystic Moon",
"https://mysticmoon.lat",
"pt-BR",
SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")),
) {
override val useNewChapterEndpoint: Boolean = true
}