Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
DatL4g committed Nov 16, 2024
1 parent d74ec97 commit eb7eba8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ data object K2Kast : AutoCloseable {
private var scope: CoroutineScope? = null
private val connectedHost = MutableStateFlow<Host?>(null)

private const val DISCOVER_PORT = 7330
private const val CONNECTION_PORT = 7332

val code: String by lazy {
NanoIdUtils.randomNanoId(
alphabet = "0123456789".toCharArray(),
Expand Down Expand Up @@ -91,7 +94,7 @@ data object K2Kast : AutoCloseable {

showClient = scope.discovery {
setShowTimeout(0L)
setPort(7330)
setPort(DISCOVER_PORT)
}
}

Expand All @@ -102,7 +105,7 @@ data object K2Kast : AutoCloseable {

searchClient = scope.discovery {
setSearchTimeout(0L)
setPort(7330)
setPort(DISCOVER_PORT)
}
}

Expand All @@ -112,7 +115,7 @@ data object K2Kast : AutoCloseable {
}

connection = scope.connection {
setPort(7332)
setPort(CONNECTION_PORT)
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
app = "6.0.0"
app = "6.1.0"
aboutlibraries = "11.2.3"
ackpine = "0.8.3"
activity = "1.9.3"
Expand Down

0 comments on commit eb7eba8

Please sign in to comment.