Add RagnarScans (#6903)

This commit is contained in:
Chopper 2024-12-30 14:14:44 -03:00 committed by Draff
parent ecfa117f5d
commit 943b7992c8
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 26 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

View File

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