mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-19 22:09:16 +01:00
Version 0.9.81
Bug fixes mentioned in changelog xml
This commit is contained in:
parent
01039219bc
commit
fa3adf6c37
@ -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
|
||||
|
||||
|
@ -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()}\""
|
||||
|
@ -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
|
||||
|
@ -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"
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user