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

Commit

Permalink
[U] 版本 v1.2.0.376
Browse files Browse the repository at this point in the history
  • Loading branch information
hykilpikonna committed Jul 14, 2018
1 parent 0b6f1a3 commit 0fbe5d0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Maven 导入:
<dependency>
<groupId>com.github.hydevelop</groupId>
<artifactId>PicqBotX</artifactId>
<version>1.2.0.371</version>
<version>1.2.0.376</version>
</dependency>
```

Expand All @@ -67,13 +67,13 @@ allprojects {

```gradle
dependencies {
implementation 'com.github.hydevelop:PicqBotX:1.2.0.371'
implementation 'com.github.hydevelop:PicqBotX:1.2.0.376'
}
```

<!-- 每次更新都要手动改这些版本号好烦的_(:з」∠)_... -->

#### [其他导入(SBT / Leiningen)](https://jitpack.io/#hydevelop/PicqBotX/1.2.0.371)
#### [其他导入(SBT / Leiningen)](https://jitpack.io/#hydevelop/PicqBotX/1.2.0.376)

<br>

Expand Down Expand Up @@ -384,7 +384,7 @@ public class CommandVersion implements EverywhereCommand // 实现EverywhereComm
{
// 处理, 返回值会自动回复回去
// 这里因为这个指令是用来查版本的, 所以直接返回字符串了
return "TestBot - PicqBotX v1.2.0.371";
return "TestBot - PicqBotX v1.2.0.376";
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>cc.moecraft</groupId>
<artifactId>PicqBotX</artifactId>
<version>1.2.0.371</version>
<version>1.2.0.376</version>

<properties>
<maven.compiler.target>1.8</maven.compiler.target>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public String run(EventMessage event, User sender, String command, ArrayList<Str

// 这里因为这个指令是用来查版本的, 所以直接返回字符串了
return new MessageBuilder()
.add("TestBot - PicqBotX v1.2.0.371").newLine()
.add("TestBot - PicqBotX v1.2.0.376").newLine()
.add("- 酷Q ").add(versionInfo.getCoolqEdition()).add(" HTTP插件: ")
.add(versionInfo.getPluginVersion()).add(" b").add(versionInfo.getPluginBuildNumber()).newLine()
.add("- 运行状态: Good: ").add(status.getGood()).add(", ").add(status.getPluginsGood())
Expand Down

0 comments on commit 0fbe5d0

Please sign in to comment.