Skip to content

Commit

Permalink
release: b7
Browse files Browse the repository at this point in the history
  • Loading branch information
opZywl committed Sep 1, 2024
1 parent c89be14 commit 25d9fe5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
org.gradle.jvmargs=-Xmx3g

mod_version=b6
mod_version=b7
maven_group=net.ccbluex
archives_base_name=FDPClient

Expand Down
5 changes: 2 additions & 3 deletions src/main/java/net/ccbluex/liquidbounce/FDPClient.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
*/
package net.ccbluex.liquidbounce

import kotlinx.coroutines.*
import net.ccbluex.liquidbounce.handler.api.ClientUpdate.gitInfo
import net.ccbluex.liquidbounce.handler.api.loadSettings
import net.ccbluex.liquidbounce.handler.api.messageOfTheDay
Expand Down Expand Up @@ -62,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 = "b6"
const val CLIENT_VERSION = "b7"

val clientVersionText = gitInfo["git.build.version"]?.toString() ?: "unknown"
val clientVersionNumber = clientVersionText.substring(1).toIntOrNull() ?: 0 // version format: "b<VERSION>" on legacy
Expand All @@ -73,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 25d9fe5

Please sign in to comment.