From 19f6d6eacf3df61c3079d342482df3ae4a2c3e15 Mon Sep 17 00:00:00 2001 From: Abhiram555 <63419731+abhithedev200@users.noreply.github.com> Date: Thu, 26 Jan 2023 21:34:15 +0530 Subject: Add Proxy support to the cofl mod (#85) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Implement basic proxy functionality * Finish the api key management * Finished the hypixel api key support * Fixed a check, for some reason intelij didn't update my code * Only upload request if the upload is enabled, else just do the request Co-authored-by: Äkwav <16632490+Ekwav@users.noreply.github.com> Co-authored-by: Äkwav <16632490+Ekwav@users.noreply.github.com> --- build.gradle.kts | 1 + 1 file changed, 1 insertion(+) (limited to 'build.gradle.kts') diff --git a/build.gradle.kts b/build.gradle.kts index 734083b..b1e378c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -67,6 +67,7 @@ tasks.withType(Jar::class) { manifest.attributes.run { this["FMLCorePluginContainsFMLMod"] = "true" this["ForceLoadAsMod"] = "true" + this["Manifest-Version"] = "1.0" } } -- cgit