Skip to content

Commit

Permalink
proguard, version number, changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
az4521 committed Jun 6, 2022
1 parent 08037d9 commit bc7fcd0
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ android {
minSdkVersion 21
targetSdkVersion 29
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
versionCode 8680
versionName "v8.6.8-AZ"
versionCode 8700
versionName "v8.7.0-AZ"

buildConfigField "String", "COMMIT_COUNT", "\"${getCommitCount()}\""
buildConfigField "String", "COMMIT_SHA", "\"${getGitSha()}\""
Expand Down
1 change: 1 addition & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
-keep,allowoptimization class com.google.gson.** { public protected *; }
-keep,allowoptimization class com.github.salomonbrys.kotson.** { public protected *; }
-keep,allowoptimization class com.squareup.duktape.** { public protected *; }
-keep,allowoptimization class app.cash.quickjs.** { public protected *; }
-keep,allowoptimization class androidx.preference.** { *; }
-keep,allowoptimization class okio.** { *; }
-keep,allowoptimization class kotlinx.serialization.** { *; }
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package eu.kanade.tachiyomi.network.interceptor

import android.os.SystemClock
import java.util.concurrent.TimeUnit
import okhttp3.Interceptor
import okhttp3.OkHttpClient
import okhttp3.Response
import java.util.concurrent.TimeUnit

/**
* An OkHttp interceptor that handles rate limiting.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package eu.kanade.tachiyomi.network.interceptor

import android.os.SystemClock
import java.util.concurrent.TimeUnit
import okhttp3.HttpUrl
import okhttp3.Interceptor
import okhttp3.OkHttpClient
import okhttp3.Response
import java.util.concurrent.TimeUnit

/**
* An OkHttp interceptor that handles given url host's rate limiting.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -382,9 +382,9 @@ class MangaInfoController(private val fromSource: Boolean = false) :
SManga.ONGOING -> R.string.ongoing
SManga.COMPLETED -> R.string.completed
SManga.LICENSED -> R.string.licensed
SManga.PUBLISHING_FINISHED -> R.string.publishing_finished
SManga.CANCELLED -> R.string.cancelled
SManga.ON_HIATUS -> R.string.on_hiatus
SManga.PUBLISHING_FINISHED -> R.string.publishing_finished
SManga.CANCELLED -> R.string.cancelled
SManga.ON_HIATUS -> R.string.on_hiatus
else -> R.string.unknown
}
)
Expand Down
3 changes: 3 additions & 0 deletions app/src/main/res/raw/changelog_release.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog bulletedList="true">
<changelogversion versionName="v8.7.0-AZ" changeDate="">
<changelogtext>Add support for 1.3 extlib (this means extensions will work again)</changelogtext>
</changelogversion>
<changelogversion versionName="v8.6.8-AZ" changeDate="">
<changelogtext>Literally 1984, removed library refresh times below 12 hours. The Tachiyomi people required this.</changelogtext>
<changelogtext>tracker updates now queue up when offline and update on reconnect</changelogtext>
Expand Down

0 comments on commit bc7fcd0

Please sign in to comment.