Add DoujinZa (#2821)

* Add DoujinZa

* icon
This commit is contained in:
Vetle Ledaal 2024-05-04 17:40:36 +00:00 committed by Draff
parent 90b8740e32
commit 486914692d
7 changed files with 27 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

View File

@ -0,0 +1,17 @@
package eu.kanade.tachiyomi.extension.th.doujinza
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class DoujinZa : Madara(
"DoujinZa",
"https://doujinza.com",
"th",
dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("th")),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = false
override val mangaSubString = "doujin"
}