Add Soft Epsilon Scan (#2266)
* Add Soft Epsilon Scan V2 * Add new chapter endpoint parameter
This commit is contained in:
parent
74d3bda48e
commit
8bbc841b7d
9
src/fr/softepsilonscan/build.gradle
Normal file
9
src/fr/softepsilonscan/build.gradle
Normal 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"
|
BIN
src/fr/softepsilonscan/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/fr/softepsilonscan/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.6 KiB |
BIN
src/fr/softepsilonscan/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/fr/softepsilonscan/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
BIN
src/fr/softepsilonscan/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/fr/softepsilonscan/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.7 KiB |
BIN
src/fr/softepsilonscan/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/fr/softepsilonscan/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.8 KiB |
BIN
src/fr/softepsilonscan/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/fr/softepsilonscan/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
21
src/fr/softepsilonscan/src/SoftEpsilonScan.kt
Normal file
21
src/fr/softepsilonscan/src/SoftEpsilonScan.kt
Normal 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
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user