diff --git a/README.md b/README.md index 993dece..b47dbd6 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Requires Fabric API. ## License Libraries that the project is using: - `Argon2 (LGPLv3)` https://github.com/phxql/argon2-jvm -- `JDBC (Apache 2)` https://github.com/polyjdbc/polyjdbc +- `JDBC (Apache 2)` https://github.com/xerial/sqlite-jdbc - `JNA (Apache 2 || LGPLv3)` https://github.com/java-native-access/jna This project is licensed under the `MIT` license. diff --git a/build.gradle b/build.gradle index 97c1949..98772bd 100644 --- a/build.gradle +++ b/build.gradle @@ -27,8 +27,8 @@ dependencies { include 'de.mkammerer:argon2-jvm:2.6' // JDBC SQLite Driver - implementation group: 'org.polyjdbc', name: 'polyjdbc', version: '0.7.6' - include group: 'org.polyjdbc', name: 'polyjdbc', version: '0.7.6' + implementation group:'org.xerial', name:'sqlite-jdbc', version:'3.8.11.2' + include group:'org.xerial', name:'sqlite-jdbc', version:'3.8.11.2' // JNA lib include 'net.java.dev.jna:jna:5.5.0' diff --git a/gradle.properties b/gradle.properties index b875861..2441e28 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,12 +2,12 @@ org.gradle.jvmargs=-Xmx1G # Fabric properties -minecraft_version=20w14a -yarn_mappings=20w14a+build.9 -loader_version=0.7.10+build.191 +minecraft_version=20w15a +yarn_mappings=20w15a+build.1 +loader_version=0.8.2+build.194 #Fabric api -fabric_version=0.5.8+build.316-1.16 +fabric_version=0.5.9+build.319-1.16 # Mod Properties mod_version = 1.3.2 diff --git a/src/main/java/org/samo_lego/simpleauth/commands/AuthCommand.java b/src/main/java/org/samo_lego/simpleauth/commands/AuthCommand.java index b98abb0..6d892d1 100644 --- a/src/main/java/org/samo_lego/simpleauth/commands/AuthCommand.java +++ b/src/main/java/org/samo_lego/simpleauth/commands/AuthCommand.java @@ -100,7 +100,7 @@ public class AuthCommand { if(sender != null) sender.sendMessage(globalPasswordSet); else - LOGGER.info(globalPasswordSet); + LOGGER.info(SimpleAuth.config.lang.globalPasswordSet); return 1; }