Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

Commit

Permalink
Merge branch 'dev' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
StarWishsama committed Oct 24, 2021
2 parents 92c3827 + 36ce2c8 commit 4045767
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ dependencies {

implementation("net.mamoe:mirai-core-all:$miraiVersion")

implementation 'cn.hutool:hutool-http:5.7.13'
implementation 'cn.hutool:hutool-crypto:5.7.13'
implementation 'cn.hutool:hutool-http:5.7.15'
implementation 'cn.hutool:hutool-crypto:5.7.15'

implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.apache.commons:commons-io:1.3.2'
Expand All @@ -84,7 +84,7 @@ dependencies {
implementation 'com.squareup.retrofit2:converter-jackson:2.9.0'

// Jline a Java library for handling console input @ https://github.com/jline/jline3
implementation 'org.jline:jline:3.20.0'
implementation 'org.jline:jline:3.21.0'

// Jansi needed by JLine
implementation 'org.fusesource.jansi:jansi:2.4.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class ArkNightCommand : ChatCommand {
override suspend fun execute(event: MessageEvent, args: List<String>, user: CometUser): MessageChain {
if (!GachaService.isArkNightUsable()) {
return if (GachaService.isDownloading()) {
"正在下载明日方舟数据, 请稍后...".toChain()
"正在下载明日方舟数据, 请稍候...".toChain()
} else {
GachaService.downloadArkNightData()
"还未下载明日方舟数据, 开始自动下载...".toChain()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class BiliBiliCommand : ChatCommand {
}
}

return "正在刷新动态, 请稍后".toChain()
return "正在刷新动态, 请稍候".toChain()
} else {
toChain("抱歉, 该命令仅限群聊使用!")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ object JikiPediaService {
fun searchJiki(event: MessageEvent, input: String): MessageChain {
NetworkRequestManager.addTask(JikiPediaRequestTask(event.subject, input))

return "请稍后...".toChain()
return "请稍候...".toChain()
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ object NoAbbrService {
fun parseAbbr(event: MessageEvent, input: String): MessageChain {
NetworkRequestManager.addTask(NoAbbrRequestTask(event.subject, input))

return "请稍后...".toChain()
return "请稍候...".toChain()
}
}

0 comments on commit 4045767

Please sign in to comment.