Add HianatoScan (#6901)

This commit is contained in:
Chopper 2024-12-30 12:42:09 -03:00 committed by Draff
parent 6c67e88e5b
commit 32f9674e70
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Hianato Scan'
extClass = '.HianatoScan'
themePkg = 'madara'
baseUrl = 'https://hianatoscan.top'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.pt.hianatoscan
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class HianatoScan : Madara(
"Hianato Scan",
"https://hianatoscan.top",
"pt-BR",
SimpleDateFormat("MMMM dd, yyyy", Locale("pt", "BR")),
) {
override val useNewChapterEndpoint = true
}