HentaiRead: Add Western category support (#10620)

* HentaiRead: Bump versionCode

* HentaiRead: Add `Western` category
This commit is contained in:
Smol Ame 2025-09-18 22:54:47 -08:00 committed by Draff
parent 49fd5387e9
commit 2580c2392d
Signed by: Draff
GPG Key ID: E8A89F3211677653
2 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,7 @@ ext {
extClass = '.Hentairead'
themePkg = 'madara'
baseUrl = 'https://hentairead.com'
overrideVersionCode = 9
overrideVersionCode = 10
isNsfw = true
}

View File

@ -41,6 +41,7 @@ internal class TypeFilter(name: String) :
"Doujinshi" to "4",
"Manga" to "52",
"Artist CG" to "4798",
"Western" to "36278",
).map { CheckBoxFilter(it.first, it.second, true) },
)
internal open class CheckBoxFilter(name: String, val value: String, state: Boolean) : Filter.CheckBox(name, state)