更新:mirai升级到2.7.0
修复:获取idea激活码失败
This commit is contained in:
parent
2f1bd267bf
commit
f30530d61d
19
pom.xml
19
pom.xml
@ -15,7 +15,7 @@
|
|||||||
<description>NAS Service</description>
|
<description>NAS Service</description>
|
||||||
<properties>
|
<properties>
|
||||||
<java.version>1.8</java.version>
|
<java.version>1.8</java.version>
|
||||||
<kotlin.version>1.4.10</kotlin.version>
|
<kotlin.version>1.5.10</kotlin.version>
|
||||||
</properties>
|
</properties>
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
@ -96,13 +96,19 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.mamoe</groupId>
|
<groupId>net.mamoe</groupId>
|
||||||
<artifactId>mirai-core-jvm</artifactId>
|
<artifactId>mirai-core-jvm</artifactId>
|
||||||
<version>2.6.7</version> <!-- 替换版本为你需要的版本 -->
|
<version>2.7.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||||||
<artifactId>kotlin-stdlib</artifactId>
|
<artifactId>kotlinx-coroutines-jdk8</artifactId>
|
||||||
<version>${kotlin.version}</version>
|
<version>1.5.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||||||
|
<artifactId>kotlinx-coroutines-core-jvm</artifactId>
|
||||||
|
<version>1.5.2</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.bramp.ffmpeg</groupId>
|
<groupId>net.bramp.ffmpeg</groupId>
|
||||||
<artifactId>ffmpeg</artifactId>
|
<artifactId>ffmpeg</artifactId>
|
||||||
@ -163,7 +169,8 @@
|
|||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
<configuration>
|
<configuration>
|
||||||
<!--使用-Dloader.path需要在打包的时候增加<layout>ZIP</layout>,不指定的话-Dloader.path不生效-->
|
<!--使用-Dloader.path需要在打包的时候增加<layout>ZIP</layou
|
||||||
|
t>,不指定的话-Dloader.path不生效-->
|
||||||
<layout>ZIP</layout>
|
<layout>ZIP</layout>
|
||||||
<!-- 指定该jar包启动时的主类[建议] -->
|
<!-- 指定该jar包启动时的主类[建议] -->
|
||||||
<mainClass>com.yutou.nas.NasApplication</mainClass>
|
<mainClass>com.yutou.nas.NasApplication</mainClass>
|
||||||
|
@ -20,7 +20,7 @@ public class IdeaTools {
|
|||||||
try {
|
try {
|
||||||
ZipFile zipFile = new ZipFile(file, Charset.forName("gbk"));
|
ZipFile zipFile = new ZipFile(file, Charset.forName("gbk"));
|
||||||
String data = "";
|
String data = "";
|
||||||
if (file.exists()) {
|
if (file.exists()&&zipFile.getEntry(name)!=null) {
|
||||||
data = StreamTools.streamReadLine(zipFile.getInputStream(zipFile.getEntry(name)));
|
data = StreamTools.streamReadLine(zipFile.getInputStream(zipFile.getEntry(name)));
|
||||||
}
|
}
|
||||||
zipFile.close();
|
zipFile.close();
|
||||||
|
@ -228,6 +228,7 @@ public class QQBotManager {
|
|||||||
|
|
||||||
private void myGroup(String msg) {
|
private void myGroup(String msg) {
|
||||||
StringBuilder builder;
|
StringBuilder builder;
|
||||||
|
String msgSrc=msg;
|
||||||
msg = msg.replace("!", "!").toLowerCase();
|
msg = msg.replace("!", "!").toLowerCase();
|
||||||
Log.i("QQBot","command = "+msg);
|
Log.i("QQBot","command = "+msg);
|
||||||
switch (msg) {
|
switch (msg) {
|
||||||
@ -319,7 +320,7 @@ public class QQBotManager {
|
|||||||
} else if (msg.startsWith(QQCommands.QQ_AUDIO)) {
|
} else if (msg.startsWith(QQCommands.QQ_AUDIO)) {
|
||||||
QQAudio.playText(msg.replace(QQCommands.QQ_AUDIO, ""));
|
QQAudio.playText(msg.replace(QQCommands.QQ_AUDIO, ""));
|
||||||
}else if(msg.startsWith(QQCommands.QQ_TOOLS_IDEA_FILE)){
|
}else if(msg.startsWith(QQCommands.QQ_TOOLS_IDEA_FILE)){
|
||||||
getInstance().sendMessage(IdeaTools.getIdea(msg.replace(QQCommands.QQ_TOOLS_IDEA_FILE,"")));
|
getInstance().sendMessage(IdeaTools.getIdea(msgSrc.replace(QQCommands.QQ_TOOLS_IDEA_FILE,"")));
|
||||||
}else if(msg.startsWith(QQCommands.QQ_TOOLS_IDEA_URL)){
|
}else if(msg.startsWith(QQCommands.QQ_TOOLS_IDEA_URL)){
|
||||||
RedisTools.set("ideaUrl",msg.replace(QQCommands.QQ_TOOLS_IDEA_URL,"").trim());
|
RedisTools.set("ideaUrl",msg.replace(QQCommands.QQ_TOOLS_IDEA_URL,"").trim());
|
||||||
getInstance().sendMessage("已设定下载地址:"+RedisTools.get("ideaUrl"));
|
getInstance().sendMessage("已设定下载地址:"+RedisTools.get("ideaUrl"));
|
||||||
|
Loading…
Reference in New Issue
Block a user