Release 1.6.1
This commit is contained in:
parent
7e0f2950c1
commit
4118b13e5b
2
.github/ISSUE_TEMPLATE.md
vendored
2
.github/ISSUE_TEMPLATE.md
vendored
@ -3,7 +3,7 @@
|
|||||||
I acknowledge that:
|
I acknowledge that:
|
||||||
|
|
||||||
- I have updated:
|
- I have updated:
|
||||||
- To the latest version of the app (stable is v1.6.0)
|
- To the latest version of the app (stable is v1.6.1)
|
||||||
- All extensions
|
- All extensions
|
||||||
- I have tried the troubleshooting guide: https://tachiyomi.org/help/guides/troubleshooting-problems/
|
- I have tried the troubleshooting guide: https://tachiyomi.org/help/guides/troubleshooting-problems/
|
||||||
- If this is an issue with an extension, that I should be opening an issue in https://github.com/tachiyomiorg/tachiyomi-extensions
|
- If this is an issue with an extension, that I should be opening an issue in https://github.com/tachiyomiorg/tachiyomi-extensions
|
||||||
|
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@ -10,7 +10,7 @@ labels: "bug"
|
|||||||
I acknowledge that:
|
I acknowledge that:
|
||||||
|
|
||||||
- I have updated:
|
- I have updated:
|
||||||
- To the latest version of the app (stable is v1.6.0)
|
- To the latest version of the app (stable is v1.6.1)
|
||||||
- All extensions
|
- All extensions
|
||||||
- I have tried the troubleshooting guide: https://tachiyomi.org/help/guides/troubleshooting-problems/
|
- I have tried the troubleshooting guide: https://tachiyomi.org/help/guides/troubleshooting-problems/
|
||||||
- If this is an issue with an extension, that I should be opening an issue in https://github.com/tachiyomiorg/tachiyomi-extensions
|
- If this is an issue with an extension, that I should be opening an issue in https://github.com/tachiyomiorg/tachiyomi-extensions
|
||||||
|
2
.github/ISSUE_TEMPLATE/feature_request.md
vendored
2
.github/ISSUE_TEMPLATE/feature_request.md
vendored
@ -10,7 +10,7 @@ labels: "feature"
|
|||||||
I acknowledge that:
|
I acknowledge that:
|
||||||
|
|
||||||
- I have updated:
|
- I have updated:
|
||||||
- To the latest version of the app (stable is v1.6.0)
|
- To the latest version of the app (stable is v1.6.1)
|
||||||
- All extensions
|
- All extensions
|
||||||
- If this is an issue with an extension, that I should be opening an issue in https://github.com/tachiyomiorg/tachiyomi-extensions
|
- If this is an issue with an extension, that I should be opening an issue in https://github.com/tachiyomiorg/tachiyomi-extensions
|
||||||
- I have searched the existing issues and this is new ticket **NOT** a duplicate or related to another open issue
|
- I have searched the existing issues and this is new ticket **NOT** a duplicate or related to another open issue
|
||||||
|
@ -34,8 +34,8 @@ android {
|
|||||||
minSdkVersion(AndroidConfig.minSdk)
|
minSdkVersion(AndroidConfig.minSdk)
|
||||||
targetSdkVersion(AndroidConfig.targetSdk)
|
targetSdkVersion(AndroidConfig.targetSdk)
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
versionCode = 14
|
versionCode = 15
|
||||||
versionName = "1.6.0"
|
versionName = "1.6.1"
|
||||||
|
|
||||||
buildConfigField("String", "COMMIT_COUNT", "\"${getCommitCount()}\"")
|
buildConfigField("String", "COMMIT_COUNT", "\"${getCommitCount()}\"")
|
||||||
buildConfigField("String", "COMMIT_SHA", "\"${getGitSha()}\"")
|
buildConfigField("String", "COMMIT_SHA", "\"${getGitSha()}\"")
|
||||||
|
@ -892,7 +892,7 @@ class MangaPresenter(
|
|||||||
*/
|
*/
|
||||||
fun getNextUnreadChapter(): ChapterItem? {
|
fun getNextUnreadChapter(): ChapterItem? {
|
||||||
return if (source.isEhBasedSource()) {
|
return if (source.isEhBasedSource()) {
|
||||||
chapters.sortedWith(getChapterSort()).lastOrNull()?.takeUnless { it.read }
|
chapters.sortedWith(getChapterSort()).firstOrNull()?.takeUnless { it.read }
|
||||||
} else {
|
} else {
|
||||||
chapters.sortedWith(getChapterSort()).findLast { !it.read }
|
chapters.sortedWith(getChapterSort()).findLast { !it.read }
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,11 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<changelog bulletedList="true">
|
<changelog bulletedList="true">
|
||||||
|
<changelogversion versionName="1.6.1" changeDate="Apr 19,2021">
|
||||||
|
<changelogtext>[b]Based on Tachiyomi stable 0.10.11(from 0.10.10)[/b]</changelogtext>
|
||||||
|
<changelogtext>Add a debug function to address really old SY full backups reader mode bug</changelogtext>
|
||||||
|
<changelogtext>Block merged manga from migration</changelogtext>
|
||||||
|
<changelogtext>Remove useless source migration action from overflow</changelogtext>
|
||||||
|
</changelogversion>
|
||||||
<changelogversion versionName="1.6.0" changeDate="Apr 11,2021">
|
<changelogversion versionName="1.6.0" changeDate="Apr 11,2021">
|
||||||
<changelogtext>[b]Based on Tachiyomi stable 0.10.10(from 0.10.9)[/b]</changelogtext>
|
<changelogtext>[b]Based on Tachiyomi stable 0.10.10(from 0.10.9)[/b]</changelogtext>
|
||||||
<changelogtext>[b]New[/b] Edit manga status</changelogtext>
|
<changelogtext>[b]New[/b] Edit manga status</changelogtext>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user