From c71026818256df4f6fddb49ed72521138a8457bf Mon Sep 17 00:00:00 2001 From: William Date: Fri, 3 Dec 2021 16:36:20 +0000 Subject: [PATCH] Bump MPDB to 4.0.1 --- README.md | 20 ++++++++++---------- bukkit/build.gradle | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 601e51fe..e8945f88 100644 --- a/README.md +++ b/README.md @@ -69,15 +69,15 @@ Everything except player locations are synchronised by default. You can enable o ### Commands Commands are handled by the proxy server, rather than each spigot server. Some will only work on Spigot servers with HuskSync installed. Please remember that you will need a Proxy permission plugin (e.g. LuckPermsBungee) to set permissions for proxy commands. -Command | Description | Permission -------- | ----------- | ---------- -`/husksync about` | View plugin information | _None_ -`/husksync update` | Check if an update is available | `husksync.command.admin` -`/husksync status` | View system status information | `husksync.command.admin` -`/husksync reload` | Reload config & message files | `husksync.command.admin` -`/husksync invsee` | View an offline player's inventory | `husksync.command.inventory` -`/husksync echest` | View an offline player's ender chest | `husksync.command.ender_chest` -`/husksync migrate`| Migrate data from MPDB | _Console-only_ +| Command | Description | Permission | +|---------------------|--------------------------------------|--------------------------------| +| `/husksync about` | View plugin information | _None_ | +| `/husksync update` | Check if an update is available | `husksync.command.admin` | +| `/husksync status` | View system status information | `husksync.command.admin` | +| `/husksync reload` | Reload config & message files | `husksync.command.admin` | +| `/husksync invsee` | View an offline player's inventory | `husksync.command.inventory` | +| `/husksync echest` | View an offline player's ender chest | `husksync.command.ender_chest` | +| `/husksync migrate` | Migrate data from MPDB | _Console-only_ | ### Frequently Asked Questions (FAQs) #### Is Redis required? @@ -127,7 +127,7 @@ While the code bounty program is not available for translation contributors, the ### Building To build HuskSync you will first need to download MySqlPlayerDataBridge and `mvn install:install-file` the jar file to your local maven repository. ``` -mvn install:install-file -Dfile=MysqlPlayerDataBridge-v3.36.3.jar -DgroupId=net.craftersland.data -DartifactId=bridge -Dversion=3.36.3 -Dpackaging=jar +mvn install:install-file -Dfile=MysqlPlayerDataBridge-v4.0.1.jar -DgroupId=net.craftersland.data -DartifactId=bridge -Dversion=4.0.1 -Dpackaging=jar ``` Then, to build the plugin, run the following in the root of the repository: diff --git a/bukkit/build.gradle b/bukkit/build.gradle index 756719a3..07332468 100644 --- a/bukkit/build.gradle +++ b/bukkit/build.gradle @@ -7,7 +7,7 @@ dependencies { implementation 'org.bstats:bstats-bukkit:2.2.1' implementation 'de.themoep:minedown:1.7.1-SNAPSHOT' - compileOnly 'net.craftersland.data:bridge:3.36.3' + compileOnly 'net.craftersland.data:bridge:4.0.1' compileOnly 'org.spigotmc:spigot-api:1.16.5-R0.1-SNAPSHOT' }