diff --git a/AllAnimeProvider/build.gradle.kts b/AllAnimeProvider/build.gradle.kts index cdecd02..a8c3d1f 100644 --- a/AllAnimeProvider/build.gradle.kts +++ b/AllAnimeProvider/build.gradle.kts @@ -1,5 +1,5 @@ // use an integer for version numbers -version = 5 +version = 6 cloudstream { diff --git a/AllAnimeProvider/src/main/kotlin/com/lagradost/AllAnimeProvider.kt b/AllAnimeProvider/src/main/kotlin/com/lagradost/AllAnimeProvider.kt index c8f5473..cf1e68e 100644 --- a/AllAnimeProvider/src/main/kotlin/com/lagradost/AllAnimeProvider.kt +++ b/AllAnimeProvider/src/main/kotlin/com/lagradost/AllAnimeProvider.kt @@ -307,7 +307,7 @@ class AllAnimeProvider : MainAPI() { "https://videobin.co/", "https://ok.ru", "https://streamlare.com", - "https://gembedhd.com", + "streaming.php", ) private fun embedIsBlacklisted(url: String): Boolean { diff --git a/AllAnimeProvider/src/main/kotlin/com/lagradost/LinksQuery.kt b/AllAnimeProvider/src/main/kotlin/com/lagradost/LinksQuery.kt index eef5c05..f37f77f 100644 --- a/AllAnimeProvider/src/main/kotlin/com/lagradost/LinksQuery.kt +++ b/AllAnimeProvider/src/main/kotlin/com/lagradost/LinksQuery.kt @@ -20,32 +20,32 @@ data class SourceUrls( ) data class Episode( - @JsonProperty("episodeString") val episodeString: String? = null, +// @JsonProperty("episodeString") val episodeString: String? = null, // @JsonProperty("uploadDate" ) val uploadDate : UploadDate? = UploadDate(), @JsonProperty("sourceUrls") val sourceUrls: ArrayList = arrayListOf(), - @JsonProperty("thumbnail") val thumbnail: String? = null, - @JsonProperty("notes") val notes: String? = null, +// @JsonProperty("thumbnail") val thumbnail: String? = null, +// @JsonProperty("notes") val notes: String? = null, // @JsonProperty("show" ) val show : Show? = Show(), - @JsonProperty("pageStatus") val pageStatus: PageStatus? = PageStatus(), - @JsonProperty("episodeInfo") val episodeInfo: EpisodeInfo? = EpisodeInfo(), - @JsonProperty("versionFix") val versionFix: String? = null, - @JsonProperty("__typename") val _typename: String? = null +// @JsonProperty("pageStatus") val pageStatus: PageStatus? = PageStatus(), +// @JsonProperty("episodeInfo") val episodeInfo: EpisodeInfo? = EpisodeInfo(), +// @JsonProperty("versionFix") val versionFix: String? = null, +// @JsonProperty("__typename") val _typename: String? = null ) -data class EpisodeInfo( - @JsonProperty("notes") val notes: String? = null, - @JsonProperty("thumbnails") val thumbnails: ArrayList = arrayListOf(), - @JsonProperty("vidInforssub") val vidInforssub: VidInforssub? = VidInforssub(), -// @JsonProperty("uploadDates" ) val uploadDates : UploadDates? = UploadDates(), - @JsonProperty("vidInforsdub") val vidInforsdub: String? = null, - @JsonProperty("vidInforsraw") val vidInforsraw: String? = null, - @JsonProperty("description") val description: String? = null, - @JsonProperty("__typename") val _typename: String? = null -) +//data class EpisodeInfo( +// @JsonProperty("notes") val notes: String? = null, +// @JsonProperty("thumbnails") val thumbnails: ArrayList = arrayListOf(), +// @JsonProperty("vidInforssub") val vidInforssub: VidInforssub? = VidInforssub(), +//// @JsonProperty("uploadDates" ) val uploadDates : UploadDates? = UploadDates(), +// @JsonProperty("vidInforsdub") val vidInforsdub: String? = null, +// @JsonProperty("vidInforsraw") val vidInforsraw: String? = null, +// @JsonProperty("description") val description: String? = null, +// @JsonProperty("__typename") val _typename: String? = null +//) -data class VidInforssub( - @JsonProperty("vidResolution") val vidResolution: Int? = null, - @JsonProperty("vidPath") val vidPath: String? = null, - @JsonProperty("vidSize") val vidSize: Int? = null, - @JsonProperty("vidDuration") val vidDuration: Double? = null -) \ No newline at end of file +//data class VidInforssub( +// @JsonProperty("vidResolution") val vidResolution: Int? = null, +// @JsonProperty("vidPath") val vidPath: String? = null, +// @JsonProperty("vidSize") val vidSize: Int? = null, +// @JsonProperty("vidDuration") val vidDuration: Double? = null +//) \ No newline at end of file