Add Hikari Ga Nai (#2528)

This commit is contained in:
Vetle Ledaal 2024-04-23 08:03:14 +00:00 committed by Draff
parent 54e9a630e9
commit 7ec1b79d3c
7 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Hikari Ga Nai'
extClass = '.HikariGaNai'
themePkg = 'madara'
baseUrl = 'https://hikariganai.xyz'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 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: 51 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.pt.hikariganai
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class HikariGaNai : Madara(
"Hikari Ga Nai",
"https://hikariganai.xyz",
"pt-BR",
dateFormat = SimpleDateFormat("d 'de' MMMM 'de' yyyy", Locale("pt", "BR")),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = true
}