mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-22 10:22:47 +01:00
Add AstraScans (#4298)
This commit is contained in:
parent
8945bcf4c4
commit
67f1c02605
9
src/en/astrascans/build.gradle
Normal file
9
src/en/astrascans/build.gradle
Normal file
@ -0,0 +1,9 @@
|
||||
ext {
|
||||
extName = 'Astra Scans'
|
||||
extClass = '.AstraScans'
|
||||
themePkg = 'mangathemesia'
|
||||
baseUrl = 'https://astrascans.org'
|
||||
overrideVersionCode = 0
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
BIN
src/en/astrascans/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/en/astrascans/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.7 KiB |
BIN
src/en/astrascans/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/en/astrascans/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.0 KiB |
BIN
src/en/astrascans/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/en/astrascans/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.2 KiB |
BIN
src/en/astrascans/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/en/astrascans/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
BIN
src/en/astrascans/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/en/astrascans/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 23 KiB |
@ -0,0 +1,15 @@
|
||||
package eu.kanade.tachiyomi.extension.en.astrascans
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||
import eu.kanade.tachiyomi.network.interceptor.rateLimit
|
||||
|
||||
class AstraScans : MangaThemesia(
|
||||
"Astra Scans",
|
||||
"https://astrascans.org",
|
||||
"en",
|
||||
"/series",
|
||||
) {
|
||||
override val client = super.client.newBuilder()
|
||||
.rateLimit(3)
|
||||
.build()
|
||||
}
|
Loading…
Reference in New Issue
Block a user