diff --git a/README.md b/README.md index b66930fb..9f8e50f4 100644 --- a/README.md +++ b/README.md @@ -28,24 +28,27 @@ Happy coding and cpvping! ## Newest Changes ```yml Scripts: - - while (N) (condition) (CCS... args) - - while_not (N) (condition) (CCS... args) - - if effect_duration (ID) (N) - - if effect_amplifier (ID) (N) - - gui_swap (ID) - - gui_drop (ID) (N) - - gui_quickmove (ID) - - gui_switch (ID) + - if module_disabled (module) + - on damage works on servers now Tweaks: - - drop (N) - - added more key names such as [space, backspace, escape] - -Patches: - - CCS dispatcher tree root - -Remove: - - removed the script_history.log + - make input_active inventory work for containers as well + - overview mode toggle on enable -> redirect to overview screen + +Add: + - script delete button in IDE + - IDE auto module declaration + - Credits screen + - shortcut to hud edit screen + - new option for each module to disable upon joining a world + +Modules: + - time changer module + - totem pop scale module + +Patch: + - Custom made module screen top element tooltips + - Settings screen shortcut element tooltips ``` ![demo](https://cdn.modrinth.com/data/YDYPZdGj/images/9b07a5d8c628b349386210cf537050bf73e21964.png) diff --git a/gradle.properties b/gradle.properties index c079e772..2affb914 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx1G loader_version=0.14.22 # Mod Properties - mod_version=1.20-1.1.9 + mod_version=1.20-1.2.0 maven_group=io.github.itzispyder archives_base_name=ClickCrystals diff --git a/src/main/java/io/github/itzispyder/clickcrystals/Global.java b/src/main/java/io/github/itzispyder/clickcrystals/Global.java index e49abc52..3d582538 100644 --- a/src/main/java/io/github/itzispyder/clickcrystals/Global.java +++ b/src/main/java/io/github/itzispyder/clickcrystals/Global.java @@ -13,7 +13,7 @@ public interface Global { Gson gson = new GsonBuilder().serializeNulls().setPrettyPrinting().create(); - Version version = Version.ofString("1.1.9"); + Version version = Version.ofString("1.2.0"); String prefix = "[ClickCrystals] "; String starter = "§7[§bClick§3Crystals§7] §r"; String modId = "clickcrystals";