From 7a62276aacd9dbcf2630358b63e3c7cb1d705523 Mon Sep 17 00:00:00 2001 From: JFronny Date: Sun, 13 Mar 2022 17:18:23 +0100 Subject: [PATCH] Add README from modrinth --- README.md | 12 ++++++++++++ build.gradle | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 README.md 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}"))