Add Soft Epsilon Scan (#2266)

* Add Soft Epsilon Scan V2

* Add new chapter endpoint parameter
This commit is contained in:
KirinRaikage 2024-04-05 14:07:59 +02:00 committed by Draff
parent 74d3bda48e
commit 8bbc841b7d
7 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'Soft Epsilon Scan'
extClass = '.SoftEpsilonScan'
themePkg = 'madara'
baseUrl = 'https://soft.epsilonscan.fr'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -0,0 +1,21 @@
package eu.kanade.tachiyomi.extension.fr.softepsilonscan
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient
import java.text.SimpleDateFormat
import java.util.Locale
import java.util.concurrent.TimeUnit
class SoftEpsilonScan : Madara(
"Soft Epsilon Scan",
"https://soft.epsilonscan.fr",
"fr",
SimpleDateFormat("dd/MM/yy", Locale.FRENCH),
) {
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(2, 1, TimeUnit.SECONDS)
.build()
override val useNewChapterEndpoint = true
}