Hackstore improvements
|
@ -1,7 +1,7 @@
|
|||
ext {
|
||||
extName = 'Hackstore'
|
||||
extClass = '.Hackstore'
|
||||
extVersionCode = 12
|
||||
extVersionCode = 13
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
||||
|
|
Before Width: | Height: | Size: 5.9 KiB After Width: | Height: | Size: 5 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 8.9 KiB After Width: | Height: | Size: 7.8 KiB |
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 25 KiB |
|
@ -83,6 +83,27 @@ class Hackstore : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
|
|||
Pair("Peliculas", "peliculas"),
|
||||
Pair("Series", "series"),
|
||||
Pair("Animes", "animes"),
|
||||
Pair("Acción", "genero/accion"),
|
||||
Pair("Action & Adventure", "genero/action-adventure"),
|
||||
Pair("Animación", "genero/animacion"),
|
||||
Pair("Aventura", "genero/aventura"),
|
||||
Pair("Bélica", "genero/belica"),
|
||||
Pair("Ciencia ficción", "genero/ciencia-ficcion"),
|
||||
Pair("Comedia", "genero/comedia"),
|
||||
Pair("Crimen", "genero/crimen"),
|
||||
Pair("Documental", "genero/documental"),
|
||||
Pair("Drama", "genero/drama"),
|
||||
Pair("Familia", "genero/familia"),
|
||||
Pair("Fantasía", "genero/fantasia"),
|
||||
Pair("Historia", "genero/historia"),
|
||||
Pair("Misterio", "genero/misterio"),
|
||||
Pair("Música", "genero/musica"),
|
||||
Pair("Occidental", "genero/occidental"),
|
||||
Pair("Película de TV", "genero/pelicula-de-tv"),
|
||||
Pair("Romance", "genero/romance"),
|
||||
Pair("Suspense", "genero/suspense"),
|
||||
Pair("Suspenso", "genero/suspenso"),
|
||||
Pair("Terror", "genero/terror"),
|
||||
),
|
||||
)
|
||||
private open class UriPartFilter(displayName: String, val vals: Array<Pair<String, String>>) :
|
||||
|
|