Skip to content

Commit

Permalink
release: b8
Browse files Browse the repository at this point in the history
  • Loading branch information
opZywl committed Oct 5, 2024
1 parent 56ac5f3 commit dd25a2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/net/ccbluex/liquidbounce/FDPClient.kt
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ object FDPClient {
const val CLIENT_AUTHOR = "Zywl 1zuna"
const val CLIENT_CLOUD = "https://cloud.liquidbounce.net/LiquidBounce"
const val CLIENT_WEBSITE = "fdpinfo.github.io"
const val CLIENT_VERSION = "b7"
const val CLIENT_VERSION = "b8"

val clientVersionText = gitInfo["git.build.version"]?.toString() ?: "unknown"
val clientVersionNumber = clientVersionText.substring(1).toIntOrNull() ?: 0 // version format: "b<VERSION>" on legacy
Expand All @@ -72,7 +72,7 @@ object FDPClient {
* Defines if the client is in development mode.
* This will enable update checking on commit time instead of regular legacy versioning.
*/
const val IN_DEV = true
const val IN_DEV = false

val clientTitle = CLIENT_NAME + " " + clientVersionText + " " + clientCommit + " | " + if (IN_DEV) " | DEVELOPMENT BUILD" else ""

Expand Down

0 comments on commit dd25a2e

Please sign in to comment.