mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-10 08:47:49 +01:00
Release 0.1.4
This commit is contained in:
parent
75ae4081d8
commit
110df59197
4 changed files with 33 additions and 9 deletions
2
.github/ISSUE_TEMPLATE.md
vendored
2
.github/ISSUE_TEMPLATE.md
vendored
|
@ -1,4 +1,4 @@
|
||||||
**Please read https://github.com/inorichi/tachiyomi/blob/master/CONTRIBUTING.md before posting**
|
**Please read https://github.com/inorichi/tachiyomi/blob/master/.github/CONTRIBUTING.md before posting**
|
||||||
|
|
||||||
Remove line above and describe your issue here. Fill out version below.
|
Remove line above and describe your issue here. Fill out version below.
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
[![stable release](https://img.shields.io/badge/release-v0.1.3-blue.svg)](https://github.com/inorichi/tachiyomi/releases)
|
[![stable release](https://img.shields.io/badge/release-v0.1.4-blue.svg)](https://github.com/inorichi/tachiyomi/releases)
|
||||||
[![fdroid release](https://img.shields.io/badge/release-F--Droid-blue.svg)](https://f-droid.org/repository/browse/?fdid=eu.kanade.tachiyomi)
|
[![fdroid release](https://img.shields.io/badge/release-F--Droid-blue.svg)](https://f-droid.org/repository/browse/?fdid=eu.kanade.tachiyomi)
|
||||||
[![latest debug build](https://img.shields.io/badge/debug-latest%20build-blue.svg)](http://tachiyomi.kanade.eu/latest/app-debug.apk)
|
[![latest debug build](https://img.shields.io/badge/debug-latest%20build-blue.svg)](http://tachiyomi.kanade.eu/latest/app-debug.apk)
|
||||||
|
|
||||||
|
|
|
@ -42,8 +42,8 @@ android {
|
||||||
minSdkVersion 16
|
minSdkVersion 16
|
||||||
targetSdkVersion 23
|
targetSdkVersion 23
|
||||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||||
versionCode 4
|
versionCode 5
|
||||||
versionName "0.1.3"
|
versionName "0.1.4"
|
||||||
|
|
||||||
buildConfigField "String", "COMMIT_COUNT", "\"${getCommitCount()}\""
|
buildConfigField "String", "COMMIT_COUNT", "\"${getCommitCount()}\""
|
||||||
buildConfigField "String", "COMMIT_SHA", "\"${getGitSha()}\""
|
buildConfigField "String", "COMMIT_SHA", "\"${getGitSha()}\""
|
||||||
|
|
34
app/proguard-rules.pro
vendored
34
app/proguard-rules.pro
vendored
|
@ -39,14 +39,17 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
## GreenRobot EventBus specific rules ##
|
## GreenRobot EventBus specific rules ##
|
||||||
# https://github.com/greenrobot/EventBus/blob/master/HOWTO.md#proguard-configuration
|
# http://greenrobot.org/eventbus/documentation/proguard/
|
||||||
|
-keepattributes *Annotation*
|
||||||
-keepclassmembers class ** {
|
-keepclassmembers class ** {
|
||||||
public void onEvent*(***);
|
@org.greenrobot.eventbus.Subscribe <methods>;
|
||||||
}
|
}
|
||||||
|
-keep enum org.greenrobot.eventbus.ThreadMode { *; }
|
||||||
|
|
||||||
# Don't warn for missing support classes
|
# Only required if you use AsyncExecutor
|
||||||
-dontwarn de.greenrobot.event.util.*$Support
|
-keepclassmembers class * extends org.greenrobot.eventbus.util.ThrowableFailureEvent {
|
||||||
-dontwarn de.greenrobot.event.util.*$SupportManagerFragment
|
<init>(java.lang.Throwable);
|
||||||
|
}
|
||||||
|
|
||||||
# Glide specific rules #
|
# Glide specific rules #
|
||||||
# https://github.com/bumptech/glide
|
# https://github.com/bumptech/glide
|
||||||
|
@ -73,6 +76,27 @@
|
||||||
rx.internal.util.atomic.LinkedQueueNode consumerNode;
|
rx.internal.util.atomic.LinkedQueueNode consumerNode;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Retrofit 1.X
|
||||||
|
|
||||||
|
-keep class com.squareup.okhttp.** { *; }
|
||||||
|
-keep class retrofit.** { *; }
|
||||||
|
-keep interface com.squareup.okhttp.** { *; }
|
||||||
|
|
||||||
|
-dontwarn com.squareup.okhttp.**
|
||||||
|
-dontwarn okio.**
|
||||||
|
-dontwarn retrofit.**
|
||||||
|
-dontwarn rx.**
|
||||||
|
|
||||||
|
-keepclasseswithmembers class * {
|
||||||
|
@retrofit.http.* <methods>;
|
||||||
|
}
|
||||||
|
|
||||||
|
# If in your rest service interface you use methods with Callback argument.
|
||||||
|
-keepattributes Exceptions
|
||||||
|
|
||||||
|
# If your rest service methods throw custom exceptions, because you've defined an ErrorHandler.
|
||||||
|
-keepattributes Signature
|
||||||
|
|
||||||
# AppCombat
|
# AppCombat
|
||||||
-keep public class android.support.v7.widget.** { *; }
|
-keep public class android.support.v7.widget.** { *; }
|
||||||
-keep public class android.support.v7.internal.widget.** { *; }
|
-keep public class android.support.v7.internal.widget.** { *; }
|
||||||
|
|
Loading…
Reference in a new issue