Add XsScan (#6107)
This commit is contained in:
parent
bd97eb008b
commit
e875e266c5
9
src/pt/xsscan/build.gradle
Normal file
9
src/pt/xsscan/build.gradle
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
ext {
|
||||||
|
extName = 'Xs Scan'
|
||||||
|
extClass = '.XsScan'
|
||||||
|
themePkg = 'madara'
|
||||||
|
baseUrl = 'https://xsscan.xyz'
|
||||||
|
overrideVersionCode = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
BIN
src/pt/xsscan/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/pt/xsscan/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.9 KiB |
BIN
src/pt/xsscan/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/pt/xsscan/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.6 KiB |
BIN
src/pt/xsscan/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/pt/xsscan/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.9 KiB |
BIN
src/pt/xsscan/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/pt/xsscan/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
BIN
src/pt/xsscan/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/pt/xsscan/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
@ -0,0 +1,19 @@
|
|||||||
|
package eu.kanade.tachiyomi.extension.pt.xsscan
|
||||||
|
|
||||||
|
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||||
|
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||||
|
import java.text.SimpleDateFormat
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
class XsScan : Madara(
|
||||||
|
"Xs Scan",
|
||||||
|
"https://xsscan.xyz",
|
||||||
|
"pt-BR",
|
||||||
|
SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")),
|
||||||
|
) {
|
||||||
|
override val client = super.client.newBuilder()
|
||||||
|
.rateLimit(3)
|
||||||
|
.build()
|
||||||
|
|
||||||
|
override val useNewChapterEndpoint = true
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user