diff --git a/README.md b/README.md new file mode 100644 index 0000000..0439646 --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +GoogleChat automatically translates all messages sent or received by the client to/from a configured language using Google Translate through LibJF. + +Both directions of translation can be configured and GoogleChat can be disabled completely from the config, though server-specific configs are not implemented. + +If you want to use GoogleChat serverside (which is supported btw), a config like the following is recommended: +```json +{ + "enabled": true, + "serverLanguage": "en", + "clientLanguage": "auto" +} +``` \ No newline at end of file diff --git a/build.gradle b/build.gradle index d67c076..03f4e7b 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ dependencies { include("io.gitlab.jfronny.libjf:libjf-base:${project.jfapi_version}") modRuntimeOnly("io.gitlab.jfronny.libjf:libjf-devutil-v0:${project.jfapi_version}") - modImplementation "com.terraformersmc:modmenu:3.0.1" + modImplementation "com.terraformersmc:modmenu:3.1.0" // Compat fix include modImplementation(fabricApi.module("fabric-command-api-v1", "${project.fabric_version}"))