diff --git a/src/id/westmanga/build.gradle b/src/id/westmanga/build.gradle index 16066c0c0..c26c14ccd 100644 --- a/src/id/westmanga/build.gradle +++ b/src/id/westmanga/build.gradle @@ -1,7 +1,7 @@ ext { extName = 'West Manga' extClass = '.WestManga' - extVersionCode = 36 + extVersionCode = 37 isNsfw = true } diff --git a/src/id/westmanga/src/eu/kanade/tachiyomi/extension/id/westmanga/Filters.kt b/src/id/westmanga/src/eu/kanade/tachiyomi/extension/id/westmanga/Filters.kt index 1d38b3bdb..e477c5938 100644 --- a/src/id/westmanga/src/eu/kanade/tachiyomi/extension/id/westmanga/Filters.kt +++ b/src/id/westmanga/src/eu/kanade/tachiyomi/extension/id/westmanga/Filters.kt @@ -79,12 +79,12 @@ class StatusFilter : SelectFilter( ) class CountryFilter : SelectFilter( - name = "Country", + name = "Country / Type", options = listOf( "All" to "All", - "Japan" to "JP", - "China" to "CN", - "Korea" to "KR", + "Japan / Manga" to "JP", + "China / Manhua" to "CN", + "Korea / Manhwa" to "KR", ), queryParameterName = "country", ) @@ -128,6 +128,67 @@ class GenreFilter : CheckBoxGroup( "Harem" to "17", "Historical" to "44", "Horror" to "211", + "Isekai" to "20", + "Isekai Action" to "742", + "Josei" to "164", + "Long Strip" to "5917", + "Magic" to "65", + "Magical Girls" to "1527", + "Manga" to "268", + "Manhua" to "32", + "Martial Art" to "754", + "Martial arts" to "8", + "Mature" to "46", + "Mecha" to "22", + "Medical" to "704", + "Military" to "1576", + "mons" to "2994", + "Monster" to "1744", + "Monster girls" to "1714", + "Monsters" to "91", + "Music" to "457", + "Mystery" to "30", + "Ninja" to "2956", + "Novel" to "5002", + "Office Workers" to "1501", + "Oneshot" to "405", + "Philosophical" to "2894", + "Police" to "2148", + "Project" to "313", + "Psychological" to "23", + "Regression" to "5476", + "Reincarnation" to "57", + "Reverse Harem" to "1532", + "Romance" to "15", + "School" to "102", + "School life" to "9", + "Sci fi" to "33", + "Seinen" to "18", + "SeinenAction" to "1525", + "Shotacon" to "1070", + "Shoujo" to "110", + "Shoujo Ai" to "113", + "Shounen" to "10", + "Si-fi" to "776", + "Slice of Life" to "11", + "Smut" to "586", + "Sports" to "103", + "Super Power" to "274", + "Supernatural" to "34", + "Survival" to "2794", + "Suspense" to "181", + "System" to "3088", + "Thriller" to "170", + "Time Travel" to "1592", + "Tragedy" to "92", + "Urban" to "1050", + "Vampire" to "160", + "Video Games" to "1093", + "Villainess" to "2831", + "Virtual Reality" to "2490", + "Webtoons" to "486", + "Yuri" to "357", + "Zombies" to "377", ), queryParameterName = "genre[]", )