File tree 2 files changed +3
-4
lines changed
src/main/java/net/ccbluex/liquidbounce
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1
1
org.gradle.jvmargs =-Xmx3g
2
2
3
- mod_version =b6
3
+ mod_version =b7
4
4
maven_group =net.ccbluex
5
5
archives_base_name =FDPClient
6
6
Original file line number Diff line number Diff line change 5
5
*/
6
6
package net.ccbluex.liquidbounce
7
7
8
- import kotlinx.coroutines.*
9
8
import net.ccbluex.liquidbounce.handler.api.ClientUpdate.gitInfo
10
9
import net.ccbluex.liquidbounce.handler.api.loadSettings
11
10
import net.ccbluex.liquidbounce.handler.api.messageOfTheDay
@@ -62,7 +61,7 @@ object FDPClient {
62
61
const val CLIENT_AUTHOR = " Zywl 1zuna"
63
62
const val CLIENT_CLOUD = " https://cloud.liquidbounce.net/LiquidBounce"
64
63
const val CLIENT_WEBSITE = " fdpinfo.github.io"
65
- const val CLIENT_VERSION = " b6 "
64
+ const val CLIENT_VERSION = " b7 "
66
65
67
66
val clientVersionText = gitInfo[" git.build.version" ]?.toString() ? : " unknown"
68
67
val clientVersionNumber = clientVersionText.substring(1 ).toIntOrNull() ? : 0 // version format: "b<VERSION>" on legacy
@@ -73,7 +72,7 @@ object FDPClient {
73
72
* Defines if the client is in development mode.
74
73
* This will enable update checking on commit time instead of regular legacy versioning.
75
74
*/
76
- const val IN_DEV = true
75
+ const val IN_DEV = false
77
76
78
77
val clientTitle = CLIENT_NAME + " " + clientVersionText + " " + clientCommit + " | " + if (IN_DEV ) " | DEVELOPMENT BUILD" else " "
79
78
You can’t perform that action at this time.
0 commit comments