mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-22 02:12:42 +01:00
revert linkstart
This commit is contained in:
parent
74463d6158
commit
8b54c22ba6
10
src/pt/linkstartscan/build.gradle
Normal file
10
src/pt/linkstartscan/build.gradle
Normal file
@ -0,0 +1,10 @@
|
||||
ext {
|
||||
extName = 'Link Start Scan'
|
||||
extClass = '.LinkStartScan'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://www.linkstartscan.xyz'
|
||||
overrideVersionCode = 0
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
BIN
src/pt/linkstartscan/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/pt/linkstartscan/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.5 KiB |
BIN
src/pt/linkstartscan/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/pt/linkstartscan/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
BIN
src/pt/linkstartscan/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/pt/linkstartscan/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.5 KiB |
BIN
src/pt/linkstartscan/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/pt/linkstartscan/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.5 KiB |
BIN
src/pt/linkstartscan/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/pt/linkstartscan/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 9.0 KiB |
@ -0,0 +1,22 @@
|
||||
package eu.kanade.tachiyomi.extension.pt.linkstartscan
|
||||
|
||||
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 LinkStartScan : Madara(
|
||||
"Link Start Scan",
|
||||
"https://www.linkstartscan.xyz",
|
||||
"pt-BR",
|
||||
SimpleDateFormat("dd/MM/yyyy", Locale("pt", "BR")),
|
||||
) {
|
||||
|
||||
override val client: OkHttpClient = super.client.newBuilder()
|
||||
.rateLimit(1, 2, TimeUnit.SECONDS)
|
||||
.build()
|
||||
|
||||
override val useNewChapterEndpoint = true
|
||||
}
|
Loading…
Reference in New Issue
Block a user