Add MoonDaisyScans (#2966)

This commit is contained in:
Chopper 2024-05-12 01:26:24 -03:00 committed by Draff
parent 3873976886
commit 58aec56373
7 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Moon Daisy Scans'
extClass = '.MoonDaisyScans'
themePkg = 'mangathemesia'
baseUrl = 'https://moondaisyscans.biz'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 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,17 @@
package eu.kanade.tachiyomi.extension.tr.moondaisyscans
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import java.text.SimpleDateFormat
import java.util.Locale
class MoonDaisyScans : MangaThemesia(
"Moon Daisy Scans",
"https://moondaisyscans.biz",
"tr",
dateFormat = SimpleDateFormat("MMMM d, yyy", Locale("tr")),
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
}