mirror of
https://github.com/hexated/cloudstream-extensions-hexated.git
synced 2024-08-15 00:03:22 +00:00
fix workflow and update domains (#613)
* update domains 💀
* fix workflows and update nicehttp
This commit is contained in:
parent
29e26b4a1b
commit
179b268bce
8 changed files with 14 additions and 14 deletions
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
|
@ -19,12 +19,12 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@master
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
path: "src"
|
||||
|
||||
- name: Checkout builds
|
||||
uses: actions/checkout@master
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: "builds"
|
||||
path: "builds"
|
||||
|
@ -33,8 +33,9 @@ jobs:
|
|||
run: rm $GITHUB_WORKSPACE/builds/*.cs3 || true
|
||||
|
||||
- name: Setup JDK 11
|
||||
uses: actions/setup-java@v1
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: "adopt"
|
||||
java-version: 11
|
||||
|
||||
- name: Setup Android SDK
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// use an integer for version numbers
|
||||
version = 62
|
||||
version = 63
|
||||
|
||||
|
||||
cloudstream {
|
||||
|
|
|
@ -12,7 +12,7 @@ import org.jsoup.Jsoup
|
|||
|
||||
class Hdmovie2 : Movierulzhd() {
|
||||
|
||||
override var mainUrl = "https://hdmovie2.mba"
|
||||
override var mainUrl = "https://hdmovie2.tax"
|
||||
override var name = "Hdmovie2"
|
||||
override val mainPage = mainPageOf(
|
||||
"trending" to "Trending",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import org.jetbrains.kotlin.konan.properties.Properties
|
||||
|
||||
// use an integer for version numbers
|
||||
version = 224
|
||||
version = 225
|
||||
|
||||
android {
|
||||
defaultConfig {
|
||||
|
|
|
@ -118,12 +118,11 @@ open class SoraStream : TmdbProvider() {
|
|||
const val moviefictionAPI = "https://moviefiction.com"
|
||||
const val zoechipAPI = "https://zoechip.org"
|
||||
const val nepuAPI = "https://nepu.to"
|
||||
|
||||
const val fdMoviesAPI = "https://freedrivemovie.com"
|
||||
const val uhdmoviesAPI = "https://uhdmovies.us"
|
||||
const val uhdmoviesAPI = "https://uhdmovies.asia"
|
||||
const val hdmovies4uAPI = "https://hdmovies4u.day"
|
||||
const val vegaMoviesAPI = "https://vegamovies.ngo"
|
||||
const val dotmoviesAPI = "https://dotmovies.dad"
|
||||
const val vegaMoviesAPI = "https://vegamovies.ong"
|
||||
const val dotmoviesAPI = "https://dotmovies.one"
|
||||
const val tvMoviesAPI = "https://www.tvseriesnmovies.com"
|
||||
const val dahmerMoviesAPI = "https://odd-bird-1319.zwuhygoaqe.workers.dev"
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// use an integer for version numbers
|
||||
version = 27
|
||||
version = 28
|
||||
|
||||
|
||||
cloudstream {
|
||||
|
|
|
@ -10,7 +10,7 @@ import org.jsoup.nodes.Element
|
|||
import java.net.URI
|
||||
|
||||
open class YomoviesProvider : MainAPI() {
|
||||
override var mainUrl = "https://yomovies.fit"
|
||||
override var mainUrl = "https://yomovies.town"
|
||||
private var directUrl = ""
|
||||
override var name = "Yomovies"
|
||||
override val hasMainPage = true
|
||||
|
|
|
@ -77,11 +77,11 @@ subprojects {
|
|||
// https://github.com/recloudstream/cloudstream/blob/master/app/build.gradle
|
||||
|
||||
implementation(kotlin("stdlib")) // adds standard kotlin features, like listOf, mapOf etc
|
||||
implementation("com.github.Blatzar:NiceHttp:0.4.5") // http library
|
||||
implementation("com.github.Blatzar:NiceHttp:0.4.11") // http library
|
||||
implementation("org.jsoup:jsoup:1.17.2") // html parser
|
||||
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.16.1")
|
||||
implementation("io.karn:khttp-android:0.1.2")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3") // html parser
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0")
|
||||
implementation("org.mozilla:rhino:1.7.14") //run JS
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue