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

Commit

Permalink
[O] No it's supposed to be 4.15.0.1058
Browse files Browse the repository at this point in the history
  • Loading branch information
hykilpikonna committed Jun 29, 2020
1 parent 7df473e commit ed5b8ea
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/-------bug-.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ assignees: ''

**PicqBotX 运行环境:**
- 系统: [比如说: Windows 10 1903]
- 版本: [比如说: 4.15.1.1058]
- 版本: [比如说: 4.15.0.1058]

**CoolQ HTTP 运行环境:**
- 系统: [比如说: Windows 10 1903]
Expand Down
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>4.15.1.1058</version>
<version>4.15.0.1058</version>
</dependency>
```

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

```gradle
dependencies {
implementation 'com.github.hydevelop:PicqBotX:4.15.1.1058'
implementation 'com.github.hydevelop:PicqBotX:4.15.0.1058'
}
```

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

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

<br>

Expand Down Expand Up @@ -553,7 +553,7 @@ public class CommandVersion implements EverywhereCommand // 实现EverywhereComm
{
// 处理, 返回值会自动回复回去
// 这里因为这个指令是用来查版本的, 所以直接返回字符串了
return "TestBot - PicqBotX v4.15.1.1058";
return "TestBot - PicqBotX v4.15.0.1058";
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion docs/constant-values.html
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ <h2 title="cc.moecraft">cc.moecraft.*</h2>
<!-- -->
</a><code>public&nbsp;static&nbsp;final&nbsp;java.lang.String</code></td>
<td><code><a href="cc/moecraft/icq/PicqConstants.html#VERSION">VERSION</a></code></td>
<td class="colLast"><code>"4.15.1.1058"</code></td>
<td class="colLast"><code>"4.15.0.1058"</code></td>
</tr>
</tbody>
</table>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

<groupId>cc.moecraft</groupId>
<artifactId>PicqBotX</artifactId>
<version>4.15.1.1058</version>
<version>4.15.0.1058</version>

<properties>
<maven.compiler.target>1.8</maven.compiler.target>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/cc/moecraft/icq/PicqConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class PicqConstants
// 版本常量 | Version constant

/** 当前版本 */
public static final String VERSION = "4.15.1.1058";
public static final String VERSION = "4.15.0.1058";

/** 兼容版本检测Regex */
public static String HTTP_API_VERSION_DETECTION = ".*4.15.*";
Expand Down

0 comments on commit ed5b8ea

Please sign in to comment.