Skip to content

Commit

Permalink
Merge branch 'master' into changeurl-anymovie
Browse files Browse the repository at this point in the history
  • Loading branch information
kaoru2 authored May 11, 2024
2 parents 8aca694 + 7dc9a5a commit a911042
Show file tree
Hide file tree
Showing 55 changed files with 47 additions and 1,986 deletions.
2 changes: 1 addition & 1 deletion lib-multisrc/dopeflix/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id("lib-multisrc")
}

baseVersionCode = 19
baseVersionCode = 20

dependencies {
api(project(":lib:dood-extractor"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ object DopeFlixFilters {

val YEARS = arrayOf(
ALL,
Pair("2024", "2024"),
Pair("2023", "2023"),
Pair("2022", "2022"),
Pair("2021", "2021"),
Expand Down
2 changes: 1 addition & 1 deletion lib-multisrc/zorotheme/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id("lib-multisrc")
}

baseVersionCode = 2
baseVersionCode = 3

dependencies {
api(project(":lib:megacloud-extractor"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down
2 changes: 1 addition & 1 deletion src/all/animeworldindia/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
extName = 'AnimeWorld India'
extClass = '.AnimeWorldIndiaFactory'
extVersionCode = 11
extVersionCode = 12
}

apply from: "$rootDir/common.gradle"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ class AnimeWorldIndiaFilters {

private fun getYearList() = listOf(
StringQuery("Any", "all"),
StringQuery("2024", "2024"),
StringQuery("2023", "2023"),
StringQuery("2022", "2022"),
StringQuery("2021", "2021"),
Expand Down
2 changes: 1 addition & 1 deletion src/en/fmovies/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
extName = 'FMovies'
extClass = '.FMovies'
extVersionCode = 23
extVersionCode = 24
}

apply from: "$rootDir/common.gradle"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ object FMoviesFilters {
)

val YEARS = arrayOf(
Pair("2024", "2024"),
Pair("2023", "2023"),
Pair("2022", "2022"),
Pair("2021", "2021"),
Expand Down
2 changes: 1 addition & 1 deletion src/en/gogoanime/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
extName = 'Gogoanime'
extClass = '.GogoAnime'
extVersionCode = 82
extVersionCode = 83
}

apply from: "$rootDir/common.gradle"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,9 @@ object GogoAnimeFilters {
val SEASON_LIST = arrayOf(
Pair("<select>", ""),
Pair("Latest season", "new-season.html"),
Pair("Spring 2024", "sub-category/spring-2024-anime"),
Pair("Winter 2024", "sub-category/winter-2024-anime"),
Pair("Fall 2023", "sub-category/fall-2023-anime"),
Pair("Summer 2023", "sub-category/summer-2023-anime"),
Pair("Spring 2023", "sub-category/spring-2023-anime"),
Pair("Winter 2023", "sub-category/winter-2023-anime"),
Expand Down
2 changes: 1 addition & 1 deletion src/en/kawaiifu/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
extName = 'Kawaiifu'
extClass = '.Kawaiifu'
extVersionCode = 4
extVersionCode = 5
isNsfw = true
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ object KawaiifuFilters {
Pair("Fall 2020", "fall-2020"),
Pair("Fall 2021", "fall-2021"),
Pair("Fall 2022", "fall-2022"),
Pair("Fall 2023", "fall-2023"),
Pair("Most Watched", "most-watched"),
Pair("Movies", "anime-movies"),
Pair("Music", "music"),
Expand Down Expand Up @@ -137,6 +138,7 @@ object KawaiifuFilters {
Pair("Spring 2020", "spring-2020"),
Pair("Spring 2021", "spring-2021"),
Pair("Spring 2022", "spring-2022"),
Pair("Spring 2023", "spring-2023"),
Pair("Summer 1990", "summer-1990"),
Pair("Summer 1992", "summer-1992"),
Pair("Summer 1999", "summer-1999"),
Expand All @@ -163,6 +165,7 @@ object KawaiifuFilters {
Pair("Summer 2020", "summer-2020"),
Pair("Summer 2021", "summer-2021"),
Pair("Summer 2022", "summer-2022"),
Pair("Summer 2023", "summer-2023"),
Pair("Trailer", "trailer"),
Pair("Tv series", "tv-series"),
Pair("Upcoming", "upcoming"),
Expand Down
2 changes: 1 addition & 1 deletion src/en/kickassanime/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
extName = 'KickAssAnime'
extClass = '.KickAssAnime'
extVersionCode = 41
extVersionCode = 42
}

apply from: "$rootDir/common.gradle"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ object KickAssAnimeFilters {
Pair("2021", "2021"),
Pair("2022", "2022"),
Pair("2023", "2023"),
Pair("2024", "2024"),
)

val STATUS = arrayOf(
Expand Down
2 changes: 1 addition & 1 deletion src/en/nineanime/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
extName = 'Aniwave'
extClass = '.Aniwave'
extVersionCode = 68
extVersionCode = 69
}

apply from: "$rootDir/common.gradle"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ object AniwaveFilters {
)

val YEAR = arrayOf(
Pair("2024", "2024"),
Pair("2023", "2023"),
Pair("2022", "2022"),
Pair("2021", "2021"),
Expand Down
2 changes: 1 addition & 1 deletion src/en/uniquestream/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ext {
extClass = '.UniqueStream'
themePkg = 'dooplay'
baseUrl = 'https://uniquestream.net'
overrideVersionCode = 2
overrideVersionCode = 3
}

apply from: "$rootDir/common.gradle"
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ class UniqueStream : DooPlay(
"Release Year",
arrayOf(
Pair("<select>", ""),
Pair("2024", "2024"),
Pair("2023", "2023"),
Pair("2022", "2022"),
Pair("2021", "2021"),
Expand Down
2 changes: 1 addition & 1 deletion src/es/animeonlineninja/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ext {
extClass = '.AnimeOnlineNinja'
themePkg = 'dooplay'
baseUrl = 'https://ww3.animeonline.ninja'
overrideVersionCode = 37
overrideVersionCode = 38
}

apply from: "$rootDir/common.gradle"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ object AnimeOnlineNinjaFilters {
Pair("Audio Castellano \uD83C\uDDEA\uD83C\uDDF8", "anime-castellano"),
)

val YEARS = arrayOf(EVERY) + (2023 downTo 1979).map {
val YEARS = arrayOf(EVERY) + (2024 downTo 1979).map {
Pair(it.toString(), it.toString())
}.toTypedArray()

Expand Down
2 changes: 1 addition & 1 deletion src/es/latanime/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
extName = 'Latanime'
extClass = '.Latanime'
extVersionCode = 15
extVersionCode = 16
}

apply from: "$rootDir/common.gradle"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ class Latanime : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
"Año",
arrayOf(
Pair("Seleccionar", "false"),
Pair("2024", "2024"),
Pair("2023", "2023"),
Pair("2022", "2022"),
Pair("2021", "2021"),
Expand Down
2 changes: 1 addition & 1 deletion src/fr/jetanime/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ext {
extClass = '.JetAnime'
themePkg = 'dooplay'
baseUrl = 'https://ssl.jetanimes.com'
overrideVersionCode = 6
overrideVersionCode = 7
}

apply from: "$rootDir/common.gradle"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ class JetAnime : DooPlay(
"Year",
arrayOf(
Pair("<select>", ""),
Pair("2024", "/annee/2024"),
Pair("2023", "/annee/2023"),
Pair("2022", "/annee/2022"),
Pair("2021", "/annee/2021"),
Expand Down
2 changes: 1 addition & 1 deletion src/fr/voircartoon/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ext {
extClass = '.VoirCartoon'
themePkg = 'dooplay'
baseUrl = 'https://voircartoon.com'
overrideVersionCode = 4
overrideVersionCode = 5
isNsfw = true
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ object VoirCartoonFilters {

val YEARS = arrayOf(
ANY,
Pair("2024", "2024"),
Pair("2023", "2023"),
Pair("2022", "2022"),
Pair("2021", "2021"),
Expand Down
2 changes: 1 addition & 1 deletion src/hi/yomovies/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
extName = 'YoMovies'
extClass = '.YoMovies'
extVersionCode = 12
extVersionCode = 13
isNsfw = true
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,7 @@ class YoMovies : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
Pair("<select>", ""),
Pair("Bollywood", "/genre/bollywood/"),
Pair("Trending", "/genre/top-rated/"),
Pair("Bollywood (2024)", "/account/?ptype=post&tax_category%5B%5D=bollywood&tax_release-year=2024&wpas=1"),
Pair("Bollywood (2023)", "/account/?ptype=post&tax_category%5B%5D=bollywood&tax_release-year=2023&wpas=1"),
Pair("Bollywood (2022)", "/account/?ptype=post&tax_category%5B%5D=bollywood&tax_release-year=2022&wpas=1"),
Pair("Bollywood (2021)", "/account/?ptype=post&tax_category%5B%5D=bollywood&tax_release-year=2021&wpas=1"),
Expand All @@ -283,6 +284,7 @@ class YoMovies : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
arrayOf(
Pair("<select>", ""),
Pair("Hollywood", "/genre/hollywood/"),
Pair("Hollywood (2024)", "/account/?ptype=post&tax_category%5B%5D=hollywood&tax_release-year=2024&wpas=1"),
Pair("Hollywood (2023)", "/account/?ptype=post&tax_category%5B%5D=hollywood&tax_release-year=2023&wpas=1"),
Pair("Hollywood (2022)", "/account/?ptype=post&tax_category%5B%5D=hollywood&tax_release-year=2022&wpas=1"),
Pair("Hollywood (2021)", "/account/?ptype=post&tax_category%5B%5D=hollywood&tax_release-year=2021&wpas=1"),
Expand Down
2 changes: 1 addition & 1 deletion src/id/minioppai/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ext {
extClass = '.MiniOppai'
themePkg = 'animestream'
baseUrl = 'https://minioppai.org'
overrideVersionCode = 4
overrideVersionCode = 5
isNsfw = true
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ object MiniOppaiFilters {
Pair("Web", "web"),
)

val YEARS_LIST = (2023 downTo 2001).map {
val YEARS_LIST = (2024 downTo 2001).map {
Pair(it.toString(), it.toString())
}.toTypedArray()

Expand Down
2 changes: 1 addition & 1 deletion src/id/oploverz/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
extName = 'Oploverz'
extClass = '.Oploverz'
extVersionCode = 24
extVersionCode = 25
}

apply from: "$rootDir/common.gradle"
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ object OploverzFilters {
Pair("Spring 2021", "spring-2021"),
Pair("Spring 2022", "spring-2022"),
Pair("Spring 2023", "spring-2023"),
Pair("Spring 2024", "spring-2024"),
Pair("Summer 1996", "summer-1996"),
Pair("Summer 2012", "summer-2012"),
Pair("Summer 2013", "summer-2013"),
Expand Down
2 changes: 1 addition & 1 deletion src/ko/aniweek/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ext {
extName = 'Aniweek'
extClass = '.Aniweek'
extVersionCode = 7
extVersionCode = 8
}

apply from: "$rootDir/common.gradle"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ class Aniweek : ConfigurableAnimeSource, ParsedAnimeHttpSource() {
arrayOf(
Pair("<선택하다>", ""),
Pair("전체", "bo_table=fin"),
Pair("2024", "bo_table=fin&sca=2024"),
Pair("2023", "bo_table=fin&sca=2023"),
Pair("2022", "bo_table=fin&sca=2022"),
Pair("2021", "bo_table=fin&sca=2021"),
Expand Down
23 changes: 0 additions & 23 deletions src/pt/animesvision/AndroidManifest.xml

This file was deleted.

7 changes: 0 additions & 7 deletions src/pt/animesvision/build.gradle

This file was deleted.

Binary file removed src/pt/animesvision/res/mipmap-hdpi/ic_launcher.png
Binary file not shown.
Binary file removed src/pt/animesvision/res/mipmap-mdpi/ic_launcher.png
Binary file not shown.
Binary file removed src/pt/animesvision/res/mipmap-xhdpi/ic_launcher.png
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit a911042

Please sign in to comment.