Skip to content

Commit

Permalink
fix workflow and update domains (#613)
Browse files Browse the repository at this point in the history
* update domains 💀

* fix workflows and update nicehttp
  • Loading branch information
IndusAryan committed Feb 24, 2024
1 parent 29e26b4 commit 179b268
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Movierulzhd/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// use an integer for version numbers
version = 62
version = 63


cloudstream {
Expand Down
2 changes: 1 addition & 1 deletion Movierulzhd/src/main/kotlin/com/hexated/Hdmovie2.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion SoraStream/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import org.jetbrains.kotlin.konan.properties.Properties

// use an integer for version numbers
version = 224
version = 225

android {
defaultConfig {
Expand Down
7 changes: 3 additions & 4 deletions SoraStream/src/main/kotlin/com/hexated/SoraStream.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion YomoviesProvider/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// use an integer for version numbers
version = 27
version = 28


cloudstream {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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

}
Expand Down

0 comments on commit 179b268

Please sign in to comment.