Add MangaMania (#6778)

* Add MangaMania

* Fix lint
This commit is contained in:
Chopper 2024-12-24 08:59:33 -03:00 committed by Draff
parent 9ead615784
commit c97115f9ba
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Mangá Mania'
extClass = '.MangaMania'
themePkg = 'madara'
baseUrl = 'https://mangamania.com.br'
overrideVersionCode = 0
isNsfw = true
}
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.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View File

@ -0,0 +1,16 @@
package eu.kanade.tachiyomi.extension.pt.mangamania
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class MangaMania : Madara(
"Mangá Mania",
"https://mangamania.com.br",
"pt-BR",
SimpleDateFormat("dd 'de' MMMMM 'de' yyyy", Locale("pt", "BR")),
) {
override val useNewChapterEndpoint = true
override val useLoadMoreRequest = LoadMoreStrategy.Never
}