Add Komikuzan (#2787)

* Add Komikuzan

* dateFormat
This commit is contained in:
Vetle Ledaal 2024-05-05 12:27:13 +00:00 committed by Draff
parent d2a6999b3e
commit 8c2d6c3e3e
7 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Komikuzan'
extClass = '.Komikuzan'
themePkg = 'madara'
baseUrl = 'https://komikuzan.com'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.id.komikuzan
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class Komikuzan : Madara(
"Komikuzan",
"https://komikuzan.com",
"id",
dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("id")),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = true
}