File tree 5 files changed +14
-5
lines changed
main/kotlin/xyz/cssxsh/mirai/arknights
test/kotlin/xyz/cssxsh/arknights
5 files changed +14
-5
lines changed Original file line number Diff line number Diff line change
1
+ ## v2.2.2 (23/09/..)
2
+
3
+ 1 . fix: copyTo
4
+ 2 . fix: ignore
5
+
6
+ ## v2.2.1 (23/08/03)
7
+
8
+ 1 . update: repositories
9
+ 2 . fix: game data
10
+
1
11
## v2.2.0 (23/07/13)
2
12
3
13
1 . update: dependencies mirai 2.15.0
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ B. 选项
138
138
139
139
### 助手表情指令
140
140
141
- ** 需要 [ Meme Helper] ( https://github.com/cssxsh/meme-helper ) 作为前置**
141
+ ** 需要 [ Meme Helper] ( https://github.com/cssxsh/meme-helper ) 作为前置**
142
142
143
143
| 指令 | 描述 |
144
144
| :-------------------------------| :---------|
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ plugins {
7
7
}
8
8
9
9
group = " xyz.cssxsh"
10
- version = " 2.2.1 "
10
+ version = " 2.2.2 "
11
11
12
12
mavenCentralPublish {
13
13
useCentralS01()
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import kotlin.collections.*
12
12
13
13
@PublishedApi
14
14
internal object ArknightsHelperPlugin : KotlinPlugin(
15
- JvmPluginDescription ("xyz.cssxsh.mirai.plugin.arknights-helper", "2.2.1 ") {
15
+ JvmPluginDescription ("xyz.cssxsh.mirai.plugin.arknights-helper", "2.2.2 ") {
16
16
name("arknights-helper")
17
17
author("cssxsh")
18
18
Original file line number Diff line number Diff line change @@ -9,11 +9,10 @@ import xyz.cssxsh.arknights.excel.*
9
9
import xyz.cssxsh.arknights.weibo.*
10
10
import xyz.cssxsh.arknights.penguin.*
11
11
import xyz.cssxsh.arknights.prts.*
12
- import java.io.File
13
12
import java.time.*
14
13
15
14
internal class CacheDataHolderTest {
16
- private val folder = File (" ./test " ).apply { mkdirs() }
15
+ private val folder = java.io. File (" ./run " ).apply { mkdirs() }
17
16
private val ignore: suspend (Throwable ) -> Boolean = { it is java.io.IOException }
18
17
private val video = VideoDataHolder (folder = folder, ignore = ignore)
19
18
private val blog = MicroBlogDataHolder (folder = folder, ignore = ignore)
You can’t perform that action at this time.
0 commit comments