Skip to content

Commit

Permalink
更新到6.0适配1.2.2-dev分支
Browse files Browse the repository at this point in the history
  • Loading branch information
liujiaqi7998 committed Jun 24, 2022
1 parent fec01ca commit 6e3ef90
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 deletions.
5 changes: 0 additions & 5 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -2,6 +2,8 @@

一款Grasscutters的~~WEB控制面板插件~~(网页工具箱)

**6.x及其以上版本是针对割草机1.2.2-dev分支最新版本**

**4.x及其以上版本是针对割草机1.1.2-dev分支最新版本开发的,1.1.1-dev版本的割草机请使用3.0.0版本**

**2.x-3.x及其以上版本是针对割草机1.1.1-dev版本开发的,如果你使用的是割草机1.0版本请安装1.x版本的插件**
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Expand Up @@ -6,7 +6,7 @@

<groupId>top.cyqi</groupId> <!-- Replace with your groupId -->
<artifactId>GrasscuttersWebDashboard</artifactId> <!-- Replace with your plugin name. -->
<version>5.0.0</version> <!-- The template's version corresponds to the latest API version. -->
<version>6.0.0</version> <!-- The template's version corresponds to the latest API version. -->

<properties>
<maven.compiler.source>17</maven.compiler.source>
Expand All @@ -28,8 +28,8 @@
<groupId>xyz.grasscutters</groupId>
<artifactId>grasscutter</artifactId>
<scope>system</scope>
<version>dev-0a7f82</version>
<systemPath>${project.basedir}/lib/grasscutter-1.1.2-dev-0a7f82.jar</systemPath>
<version>dev-ca27c39</version>
<systemPath>${project.basedir}/lib/grasscutter-1.2.2-dev-ca27c39.jar</systemPath>
</dependency>
<!-- <dependency>-->
<!-- <groupId>xyz.grasscutters</groupId>-->
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/top/cyqi/GrasscuttersWebDashboard.java
Expand Up @@ -93,7 +93,7 @@ public void onLoad() {
public void onEnable() {
webSocketServer = new WebSocketServer();
webSocketServer.start();
serverTickEventHandler.register();
serverTickEventHandler.register(this);
// Register event listeners.

// create and start a ListAppender
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.json
@@ -1,7 +1,7 @@
{
"name": "GrasscuttersWebDashboard",
"description": "小奇 Grasscutter 工具箱",
"version": "5.0.0",
"version": "6.0.0",
"authors": [ "666Qi"],
"mainClass": "top.cyqi.GrasscuttersWebDashboard"
}

0 comments on commit 6e3ef90

Please sign in to comment.