Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev/main' into dev/main
Browse files Browse the repository at this point in the history
  • Loading branch information
ForteScarlet committed Jun 23, 2024
2 parents 73739c6 + f726fc5 commit f75de77
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/P.kt
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ object P {
override val homepage: String get() = HOMEPAGE


private val baseVersion = v(0, 9, 0)
private val baseVersion = v(0, 9, 1)

val snapshotVersion = baseVersion - Version.SNAPSHOT
override val version = if (isSnapshot()) snapshotVersion else baseVersion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -557,4 +557,4 @@ public fun <T : Any> OneBotApi<T>.requestDataReserve(


internal actual fun initConfig(key: String, default: String?): String? =
System.getProperty(key)
System.getProperty(key) ?: default
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
<Logger name="love.forte.simbot.component.onebot" level="debug" additivity="false">
<AppenderRef ref="Console"/>
</Logger>
<Logger name="io.ktor.client" level="debug" additivity="false">
<AppenderRef ref="Console"/>
</Logger>
<Root level="error">
<AppenderRef ref="Console"/>
</Root>
Expand Down

0 comments on commit f75de77

Please sign in to comment.