diff --git a/LICENSE b/LICENSE index fceb340..3d57f19 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2023 Jamalam +Copyright 2024 Jamalam Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/README.md b/README.md index 7087d11..29616e5 100644 --- a/README.md +++ b/README.md @@ -23,17 +23,26 @@ The config can either be changed through a GUI (using Mod Menu on Fabric or the ```json5 { /* Leave empty to disable the quick connect button - - default: "" + - default: \"\" */ - "ip": "mc.hypixel.net", + ip: "localhost", /* - default: 25565 - must be between 0.0 and 65535.0 */ - "port": 25565, - // - default: false - "replaceMultiplayerButton": false, - // - default: "" - "text": "Button Text" + port: 25565, + /* Whether to replace the default multiplayer button on the main menu, or add a new one to its right. + - default: false + */ + replaceMultiplayerButton: true, + /* The text to display on the button. Leave empty to use "Connect". + - default: \"\" + */ + text: "Connect to an Awesome Server", + /* What to do if the server has a resource pack. + - default: PROMPT + - must be one of: ENABLED, DISABLED, PROMPT + */ + resourcePackBehaviour: "ENABLED" } ``` diff --git a/build.gradle b/build.gradle index 56bd3f2..da65d2b 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { id "architectury-plugin" version "3.4-SNAPSHOT" - id "dev.architectury.loom" version "1.4-SNAPSHOT" apply false + id "dev.architectury.loom" version "1.5-SNAPSHOT" apply false id "com.github.breadmoirai.github-release" version "2.4.1" }