diff --git a/.github/ISSUE_TEMPLATE/02_request_source.yml b/.github/ISSUE_TEMPLATE/02_request_source.yml index 35a68664..8445aa4b 100644 --- a/.github/ISSUE_TEMPLATE/02_request_source.yml +++ b/.github/ISSUE_TEMPLATE/02_request_source.yml @@ -48,7 +48,7 @@ body: required: true - label: I have written a title with source name. required: true - - label: I have checked that the extension does not already exist by searching the [GitHub repository](https://github.com/almightyhak/aniyomi-extensions) and verified it does not appear in the code base. + - label: I have checked that the extension does not already exist by searching the [GitHub repository](https://github.com/Kohi-den/extensions-source) and verified it does not appear in the code base. required: true - label: I will fill out all of the requested information in this form. required: true diff --git a/.github/scripts/bump-versions.py b/.github/scripts/bump-versions.py index 51c15729..1fe8cdf6 100644 --- a/.github/scripts/bump-versions.py +++ b/.github/scripts/bump-versions.py @@ -11,8 +11,8 @@ VERSION_STR = "VersionCode =" VERSION_REGEX = re.compile(f"{VERSION_STR} (\\d+)") BUMPED_FILES: list[Path] = [] -BOT_EMAIL = "134626626+almightyhak@users.noreply.github.com" -BOT_NAME = "almightyhak" +BOT_EMAIL = "177773202+Kohi-den-Bot@users.noreply.github.com" +BOT_NAME = "Kohi-den-Bot" def has_match(query: str, file: Path) -> tuple[Path, bool]: return (file, query in file.read_text()) diff --git a/.github/scripts/commit-repo.sh b/.github/scripts/commit-repo.sh index 980a4b51..be82c670 100644 --- a/.github/scripts/commit-repo.sh +++ b/.github/scripts/commit-repo.sh @@ -2,8 +2,8 @@ set -e rsync -a --delete --exclude .git --exclude .gitignore ../main/repo/ . -git config --global user.email "134626626+almightyhak@users.noreply.github.com" -git config --global user.name "almightyhak" +git config --global user.email "177773202+Kohi-den-Bot@users.noreply.github.com" +git config --global user.name "Kohi-den-Bot" git status if [ -n "$(git status --porcelain)" ]; then git add . diff --git a/.github/workflows/build_push.yml b/.github/workflows/build_push.yml index f39ffed9..b8143aa9 100644 --- a/.github/workflows/build_push.yml +++ b/.github/workflows/build_push.yml @@ -113,7 +113,7 @@ jobs: - name: Upload APKs (chunk ${{ matrix.chunk }}) uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4 - if: "github.repository == 'almightyhak/aniyomi-extensions'" + if: "github.repository == 'Kohi-den/extensions-source'" with: name: "individual-apks-${{ matrix.chunk }}" path: "**/*.apk" @@ -126,7 +126,7 @@ jobs: name: Publish repo needs: - build_individual - if: "github.repository == 'almightyhak/aniyomi-extensions'" + if: "github.repository == 'Kohi-den/extensions-source'" runs-on: ubuntu-latest steps: - name: Download APK artifacts @@ -158,7 +158,7 @@ jobs: - name: Checkout repo branch uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 with: - repository: almightyhak/aniyomi-anime-repo + repository: Kohi-den/extensions token: ${{ secrets.BOT_PAT }} ref: main path: repo @@ -172,6 +172,6 @@ jobs: with: message: "Update extensions repo" cwd: "./repo" - committer_name: almightyhak - committer_email: 134626626+almightyhak@users.noreply.github.com + committer_name: Kohi-den-Bot + committer_email: 177773202+Kohi-den-Bot@users.noreply.github.com diff --git a/README.md b/README.md index 68811214..9ca309a5 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ just paste this into your anime repo ``` -https://raw.githubusercontent.com/almightyhak/aniyomi-anime-repo/main/index.min.json +https://raw.githubusercontent.com/Kohi-den/extensions/main/index.min.json ``` -If your interested in installing just the apks they can be found [Here](https://github.com/almightyhak/aniyomi-anime-repo) +If your interested in installing just the apks they can be found [Here](https://github.com/Kohi-den/extensions) ## Support Server @@ -16,6 +16,10 @@ and please check the discord BEFORE making an issue [Template](https://github.com/aniyomiorg/aniyomi-extensions/blob/master/CONTRIBUTING.md) -## Contact +## Disclaimer -almighty_hak on discord +This project does not have any affiliation with the content providers available. +This project is not affiliated with Aniyomi. +Don't ask for help about these extensions at the official support means of Aniyomi. + +All credits to the codebase goes to the original contributors. diff --git a/lib/dood-extractor/src/main/java/eu/kanade/tachiyomi/lib/doodextractor/DoodExtractor.kt b/lib/dood-extractor/src/main/java/eu/kanade/tachiyomi/lib/doodextractor/DoodExtractor.kt index 86ca8280..2d2c460c 100644 --- a/lib/dood-extractor/src/main/java/eu/kanade/tachiyomi/lib/doodextractor/DoodExtractor.kt +++ b/lib/dood-extractor/src/main/java/eu/kanade/tachiyomi/lib/doodextractor/DoodExtractor.kt @@ -34,7 +34,7 @@ class DoodExtractor(private val client: OkHttpClient) { ), ).execute().body.string() val videoUrl = "$videoUrlStart$randomString?token=$token&expiry=$expiry" - Video(newUrl, newQuality, videoUrl, headers = doodHeaders(doodHost), subtitleTracks = externalSubs) + Video(videoUrl, newQuality, videoUrl, headers = doodHeaders(doodHost), subtitleTracks = externalSubs) }.getOrNull() } diff --git a/src/es/cuevana/build.gradle b/src/es/cuevana/build.gradle index 59228a93..caa81a5b 100644 --- a/src/es/cuevana/build.gradle +++ b/src/es/cuevana/build.gradle @@ -1,7 +1,7 @@ ext { extName = 'Cuevana' extClass = '.CuevanaFactory' - extVersionCode = 31 + extVersionCode = 32 } apply from: "$rootDir/common.gradle" diff --git a/src/es/cuevana/src/eu/kanade/tachiyomi/animeextension/es/cuevana/CuevanaEu.kt b/src/es/cuevana/src/eu/kanade/tachiyomi/animeextension/es/cuevana/CuevanaEu.kt index bbd3b01c..45fc33b5 100644 --- a/src/es/cuevana/src/eu/kanade/tachiyomi/animeextension/es/cuevana/CuevanaEu.kt +++ b/src/es/cuevana/src/eu/kanade/tachiyomi/animeextension/es/cuevana/CuevanaEu.kt @@ -24,10 +24,7 @@ import eu.kanade.tachiyomi.lib.voeextractor.VoeExtractor import eu.kanade.tachiyomi.lib.youruploadextractor.YourUploadExtractor import eu.kanade.tachiyomi.network.GET import eu.kanade.tachiyomi.util.asJsoup -import eu.kanade.tachiyomi.util.parallelMapBlocking import kotlinx.serialization.json.Json -import kotlinx.serialization.json.JsonObject -import kotlinx.serialization.json.jsonPrimitive import okhttp3.Request import okhttp3.Response import org.jsoup.nodes.Document @@ -151,28 +148,28 @@ class CuevanaEu(override val name: String, override val baseUrl: String) : Confi private fun serverIterator(videos: Videos?): MutableList