From dcbd72e64d2e0b8f1f7f3597e48e66668bf88c5a Mon Sep 17 00:00:00 2001 From: len Date: Sun, 30 Oct 2016 17:39:16 +0100 Subject: [PATCH] Release 0.3.2 --- app/build.gradle | 4 ++-- app/proguard-rules.pro | 3 +++ app/src/main/res/raw/changelog_release.xml | 6 ++++++ 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 4af28c2dda..700fb55d5a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -42,8 +42,8 @@ android { minSdkVersion 16 targetSdkVersion 24 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" - versionCode 12 - versionName "0.3.1" + versionCode 13 + versionName "0.3.2" buildConfigField "String", "COMMIT_COUNT", "\"${getCommitCount()}\"" buildConfigField "String", "COMMIT_SHA", "\"${getGitSha()}\"" diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro index 74d99a9283..135ba44113 100644 --- a/app/proguard-rules.pro +++ b/app/proguard-rules.pro @@ -2,6 +2,9 @@ -keep class eu.kanade.tachiyomi.** +-keep class com.hippo.image.** { *; } +-keep interface com.hippo.image.** { *; } + # OkHttp -keepattributes Signature -keepattributes *Annotation* diff --git a/app/src/main/res/raw/changelog_release.xml b/app/src/main/res/raw/changelog_release.xml index 7b3d7d6300..feda80dc0b 100644 --- a/app/src/main/res/raw/changelog_release.xml +++ b/app/src/main/res/raw/changelog_release.xml @@ -1,6 +1,12 @@ + + Added a new image decoder. It should be faster than Rapid and more reliable than Skia. + + Removed the advanced setting reencode images. Use the new image decoder instead. + + Fixed a crash when opening latest updates. ([a href="https://github.com/inorichi/tachiyomi/issues/495"]#495[/a])