Version 0.9.81

Bug fixes mentioned in changelog xml
This commit is contained in:
Jay 2020-02-13 23:06:23 -08:00
parent 01039219bc
commit fa3adf6c37
5 changed files with 14 additions and 5 deletions

View File

@ -4,7 +4,7 @@ Tachiyomi is a free and open source manga reader for Android 5.0 and above.
![screenshots of app](./.github/readme-images/theming-screenshots.gif)
## Newest Release
[v0.9.8](https://github.com/Jays2Kings/tachiyomi/releases)
[v0.9.81](https://github.com/Jays2Kings/tachiyomi/releases)
## Features

View File

@ -38,8 +38,8 @@ android {
minSdkVersion 21
targetSdkVersion 29
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
versionCode 59
versionName '0.9.8'
versionCode 60
versionName '0.9.81'
buildConfigField "String", "COMMIT_COUNT", "\"${getCommitCount()}\""
buildConfigField "String", "COMMIT_SHA", "\"${getGitSha()}\""

View File

@ -328,7 +328,10 @@ class LibraryController(
activeCategory
categories.find { it.id == 0 }?.let {
it.name = resources?.getString(R.string.default_columns) ?: "Default"
it.name = resources?.getString(
if (categories.size == 1) R.string.pref_category_library
else R.string.default_columns
) ?: "Default"
}
// Set the categories
adapter.categories = categories

View File

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<eu.kanade.tachiyomi.widget.AutofitRecyclerView
android:id="@+id/catalogue_recycler"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
style="@style/Theme.Widget.GridView.Catalogue"

View File

@ -1,6 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog bulletedList="true">
<changelogversion versionName="v0.9.78" changeDate="">
<changelogversion versionName="v0.9.81" changeDate="">
<changelogtext>Fixed Catalogue list resetting to the top</changelogtext>
<changelogtext>Fixed those without a category seeing "Updating Default"</changelogtext>
</changelogversion>
<changelogversion versionName="v0.9.8" changeDate="">
<changelogtext>Hide categories and show your library in a single list in filters</changelogtext>
<changelogtext>Option to set date format</changelogtext>
<changelogtext>You can now pull to refresh on multiple categories, they will be added to the queue</changelogtext>