mirror of
https://github.com/mamoe/mirai.git
synced 2025-01-10 18:40:15 +08:00
Fix Terminal version rendering.
This commit is contained in:
parent
05c5e60492
commit
5ef8cec447
@ -100,8 +100,8 @@ tasks {
|
||||
})"""
|
||||
}
|
||||
.replace(
|
||||
Regex("""val version: SemVersion = SemVersion.parse\(".*"\)""")
|
||||
) { """val version: SemVersion = SemVersion.parse("${project.version}")""" }
|
||||
Regex("""const val versionConst:\s+String\s+=\s+".*"""")
|
||||
) { """const val versionConst: String = "${project.version}"""" }
|
||||
)
|
||||
}
|
||||
}
|
||||
|
@ -14,8 +14,9 @@ import java.time.Instant
|
||||
|
||||
internal object MiraiConsoleBuildConstants { // auto-filled on build (task :mirai-console:fillBuildConstants)
|
||||
@JvmStatic
|
||||
val buildDate: Instant = Instant.ofEpochSecond(1600663022)
|
||||
val buildDate: Instant = Instant.ofEpochSecond(1601134282)
|
||||
const val versionConst: String = "1.0-RC-dev-29"
|
||||
|
||||
@JvmStatic
|
||||
val version: SemVersion = SemVersion("1.0-RC-dev-28")
|
||||
val version: SemVersion = SemVersion(versionConst)
|
||||
}
|
||||
|
@ -151,7 +151,9 @@ val terminal: Terminal = run {
|
||||
private object ConsoleFrontEndDescImpl : MiraiConsoleFrontEndDescription {
|
||||
override val name: String get() = "Terminal"
|
||||
override val vendor: String get() = "Mamoe Technologies"
|
||||
override val version: SemVersion = net.mamoe.mirai.console.internal.MiraiConsoleBuildConstants.version
|
||||
// net.mamoe.mirai.console.internal.MiraiConsoleBuildConstants.version
|
||||
// is console's version not frontend's version
|
||||
override val version: SemVersion = SemVersion(net.mamoe.mirai.console.internal.MiraiConsoleBuildConstants.versionConst)
|
||||
}
|
||||
|
||||
private val ANSI_RESET = Ansi().reset().toString()
|
||||
|
@ -59,7 +59,8 @@ object MiraiConsoleTerminalLoader {
|
||||
@ConsoleTerminalExperimentalApi
|
||||
fun printHelpMessage() {
|
||||
val help = listOf(
|
||||
"" to "Mirai-Console[Terminal FrontEnd] v" + kotlin.runCatching {
|
||||
"" to "Mirai-Console[Terminal FrontEnd] v" + net.mamoe.mirai.console.internal.MiraiConsoleBuildConstants.versionConst,
|
||||
"" to " [ BackEnd] v" + kotlin.runCatching {
|
||||
net.mamoe.mirai.console.internal.MiraiConsoleBuildConstants.version
|
||||
}.getOrElse { "<unknown>" },
|
||||
"" to "",
|
||||
|
Loading…
Reference in New Issue
Block a user