Add MoonDaisyScans (#2966)
This commit is contained in:
parent
3873976886
commit
58aec56373
|
@ -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 |
|
@ -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()
|
||||
}
|
Loading…
Reference in New Issue