mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
bump
This commit is contained in:
parent
2bed79b1f1
commit
6957a8f95d
2 changed files with 10 additions and 3 deletions
|
@ -58,8 +58,8 @@ android {
|
|||
minSdk = 21
|
||||
targetSdk = 33
|
||||
|
||||
versionCode = 59
|
||||
versionName = "4.1.8"
|
||||
versionCode = 60
|
||||
versionName = "4.1.9"
|
||||
|
||||
resValue("string", "app_version", "${defaultConfig.versionName}${versionNameSuffix ?: ""}")
|
||||
resValue("string", "commit_hash", "git rev-parse --short HEAD".execute() ?: "")
|
||||
|
|
|
@ -179,6 +179,13 @@ object APIHolder {
|
|||
|
||||
private var trackerCache: HashMap<String, AniSearch> = hashMapOf()
|
||||
|
||||
/** backwards compatibility, use getTracker4 instead */
|
||||
suspend fun getTracker(
|
||||
titles: List<String>,
|
||||
types: Set<TrackerType>?,
|
||||
year: Int?,
|
||||
): Tracker? = getTracker(titles, types, year, false)
|
||||
|
||||
/**
|
||||
* Get anime tracker information based on title, year and type.
|
||||
* Both titles are attempted to be matched with both Romaji and English title.
|
||||
|
@ -192,7 +199,7 @@ object APIHolder {
|
|||
titles: List<String>,
|
||||
types: Set<TrackerType>?,
|
||||
year: Int?,
|
||||
lessAccurate: Boolean = false
|
||||
lessAccurate: Boolean
|
||||
): Tracker? {
|
||||
return try {
|
||||
require(titles.isNotEmpty()) { "titles must no be empty when calling getTracker" }
|
||||
|
|
Loading…
Reference in a new issue