Add Stick Horse (#2823)

This commit is contained in:
Vetle Ledaal 2024-05-04 17:41:16 +00:00 committed by GitHub
parent 1bca91a5d5
commit b01fcbd888
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Stick Horse'
extClass = '.StickHorse'
themePkg = 'madara'
baseUrl = 'https://stickhorse.cl'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.es.stickhorse
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class StickHorse : Madara(
"Stick Horse",
"https://stickhorse.cl",
"es",
dateFormat = SimpleDateFormat("MMMM d, yyyy", Locale("es")),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Always
override val useNewChapterEndpoint = false
}