mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-22 02:12:42 +01:00
Add MoonWitchScan (#6009)
This commit is contained in:
parent
6ba9dab66a
commit
03b488d384
9
src/pt/moonwitchscan/build.gradle
Normal file
9
src/pt/moonwitchscan/build.gradle
Normal file
@ -0,0 +1,9 @@
|
||||
ext {
|
||||
extName = 'Moon Witch Scan'
|
||||
extClass = '.MoonWitchScan'
|
||||
themePkg = 'madara'
|
||||
baseUrl = 'https://moonwitchscan.com.br'
|
||||
overrideVersionCode = 0
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
BIN
src/pt/moonwitchscan/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/pt/moonwitchscan/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.7 KiB |
BIN
src/pt/moonwitchscan/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/pt/moonwitchscan/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.3 KiB |
BIN
src/pt/moonwitchscan/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/pt/moonwitchscan/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
BIN
src/pt/moonwitchscan/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/pt/moonwitchscan/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 23 KiB |
BIN
src/pt/moonwitchscan/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/pt/moonwitchscan/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 39 KiB |
@ -0,0 +1,21 @@
|
||||
package eu.kanade.tachiyomi.extension.pt.moonwitchscan
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Locale
|
||||
|
||||
class MoonWitchScan : Madara(
|
||||
"Moon Witch Scan",
|
||||
"https://moonwitchscan.com.br",
|
||||
"pt-BR",
|
||||
SimpleDateFormat("dd 'de' MMM 'de' yyyy", Locale("pt", "BR")),
|
||||
) {
|
||||
override val client = super.client.newBuilder()
|
||||
.rateLimit(3)
|
||||
.build()
|
||||
|
||||
override val useLoadMoreRequest = LoadMoreStrategy.Never
|
||||
|
||||
override val useNewChapterEndpoint = true
|
||||
}
|
Loading…
Reference in New Issue
Block a user