diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 186e541bb..cb39ce65a 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -3,7 +3,7 @@ I acknowledge that: - I have updated: - - To the latest version of the app (stable is v0.12.3.9) + - To the latest version of the app (stable is v0.12.3.10) - All extensions - If this is an issue with an anime extension, that I should be opening an issue in https://github.com/jmir1/aniyomi-extensions - I have searched the existing issues and this is new ticket **NOT** a duplicate or related to another open issue diff --git a/.github/ISSUE_TEMPLATE/report_issue.yml b/.github/ISSUE_TEMPLATE/report_issue.yml index 859cbcc87..8139df352 100644 --- a/.github/ISSUE_TEMPLATE/report_issue.yml +++ b/.github/ISSUE_TEMPLATE/report_issue.yml @@ -52,7 +52,7 @@ body: label: Aniyomi version description: You can find your Aniyomi version in **More → About**. placeholder: | - Example: "0.12.3.9" + Example: "0.12.3.10" validations: required: true @@ -97,7 +97,7 @@ body: required: true - label: I have tried the [troubleshooting guide](https://aniyomi.jmir.xyz/help/guides/troubleshooting/). required: true - - label: I have updated the app to version **[0.12.3.9](https://github.com/jmir1/aniyomi/releases/latest)**. + - label: I have updated the app to version **[0.12.3.10](https://github.com/jmir1/aniyomi/releases/latest)**. required: true - label: I have updated all installed extensions. required: true diff --git a/.github/ISSUE_TEMPLATE/request_feature.yml b/.github/ISSUE_TEMPLATE/request_feature.yml index 316aa0398..eb9c912bb 100644 --- a/.github/ISSUE_TEMPLATE/request_feature.yml +++ b/.github/ISSUE_TEMPLATE/request_feature.yml @@ -32,7 +32,7 @@ body: required: true - label: If this is an issue with an extension, I should be opening an issue in the [extensions repository](https://github.com/jmir1/aniyomi-extensions/issues/new/choose). required: true - - label: I have updated the app to version **[0.12.3.9](https://github.com/jmir1/aniyomi/releases/latest)**. + - label: I have updated the app to version **[0.12.3.10](https://github.com/jmir1/aniyomi/releases/latest)**. required: true - label: I will fill out all of the requested information in this form. required: true diff --git a/app/build.gradle.kts b/app/build.gradle.kts index fd4108036..dcbdf4ebe 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -30,7 +30,7 @@ android { minSdk = AndroidConfig.minSdk targetSdk = AndroidConfig.targetSdk versionCode = 72 - versionName = "0.12.3.9" + versionName = "0.12.3.10" buildConfigField("String", "COMMIT_COUNT", "\"${getCommitCount()}\"") buildConfigField("String", "COMMIT_SHA", "\"${getGitSha()}\"") diff --git a/app/src/main/java/eu/kanade/tachiyomi/animesource/model/Video.kt b/app/src/main/java/eu/kanade/tachiyomi/animesource/model/Video.kt index 5afc9302f..84772c1fe 100644 --- a/app/src/main/java/eu/kanade/tachiyomi/animesource/model/Video.kt +++ b/app/src/main/java/eu/kanade/tachiyomi/animesource/model/Video.kt @@ -28,6 +28,14 @@ open class Video( audioTracks: List = emptyList(), ) : this(url, quality, videoUrl, null, headers, subtitleTracks, audioTracks) + constructor( + url: String, + quality: String, + videoUrl: String?, + uri: Uri?, + headers: Headers? = null, + ) : this(url, quality, videoUrl, uri, headers, emptyList(), emptyList()) + @Transient @Volatile var status: Int = 0