Update author URL

feat/data-edit-commands
William 3 years ago
parent 93f6417471
commit f01bb7c082

@ -11,7 +11,7 @@ plugins {
allprojects {
group 'me.William278'
version '1.3'
version '1.3.1'
compileJava { options.encoding = 'UTF-8' }
tasks.withType(JavaCompile) { options.encoding = 'UTF-8' }

@ -1,6 +1,6 @@
dependencies {
implementation 'redis.clients:jedis:3.7.1'
implementation 'com.zaxxer:HikariCP:5.0.0'
implementation 'com.zaxxer:HikariCP:5.0.1'
}
import org.apache.tools.ant.filters.ReplaceTokens

@ -16,7 +16,7 @@ public class MessageManager {
public static StringBuilder PLUGIN_INFORMATION = new StringBuilder().append("[HuskSync](#00fb9a bold) [| %proxy_brand% Version %proxy_version% (%bukkit_brand% v%bukkit_version%)](#00fb9a)\n")
.append("[%plugin_description%](gray)\n")
.append("[• Author:](white) [William278](gray show_text=&7Click to pay a visit open_url=https://youtube.com/William27528)\n")
.append("[• Author:](white) [William278](gray show_text=&7Click to visit website open_url=https://william278.net)\n")
.append("[• Contributors:](white) [HarvelsX](gray show_text=&7Code)\n")
.append("[• Plugin Info:](white) [[Link]](#00fb9a show_text=&7Click to open link open_url=https://github.com/WiIIiam278/HuskSync/)\n")
.append("[• Report Issues:](white) [[Link]](#00fb9a show_text=&7Click to open link open_url=https://github.com/WiIIiam278/HuskSync/issues)\n")

@ -4,4 +4,5 @@ main: me.william278.husksync.HuskSyncBukkit
api-version: 1.16
author: William278
description: 'A modern, cross-server player data synchronization system'
website: 'https://william278.net'
softdepend: [MysqlPlayerDataBridge]

@ -38,12 +38,13 @@ import static me.william278.husksync.HuskSyncVelocity.VERSION;
name = "HuskSync",
version = VERSION,
description = "HuskSync for velocity",
authors = {"William278"}
authors = {"William278"},
url = "https://william278.net"
)
public class HuskSyncVelocity {
// Plugin version
public static final String VERSION = "1.3";
public static final String VERSION = "1.3.1";
// Velocity bStats ID (different from Bukkit and BungeeCord)
private static final int METRICS_ID = 13489;

Loading…
Cancel
Save