Skip to content

Commit 9d73fc2

Browse files
committed
build: 2.5.1
1 parent f3f00ee commit 9d73fc2

4 files changed

Lines changed: 12 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
# 2.5.0 (23/08/..)
1+
# 2.5.1(23/09/08)
2+
3+
1. feat: setup chrome command
4+
5+
# 2.5.0 (23/08/12)
26

37
1. update: mirai 2.15
8+
2. feat: fetchChromeVersion
9+
3. fix: setupChrome
410

511
# 2.4.0 (23/06/18)
612

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ mirai {
5757
* `/selenium status` 驱动进程状态
5858
* `/selenium firefox` 下载解压 firefox
5959
* `/selenium chromium` 下载解压 chromium
60+
* `/selenium chrome` 下载解压 chrome
6061
* `/selenium chart` 测试 图表绘制功能,将以群员入群事件和发言时间为数据集
6162

6263
## 配置

build.gradle.kts

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ plugins {
22
kotlin("jvm") version "1.8.10"
33
kotlin("plugin.serialization") version "1.8.10"
44

5-
id("net.mamoe.mirai-console") version "2.15.0"
5+
id("net.mamoe.mirai-console") version "2.16.0-RC"
66
id("me.him188.maven-central-publish") version "1.0.0-dev-3"
77
id("me.him188.kotlin-jvm-blocking-bridge") version "2.2.0-180.1"
88
}
99

1010
group = "xyz.cssxsh.mirai"
11-
version = "2.5.0"
11+
version = "2.5.1"
1212

1313
mavenCentralPublish {
1414
useCentralS01()
@@ -24,7 +24,6 @@ mavenCentralPublish {
2424
repositories {
2525
mavenLocal()
2626
mavenCentral()
27-
maven("https://repo.mirai.mamoe.net/snapshots")
2827
}
2928

3029
dependencies {
@@ -35,7 +34,7 @@ dependencies {
3534
testImplementation(kotlin("test"))
3635
testImplementation("org.icepear.echarts:echarts-java:1.0.7")
3736
//
38-
implementation(platform("net.mamoe:mirai-bom:2.16.0-dev-133"))
37+
implementation(platform("net.mamoe:mirai-bom:2.16.0-RC"))
3938
testImplementation("net.mamoe:mirai-logging-slf4j")
4039
testImplementation("net.mamoe:mirai-console-compiler-common")
4140
//
@@ -53,8 +52,6 @@ kotlin {
5352

5453
mirai {
5554
jvmTarget = JavaVersion.VERSION_11
56-
coreVersion = "2.16.0-dev-133"
57-
consoleVersion = "2.16.0-dev-133"
5855
if (System.getenv("CI").toBoolean()) {
5956
useTestConsoleFrontEnd = null
6057
}

src/main/kotlin/xyz/cssxsh/mirai/selenium/MiraiSeleniumPlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public object MiraiSeleniumPlugin : KotlinPlugin(
2121
JvmPluginDescription(
2222
id = "xyz.cssxsh.mirai.plugin.mirai-selenium-plugin",
2323
name = "mirai-selenium-plugin",
24-
version = "2.5.0"
24+
version = "2.5.1"
2525
) {
2626
author("cssxsh")
2727
}

0 commit comments

Comments
 (0)