Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Commit

Permalink
v0.1.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
ManInMyVan committed Dec 15, 2023
1 parent fb1ecac commit e271d4e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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=v0.0.1
mod_version=v0.1.0
maven_group=net.ccbluex
archives_base_name=skidbounce

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/net/ccbluex/liquidbounce/LiquidBounce.kt
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ object LiquidBounce {
val clientVersionNumber = clientVersionText.substring(1).toIntOrNull() ?: 0 // version format: "b<VERSION>" on legacy
val clientCommit = gitInfo["git.commit.id.abbrev"]?.let { "git-$it" } ?: "unknown"
val clientBranch = gitInfo["git.branch"]?.toString() ?: "unknown"
const val IN_DEV = true
const val IN_DEV = false
const val CLIENT_CREATOR = "CCBlueX"
const val CLIENT_CLOUD = "https://cloud.liquidbounce.net/LiquidBounce"

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

var isStarting = true

Expand Down

0 comments on commit e271d4e

Please sign in to comment.