Skip to content

Commit 24c1ba6

Browse files
committed
hotfix for stable release
1 parent 67c506d commit 24c1ba6

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
I acknowledge that:
44

55
- I have updated:
6-
- To the latest version of the app (stable is v0.12.3.5)
6+
- To the latest version of the app (stable is v0.12.3.7)
77
- All extensions
88
- If this is an issue with an anime extension, that I should be opening an issue in https://github.com/jmir1/aniyomi-extensions
99
- I have searched the existing issues and this is new ticket **NOT** a duplicate or related to another open issue

.github/ISSUE_TEMPLATE/report_issue.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ body:
5252
label: Aniyomi version
5353
description: You can find your Aniyomi version in **More → About**.
5454
placeholder: |
55-
Example: "0.12.3.5"
55+
Example: "0.12.3.7"
5656
validations:
5757
required: true
5858

@@ -97,7 +97,7 @@ body:
9797
required: true
9898
- label: I have tried the [troubleshooting guide](https://aniyomi.jmir.xyz/help/guides/troubleshooting/).
9999
required: true
100-
- label: I have updated the app to version **[0.12.3.5](https://github.com/jmir1/aniyomi/releases/latest)**.
100+
- label: I have updated the app to version **[0.12.3.7](https://github.com/jmir1/aniyomi/releases/latest)**.
101101
required: true
102102
- label: I have updated all installed extensions.
103103
required: true

.github/ISSUE_TEMPLATE/request_feature.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ body:
3232
required: true
3333
- 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).
3434
required: true
35-
- label: I have updated the app to version **[0.12.3.5](https://github.com/jmir1/aniyomi/releases/latest)**.
35+
- label: I have updated the app to version **[0.12.3.7](https://github.com/jmir1/aniyomi/releases/latest)**.
3636
required: true
3737
- label: I will fill out all of the requested information in this form.
3838
required: true

app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ android {
3030
minSdk = AndroidConfig.minSdk
3131
targetSdk = AndroidConfig.targetSdk
3232
versionCode = 72
33-
versionName = "0.12.3.6"
33+
versionName = "0.12.3.7"
3434

3535
buildConfigField("String", "COMMIT_COUNT", "\"${getCommitCount()}\"")
3636
buildConfigField("String", "COMMIT_SHA", "\"${getGitSha()}\"")

app/src/main/java/eu/kanade/tachiyomi/animesource/online/AnimeHttpSource.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,6 @@ abstract class AnimeHttpSource : AnimeCatalogueSource {
382382
override fun getFilterList() = AnimeFilterList()
383383

384384
companion object {
385-
const val DEFAULT_USER_AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 Edg/88.0.705.63"
385+
const val DEFAULT_USER_AGENT = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.124 Safari/537.36 Edg/102.0.1245.44"
386386
}
387387
}

app/src/main/java/eu/kanade/tachiyomi/source/online/HttpSource.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,6 @@ abstract class HttpSource : CatalogueSource {
371371
override fun getFilterList() = FilterList()
372372

373373
companion object {
374-
const val DEFAULT_USER_AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.150 Safari/537.36 Edg/88.0.705.63"
374+
const val DEFAULT_USER_AGENT = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.124 Safari/537.36 Edg/102.0.1245.44"
375375
}
376376
}

0 commit comments

Comments
 (0)