chore: Add 2024 to English Extensions (#3221)

Co-authored-by: Secozzi <49240133+Secozzi@users.noreply.github.com>
This commit is contained in:
kaoru2
2024-05-10 05:50:47 +08:00
committed by GitHub
parent 653a8c63be
commit 470f6f7ef7
42 changed files with 47 additions and 27 deletions

View File

@ -2,7 +2,7 @@ plugins {
id("lib-multisrc")
}
baseVersionCode = 19
baseVersionCode = 20
dependencies {
api(project(":lib:dood-extractor"))

View File

@ -95,6 +95,7 @@ object DopeFlixFilters {
val YEARS = arrayOf(
ALL,
Pair("2024", "2024"),
Pair("2023", "2023"),
Pair("2022", "2022"),
Pair("2021", "2021"),

View File

@ -2,7 +2,7 @@ plugins {
id("lib-multisrc")
}
baseVersionCode = 2
baseVersionCode = 3
dependencies {
api(project(":lib:megacloud-extractor"))

View File

@ -183,7 +183,7 @@ object ZoroThemeFilters {
Pair("Most Watched", "most_watched"),
)
val YEARS = arrayOf(ALL) + (1917..2023).map {
val YEARS = arrayOf(ALL) + (1917..2024).map {
Pair(it.toString(), it.toString())
}.reversed().toTypedArray()