1
mirror of https://github.com/CarmJos/MoeTeleport.git synced 2026-06-05 00:28:16 +08:00

[3.0.0] 版本更新

- [F] 修复玩家给自己发送传送请求的问题。
- [A] 添加 插件更新 提示,允许自定义开关。
- [A] 添加 插件统计,允许自定义开关。
- [A] 实现 #6 提到的多数据源支持,目前支持 YAML、JSON与MySQL,并提供CUSTOM数据源允许开发者重写。
- [A] 对于家的名字长度做出限制,为 30 个字符。
- [U] 对于判断用户最多设置家数量的权限,不再添加“MoeTeleport”开头。
This commit is contained in:
2022-02-25 04:40:45 +08:00
parent 740670e19a
commit 7bfef559d4
22 changed files with 1195 additions and 147 deletions
+39 -1
View File
@@ -13,7 +13,7 @@
<groupId>cc.carm.plugin</groupId>
<artifactId>moeteleport</artifactId>
<version>2.0.2</version>
<version>3.0.0</version>
<name>MoeTeleport</name>
<description>喵喵传送,简单的传送、设置家的插件。</description>
@@ -108,6 +108,21 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>cc.carm.lib</groupId>
<artifactId>easysql-beecp</artifactId>
<version>0.3.8</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>cc.carm.lib</groupId>
<artifactId>githubreleases4j</artifactId>
<version>1.3.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>de.themoep</groupId>
<artifactId>minedown</artifactId>
@@ -115,6 +130,13 @@
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bukkit</artifactId>
<version>3.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
@@ -216,6 +238,22 @@
<pattern>de.themoep.minedown</pattern>
<shadedPattern>cc.carm.plugin.moeteleport.lib.minedown</shadedPattern>
</relocation>
<relocation>
<pattern>org.bstats</pattern>
<shadedPattern>cc.carm.plugin.moeteleport.lib.bstats</shadedPattern>
</relocation>
<relocation>
<pattern>org.json</pattern>
<shadedPattern>cc.carm.plugin.moeteleport.lib.json</shadedPattern>
</relocation>
<relocation>
<pattern>cc.carm.lib.easysql</pattern>
<shadedPattern>cc.carm.plugin.moeteleport.lib.easysql</shadedPattern>
</relocation>
<relocation>
<pattern>cc.carm.lib.githubreleases4j</pattern>
<shadedPattern>cc.carm.plugin.moeteleport.lib.github</shadedPattern>
</relocation>
</relocations>
</configuration>
</plugin>