MangaHere Update (#7690)

Updated the manga types and genre.
This commit is contained in:
Themis 2021-06-17 16:37:36 +03:00 committed by GitHub
parent 90d8b30e42
commit 29ae13ac7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 3 deletions

View File

@ -5,7 +5,7 @@ ext {
extName = 'Mangahere'
pkgNameSuffix = 'en.mangahere'
extClass = '.Mangahere'
extVersionCode = 15
extVersionCode = 16
libVersion = '1.2'
}

View File

@ -329,7 +329,11 @@ class Mangahere : ParsedHttpSource() {
private val types = hashMapOf(
"Japanese Manga" to 1,
"Korean Manhwa" to 2,
"Other Manga" to 4,
"Chinese Manhua" to 3,
"European Manga" to 4,
"American Manga" to 5,
"Hong Kong Manga" to 6,
"Other Manga" to 7,
"Any" to 0
)
@ -371,6 +375,7 @@ class Mangahere : ParsedHttpSource() {
Genre("Smut", 33),
Genre("Mecha", 34),
Genre("Shotacon", 35),
Genre("Lolicon", 36)
Genre("Lolicon", 36),
Genre("Webtoons", 37)
)
}