diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b8e8654..2f5a3372 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## Metamorph 1.2.12 + +This update adds a couple of QoL tweaks. + +**Compatible** with McLib `2.3.6`. It doesn't mean that future versions of McLib would be incompatible, but older versions are most likely incompatible. + +* Added up and down arrows (and `W` and `S`) in body part morph editor panel +* Added toggle to hide/show separate morph categories + ## Metamorph 1.2.11 This update was made by Chryfi. The only change is making Use target option enabled by default for Blockbuster's tracker morphs. diff --git a/src/main/java/mchorse/metamorph/bodypart/GuiBodyPartEditor.java b/src/main/java/mchorse/metamorph/bodypart/GuiBodyPartEditor.java index 69040586..86c3aede 100644 --- a/src/main/java/mchorse/metamorph/bodypart/GuiBodyPartEditor.java +++ b/src/main/java/mchorse/metamorph/bodypart/GuiBodyPartEditor.java @@ -454,7 +454,7 @@ private int getMoveIndex(int keyCode) } else if (keyCode == Keyboard.KEY_DOWN) { - return -1; + return 1; } return 0; diff --git a/version.json b/version.json index 2781dea3..3a674f8f 100644 --- a/version.json +++ b/version.json @@ -1,6 +1,7 @@ { "homepage": "https://www.curseforge.com/minecraft/mc-mods/metamorph", "1.12.2": { + "1.2.12": "This update adds a couple of QoL tweaks.", "1.2.11": "This update was made by Chryfi. The only change is making Use target option enabled by default for Blockbuster's tracker morphs.", "1.2.10": "This patch adds an option to replace entity morphs texture.", "1.2.9": "This is patch fixes a couple of bugs.", @@ -34,8 +35,8 @@ "1.1.5": "This is a small, quick and dirty patch that provides several bugfixes (mainly for Blockbuster's update)." }, "promos": { - "1.12.2-latest":"1.2.11", - "1.12.2-recommended":"1.2.11", + "1.12.2-latest":"1.2.12", + "1.12.2-recommended":"1.2.12", "1.11.2-latest":"1.1.10", "1.11.2-recommended":"1.1.10", "1.10.2-latest":"1.1.10",