Skip to content

Commit 0ebba4f

Browse files
committed
Update version.json and CHANGELOG.md
1 parent 7b48878 commit 0ebba4f

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## Metamorph 1.2.12
2+
3+
This update adds a couple of QoL tweaks.
4+
5+
**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.
6+
7+
* Added up and down arrows (and `W` and `S`) in body part morph editor panel
8+
* Added toggle to hide/show separate morph categories
9+
110
## Metamorph 1.2.11
211

312
This update was made by Chryfi. The only change is making Use target option enabled by default for Blockbuster's tracker morphs.

src/main/java/mchorse/metamorph/bodypart/GuiBodyPartEditor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ private int getMoveIndex(int keyCode)
454454
}
455455
else if (keyCode == Keyboard.KEY_DOWN)
456456
{
457-
return -1;
457+
return 1;
458458
}
459459

460460
return 0;

version.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"homepage": "https://www.curseforge.com/minecraft/mc-mods/metamorph",
33
"1.12.2": {
4+
"1.2.12": "This update adds a couple of QoL tweaks.",
45
"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.",
56
"1.2.10": "This patch adds an option to replace entity morphs texture.",
67
"1.2.9": "This is patch fixes a couple of bugs.",
@@ -34,8 +35,8 @@
3435
"1.1.5": "This is a small, quick and dirty patch that provides several bugfixes (mainly for Blockbuster's update)."
3536
},
3637
"promos": {
37-
"1.12.2-latest":"1.2.11",
38-
"1.12.2-recommended":"1.2.11",
38+
"1.12.2-latest":"1.2.12",
39+
"1.12.2-recommended":"1.2.12",
3940
"1.11.2-latest":"1.1.10",
4041
"1.11.2-recommended":"1.1.10",
4142
"1.10.2-latest":"1.1.10",

0 commit comments

Comments
 (0)