Skip to content

Commit 7515493

Browse files
committed
build: 1.0.3
1 parent 1383126 commit 7515493

File tree

3 files changed

+21
-8
lines changed

3 files changed

+21
-8
lines changed

README.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,22 @@
1313

1414
插件权限ID `xyz.cssxsh.mirai.plugin.meme-helper:*`,使用前授予权限
1515

16-
插件依赖于 [Mirai Skia Plugin](https://github.com/cssxsh/mirai-skia-plugin) (必要)
17-
插件依赖于 [Mirai Hibernate Plugin](https://github.com/cssxsh/mirai-hibernate-plugin) (不必要)
16+
插件依赖于 [Mirai Skia Plugin](https://github.com/cssxsh/mirai-skia-plugin) (必要)
17+
插件依赖于 [Mirai Hibernate Plugin](https://github.com/cssxsh/mirai-hibernate-plugin) (不必要)
1818

1919
**目前插件开发处于实验性阶段**
2020

21+
## 安装
22+
23+
### MCL 指令安装
24+
25+
`./mcl --update-package xyz.cssxsh:meme-helper --channel stable --type plugin`
26+
27+
### 手动安装
28+
29+
1. 运行 [Mirai Console](https://github.com/mamoe/mirai-console) 生成`plugins`文件夹
30+
2.[Releases](https://github.com/cssxsh/meme-helper/releases) 下载`jar`并将其放入`plugins`文件夹中
31+
2132
## 基本功能
2233

2334
### PornHub

build.gradle.kts

+7-5
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ plugins {
66
id("net.mamoe.maven-central-publish") version "0.7.1"
77
}
88

9-
group = "xyz.cssxsh.meme-helper"
10-
version = "1.0.2"
9+
group = "xyz.cssxsh"
10+
version = "1.0.3"
1111

1212
repositories {
1313
mavenLocal()
@@ -25,8 +25,10 @@ mavenCentralPublish {
2525
}
2626

2727
dependencies {
28-
compileOnly("xyz.cssxsh.mirai:mirai-hibernate-plugin:2.2.3")
29-
compileOnly("xyz.cssxsh.mirai:mirai-skia-plugin:1.1.0")
28+
compileOnly("xyz.cssxsh.mirai:mirai-hibernate-plugin:2.2.4")
29+
compileOnly("xyz.cssxsh.mirai:mirai-skia-plugin:1.1.1")
30+
compileOnly("xyz.cssxsh:weibo-helper:1.5.0")
31+
compileOnly("xyz.cssxsh:bilibili-helper:1.5.2")
3032
compileOnly("net.mamoe:mirai-core-utils:2.11.1")
3133
// Test
3234
testImplementation(kotlin("test", "1.6.21"))
@@ -35,7 +37,7 @@ dependencies {
3537
testImplementation("org.jetbrains.skiko:skiko-awt-runtime-macos-arm64:0.7.20")
3638
testImplementation("org.jetbrains.skiko:skiko-awt-runtime-macos-x64:0.7.20")
3739
testImplementation("org.jetbrains.skiko:skiko-awt-runtime-windows-x64:0.7.20")
38-
testImplementation("xyz.cssxsh.mirai:mirai-skia-plugin:1.1.0")
40+
testImplementation("xyz.cssxsh.mirai:mirai-skia-plugin:1.1.1")
3941
testImplementation("net.mamoe:mirai-core-utils:2.11.1")
4042
}
4143

src/main/kotlin/MemeHelperPlugin.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public object MemeHelperPlugin : KotlinPlugin(
77
JvmPluginDescription(
88
id = "xyz.cssxsh.mirai.plugin.meme-helper",
99
name = "meme-helper",
10-
version = "1.0.2",
10+
version = "1.0.3",
1111
) {
1212
author("cssxsh")
1313
dependsOn("xyz.cssxsh.mirai.plugin.mirai-skia-plugin", ">= 1.1.0", false)

0 commit comments

Comments
 (0)