Skip to content

Commit

Permalink
release b9
Browse files Browse the repository at this point in the history
  • Loading branch information
opZywl committed Nov 3, 2024
1 parent 4497c00 commit 5635c78
Show file tree
Hide file tree
Showing 3 changed files with 4 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=b8
mod_version=b9
maven_group=net.ccbluex
archives_base_name=FDPClient

Expand Down
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 @@ -63,7 +63,7 @@ object FDPClient {
const val CLIENT_AUTHOR = "Zywl"
const val CLIENT_CLOUD = "https://cloud.liquidbounce.net/LiquidBounce"
const val CLIENT_WEBSITE = "fdpinfo.github.io"
const val CLIENT_VERSION = "b8"
const val CLIENT_VERSION = "b9"

val clientVersionText = gitInfo["git.build.version"]?.toString() ?: "unknown"
val clientVersionNumber = clientVersionText.substring(1).toIntOrNull() ?: 0 // version format: "b<VERSION>" on legacy
Expand All @@ -74,7 +74,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
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import java.awt.Color
object ClickGUIModule : Module("ClickGUI", Category.CLIENT, Keyboard.KEY_RSHIFT, canBeEnabled = false) {
var lastScale = 0
private val style by
object : ListValue("Style", arrayOf("Black", "Zywl", "FDP"), "Black") {
object : ListValue("Style", arrayOf("Black", "Zywl", "FDP"), "FDP") {
override fun onChanged(oldValue: String, newValue: String) = updateStyle()
}
var scale by FloatValue("Scale", 0.8f, 0.5f..1.5f)
Expand Down

0 comments on commit 5635c78

Please sign in to comment.