mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-11 19:10:48 +01:00
Release 0.6.4
This commit is contained in:
parent
020cc89576
commit
4a9151e4aa
4 changed files with 19 additions and 5 deletions
|
@ -38,8 +38,8 @@ android {
|
||||||
minSdkVersion 16
|
minSdkVersion 16
|
||||||
targetSdkVersion 26
|
targetSdkVersion 26
|
||||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||||
versionCode 26
|
versionCode 27
|
||||||
versionName "0.6.3"
|
versionName "0.6.4"
|
||||||
|
|
||||||
buildConfigField "String", "COMMIT_COUNT", "\"${getCommitCount()}\""
|
buildConfigField "String", "COMMIT_COUNT", "\"${getCommitCount()}\""
|
||||||
buildConfigField "String", "COMMIT_SHA", "\"${getGitSha()}\""
|
buildConfigField "String", "COMMIT_SHA", "\"${getGitSha()}\""
|
||||||
|
|
|
@ -101,7 +101,7 @@ open class CatalogueController(bundle: Bundle) :
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getTitle(): String? {
|
override fun getTitle(): String? {
|
||||||
return presenter.source.toString()
|
return presenter.source.name
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun createPresenter(): CataloguePresenter {
|
override fun createPresenter(): CataloguePresenter {
|
||||||
|
|
|
@ -29,8 +29,8 @@ class SettingsGeneralController : SettingsController() {
|
||||||
listPreference {
|
listPreference {
|
||||||
key = Keys.lang
|
key = Keys.lang
|
||||||
titleRes = R.string.pref_language
|
titleRes = R.string.pref_language
|
||||||
entryValues = arrayOf("", "bg", "de", "en", "es", "fr", "it", "lv", "nl", "pl", "pt",
|
entryValues = arrayOf("", "ar", "bg", "de", "en", "es", "fr", "id", "it", "lv", "ms",
|
||||||
"pt-BR", "ru", "vi")
|
"nl", "pl", "pt", "pt-BR", "ru", "vi")
|
||||||
entries = entryValues.map { value ->
|
entries = entryValues.map { value ->
|
||||||
val locale = LocaleHelper.getLocaleFromString(value.toString())
|
val locale = LocaleHelper.getLocaleFromString(value.toString())
|
||||||
locale?.getDisplayName(locale)?.capitalize() ?:
|
locale?.getDisplayName(locale)?.capitalize() ?:
|
||||||
|
|
|
@ -1,5 +1,19 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<changelog bulletedList="true">
|
<changelog bulletedList="true">
|
||||||
|
<changelogversion versionName="v0.6.4" changeDate="">
|
||||||
|
<changelogtext>Added a global search feature with a new catalogue screen.</changelogtext>
|
||||||
|
|
||||||
|
<changelogtext>Added an option to show downloaded chapters badges in the library.</changelogtext>
|
||||||
|
|
||||||
|
<changelogtext>Added an scrollbar in the chapter list.</changelogtext>
|
||||||
|
|
||||||
|
<changelogtext>Fixed some issues with bundled catalogues.</changelogtext>
|
||||||
|
|
||||||
|
<changelogtext>Changed the page indicator in the reader to support devices with rounded corners.</changelogtext>
|
||||||
|
|
||||||
|
<changelogtext>Crash fixes.</changelogtext>
|
||||||
|
</changelogversion>
|
||||||
|
|
||||||
<changelogversion versionName="v0.6.3" changeDate="">
|
<changelogversion versionName="v0.6.3" changeDate="">
|
||||||
<changelogtext>Fixed a crash when retrying a page.</changelogtext>
|
<changelogtext>Fixed a crash when retrying a page.</changelogtext>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue