From 9d5cf9163a104bac7aed1674212fa5882c7a1c45 Mon Sep 17 00:00:00 2001 From: inorichi Date: Sun, 13 May 2018 11:56:24 +0200 Subject: [PATCH] Release v0.7.4 --- app/build.gradle | 4 +- .../ui/setting/SettingsAboutController.kt | 21 ++++--- app/src/main/res/raw/changelog_release.xml | 62 ++++--------------- 3 files changed, 25 insertions(+), 62 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index f3faa03942..4c064f4919 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -38,8 +38,8 @@ android { minSdkVersion 16 targetSdkVersion 27 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" - versionCode 36 - versionName "0.7.3" + versionCode 37 + versionName "0.7.4" buildConfigField "String", "COMMIT_COUNT", "\"${getCommitCount()}\"" buildConfigField "String", "COMMIT_SHA", "\"${getGitSha()}\"" diff --git a/app/src/main/java/eu/kanade/tachiyomi/ui/setting/SettingsAboutController.kt b/app/src/main/java/eu/kanade/tachiyomi/ui/setting/SettingsAboutController.kt index a39a66f546..a736da2a5e 100644 --- a/app/src/main/java/eu/kanade/tachiyomi/ui/setting/SettingsAboutController.kt +++ b/app/src/main/java/eu/kanade/tachiyomi/ui/setting/SettingsAboutController.kt @@ -22,7 +22,8 @@ import timber.log.Timber import java.text.DateFormat import java.text.ParseException import java.text.SimpleDateFormat -import java.util.* +import java.util.Locale +import java.util.TimeZone import eu.kanade.tachiyomi.data.preference.PreferenceKeys as Keys @@ -78,6 +79,15 @@ class SettingsAboutController : SettingsController() { startActivity(intent) } } + preference { + title = "Github" + val url = "https://github.com/inorichi/tachiyomi" + summary = url + onClick { + val intent = Intent(Intent.ACTION_VIEW, Uri.parse(url)) + startActivity(intent) + } + } preference { titleRes = R.string.version summary = if (BuildConfig.DEBUG) @@ -93,15 +103,6 @@ class SettingsAboutController : SettingsController() { titleRes = R.string.build_time summary = getFormattedBuildTime() } - preference { - title = "Github" - val url = "https://github.com/inorichi/tachiyomi" - summary = url - onClick { - val intent = Intent(Intent.ACTION_VIEW, Uri.parse(url)) - startActivity(intent) - } - } } override fun onDestroyView(view: View) { diff --git a/app/src/main/res/raw/changelog_release.xml b/app/src/main/res/raw/changelog_release.xml index c61969bef7..51de2f10d6 100644 --- a/app/src/main/res/raw/changelog_release.xml +++ b/app/src/main/res/raw/changelog_release.xml @@ -1,5 +1,17 @@ + + Updated Anilist's API to v2. + + Added Github link to about. + + Fixed indonesian language not working. + + Fixed an issue on KitKat that crashed the app when scheduling updates. + + Fixed a few more issues introduced on the previous release. + + Fixed the tracking search layout when there are many results. @@ -197,54 +209,4 @@ Fixed lost covers on some devices. - - Added support for Anilist and Kitsu. - - Added library refresh option to library updates tab. - - Back button closes drawers before exiting the app. - - Fixed issues when using custom app language. - - Fixed updater in Android N. - - Fixed Mangafox search. - - - - Added an app's language selector. - - Added options to sort the library and merged them with the filters. - - Added an option to automatically download chapters. - - Fixed performance issues when using a custom downloads directory, especially in the library updates tab. - - Fixed gesture conflicts with the contextual menu and the webtoon reader. - - Fixed wrong page direction when using volume keys for the right to left reader. - - Fixed many crashes. - - - - The download manager has been rewritten and it's possible some of your downloads - aren't recognized anymore. It's recommended to manually delete everything and start over. - - - Now it's possible to download to any folder in a SD card. - - The download directory setting has been reset. - - Active downloads now persist after restarts. - - Allow to bookmark chapters. - - Allow to share or save a single page while reading with a long tap. - - Added italian translation. - - Image is now the default decoder. - -