Add Asura Scans TR (#3909)

This commit is contained in:
Vetle Ledaal 2024-07-10 14:14:12 +02:00 committed by Draff
parent 7ae20d9e2e
commit 9bfc114777
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 27 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View File

@ -0,0 +1,17 @@
package eu.kanade.tachiyomi.extension.tr.asurascanstr
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class AsuraScansTR : Madara(
"Asura Scans TR",
"https://asurascans.com.tr",
"tr",
dateFormat = SimpleDateFormat("d MMMM yyyy", Locale("tr")),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = false
override val altNameSelector = ".post-content_item:contains(Diğer Adlar) .summary-content"
}