mirror of
https://github.com/recloudstream/cloudstream-extensions.git
synced 2024-08-15 03:03:54 +00:00
Compare commits
No commits in common. "13a55de223412e67664751157ba9312018aed23f" and "da1dd7c2b8d6a684413dc0023a5dfff378861be4" have entirely different histories.
13a55de223
...
da1dd7c2b8
5 changed files with 27 additions and 27 deletions
|
@ -1,5 +1,5 @@
|
||||||
// use an integer for version numbers
|
// use an integer for version numbers
|
||||||
version = 6
|
version = 5
|
||||||
|
|
||||||
|
|
||||||
cloudstream {
|
cloudstream {
|
||||||
|
|
|
@ -307,7 +307,7 @@ class AllAnimeProvider : MainAPI() {
|
||||||
"https://videobin.co/",
|
"https://videobin.co/",
|
||||||
"https://ok.ru",
|
"https://ok.ru",
|
||||||
"https://streamlare.com",
|
"https://streamlare.com",
|
||||||
"streaming.php",
|
"https://gembedhd.com",
|
||||||
)
|
)
|
||||||
|
|
||||||
private fun embedIsBlacklisted(url: String): Boolean {
|
private fun embedIsBlacklisted(url: String): Boolean {
|
||||||
|
|
|
@ -20,32 +20,32 @@ data class SourceUrls(
|
||||||
)
|
)
|
||||||
|
|
||||||
data class Episode(
|
data class Episode(
|
||||||
// @JsonProperty("episodeString") val episodeString: String? = null,
|
@JsonProperty("episodeString") val episodeString: String? = null,
|
||||||
// @JsonProperty("uploadDate" ) val uploadDate : UploadDate? = UploadDate(),
|
// @JsonProperty("uploadDate" ) val uploadDate : UploadDate? = UploadDate(),
|
||||||
@JsonProperty("sourceUrls") val sourceUrls: ArrayList<SourceUrls> = arrayListOf(),
|
@JsonProperty("sourceUrls") val sourceUrls: ArrayList<SourceUrls> = arrayListOf(),
|
||||||
// @JsonProperty("thumbnail") val thumbnail: String? = null,
|
@JsonProperty("thumbnail") val thumbnail: String? = null,
|
||||||
// @JsonProperty("notes") val notes: String? = null,
|
@JsonProperty("notes") val notes: String? = null,
|
||||||
// @JsonProperty("show" ) val show : Show? = Show(),
|
// @JsonProperty("show" ) val show : Show? = Show(),
|
||||||
// @JsonProperty("pageStatus") val pageStatus: PageStatus? = PageStatus(),
|
@JsonProperty("pageStatus") val pageStatus: PageStatus? = PageStatus(),
|
||||||
// @JsonProperty("episodeInfo") val episodeInfo: EpisodeInfo? = EpisodeInfo(),
|
@JsonProperty("episodeInfo") val episodeInfo: EpisodeInfo? = EpisodeInfo(),
|
||||||
// @JsonProperty("versionFix") val versionFix: String? = null,
|
@JsonProperty("versionFix") val versionFix: String? = null,
|
||||||
// @JsonProperty("__typename") val _typename: String? = null
|
@JsonProperty("__typename") val _typename: String? = null
|
||||||
)
|
)
|
||||||
|
|
||||||
//data class EpisodeInfo(
|
data class EpisodeInfo(
|
||||||
// @JsonProperty("notes") val notes: String? = null,
|
@JsonProperty("notes") val notes: String? = null,
|
||||||
// @JsonProperty("thumbnails") val thumbnails: ArrayList<String> = arrayListOf(),
|
@JsonProperty("thumbnails") val thumbnails: ArrayList<String> = arrayListOf(),
|
||||||
// @JsonProperty("vidInforssub") val vidInforssub: VidInforssub? = VidInforssub(),
|
@JsonProperty("vidInforssub") val vidInforssub: VidInforssub? = VidInforssub(),
|
||||||
//// @JsonProperty("uploadDates" ) val uploadDates : UploadDates? = UploadDates(),
|
// @JsonProperty("uploadDates" ) val uploadDates : UploadDates? = UploadDates(),
|
||||||
// @JsonProperty("vidInforsdub") val vidInforsdub: String? = null,
|
@JsonProperty("vidInforsdub") val vidInforsdub: String? = null,
|
||||||
// @JsonProperty("vidInforsraw") val vidInforsraw: String? = null,
|
@JsonProperty("vidInforsraw") val vidInforsraw: String? = null,
|
||||||
// @JsonProperty("description") val description: String? = null,
|
@JsonProperty("description") val description: String? = null,
|
||||||
// @JsonProperty("__typename") val _typename: String? = null
|
@JsonProperty("__typename") val _typename: String? = null
|
||||||
//)
|
)
|
||||||
|
|
||||||
//data class VidInforssub(
|
data class VidInforssub(
|
||||||
// @JsonProperty("vidResolution") val vidResolution: Int? = null,
|
@JsonProperty("vidResolution") val vidResolution: Int? = null,
|
||||||
// @JsonProperty("vidPath") val vidPath: String? = null,
|
@JsonProperty("vidPath") val vidPath: String? = null,
|
||||||
// @JsonProperty("vidSize") val vidSize: Int? = null,
|
@JsonProperty("vidSize") val vidSize: Int? = null,
|
||||||
// @JsonProperty("vidDuration") val vidDuration: Double? = null
|
@JsonProperty("vidDuration") val vidDuration: Double? = null
|
||||||
//)
|
)
|
|
@ -1,5 +1,5 @@
|
||||||
// use an integer for version numbers
|
// use an integer for version numbers
|
||||||
version = 13
|
version = 12
|
||||||
|
|
||||||
|
|
||||||
cloudstream {
|
cloudstream {
|
||||||
|
|
|
@ -458,7 +458,7 @@ open class SflixProvider : MainAPI() {
|
||||||
}
|
}
|
||||||
|
|
||||||
suspend fun getKey(): String? {
|
suspend fun getKey(): String? {
|
||||||
return app.get("https://raw.githubusercontent.com/enimax-anime/key/e4/key.txt")
|
return app.get("https://raw.githubusercontent.com/consumet/rapidclown/rabbitstream/key.txt")
|
||||||
.text
|
.text
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue