diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6a9cc822..c7297f57 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/Movierulzhd/build.gradle.kts b/Movierulzhd/build.gradle.kts index 5aa5a88e..7f643139 100644 --- a/Movierulzhd/build.gradle.kts +++ b/Movierulzhd/build.gradle.kts @@ -1,5 +1,5 @@ // use an integer for version numbers -version = 62 +version = 63 cloudstream { diff --git a/Movierulzhd/src/main/kotlin/com/hexated/Hdmovie2.kt b/Movierulzhd/src/main/kotlin/com/hexated/Hdmovie2.kt index 9c141a03..59eaf0a5 100644 --- a/Movierulzhd/src/main/kotlin/com/hexated/Hdmovie2.kt +++ b/Movierulzhd/src/main/kotlin/com/hexated/Hdmovie2.kt @@ -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", diff --git a/SoraStream/build.gradle.kts b/SoraStream/build.gradle.kts index 7601086f..4f2c8e13 100644 --- a/SoraStream/build.gradle.kts +++ b/SoraStream/build.gradle.kts @@ -1,7 +1,7 @@ import org.jetbrains.kotlin.konan.properties.Properties // use an integer for version numbers -version = 224 +version = 225 android { defaultConfig { diff --git a/SoraStream/src/main/kotlin/com/hexated/SoraStream.kt b/SoraStream/src/main/kotlin/com/hexated/SoraStream.kt index eeec600c..8df050d4 100644 --- a/SoraStream/src/main/kotlin/com/hexated/SoraStream.kt +++ b/SoraStream/src/main/kotlin/com/hexated/SoraStream.kt @@ -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" diff --git a/YomoviesProvider/build.gradle.kts b/YomoviesProvider/build.gradle.kts index d5e2c4a9..dd06bcee 100644 --- a/YomoviesProvider/build.gradle.kts +++ b/YomoviesProvider/build.gradle.kts @@ -1,5 +1,5 @@ // use an integer for version numbers -version = 27 +version = 28 cloudstream { diff --git a/YomoviesProvider/src/main/kotlin/com/hexated/YomoviesProvider.kt b/YomoviesProvider/src/main/kotlin/com/hexated/YomoviesProvider.kt index db80da7f..5905b782 100644 --- a/YomoviesProvider/src/main/kotlin/com/hexated/YomoviesProvider.kt +++ b/YomoviesProvider/src/main/kotlin/com/hexated/YomoviesProvider.kt @@ -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 diff --git a/build.gradle.kts b/build.gradle.kts index 6e28f8fa..9edb04d4 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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 }