mirror of
https://github.com/Suwayomi/TachideskJUI.git
synced 2025-12-10 23:02:04 +01:00
15 lines
449 B
Kotlin
15 lines
449 B
Kotlin
import org.gradle.api.JavaVersion
|
|
|
|
object Config {
|
|
const val migrationCode = 3
|
|
|
|
// Tachidesk-Server version
|
|
const val tachideskVersion = "v0.7.0"
|
|
// Match this to the Tachidesk-Server commit count
|
|
const val serverCode = 1198
|
|
const val preview = true
|
|
const val previewCommit = "d4e71274f94a066309cb4881042cf4673075a5d0"
|
|
|
|
val desktopJvmTarget = JavaVersion.VERSION_17
|
|
val androidJvmTarget = JavaVersion.VERSION_11
|
|
} |