Update Tachidesk to v0.4.9

This commit is contained in:
Syer10
2021-09-03 20:02:14 -04:00
parent 9cf2135eb2
commit 9929439fc9
2 changed files with 5 additions and 5 deletions

View File

@@ -1,11 +1,11 @@
import org.gradle.api.JavaVersion
object Config {
const val tachideskVersion = "v0.4.7"
// Bump this when updating the Tachidesk version or Preview commit
const val serverCode = 842
const val tachideskVersion = "v0.4.9"
// Match this to the Tachidesk-Server commit count
const val serverCode = 875
const val preview = true
const val previewCommit = "a8ef6cdd4f10eaf0d265fc8a422fdd9bc4a28cfd"
const val previewCommit = "b05b817aebdb512b73765940645b4db7763a8909"
val jvmTarget = JavaVersion.VERSION_15
}

View File

@@ -16,7 +16,7 @@ data class Source(
val iconUrl: String,
val supportsLatest: Boolean,
val isConfigurable: Boolean,
val isNSFW: Boolean
val isNsfw: Boolean
) {
fun iconUrl(serverUrl: String) = serverUrl + iconUrl
}