diff --git a/changelog.md b/changelog.md index 552cdc7..ddec5ee 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # The Modding Tree changelog: -# v2.5.5 - 5/ +# v2.5.5 - 5/12/21 - Added grids! They are a grid of buttons which behave the same, but have their own data. Good for inventory grids, map tiles, and more! - Added "marked" feature to add a mark to a node. Can be an image instead of a star. (Originally by Jacorb) - Added "layer-proxy" component that lets you use components from another layer. diff --git a/js/Demo/demoMod.js b/js/Demo/demoMod.js index 0808770..764a71f 100644 --- a/js/Demo/demoMod.js +++ b/js/Demo/demoMod.js @@ -11,7 +11,7 @@ let modInfo = { // Set your version in num and name let VERSION = { - num: "2.5.4", + num: "2.5.5", name: "Dreams Really Do Come True", } diff --git a/js/game.js b/js/game.js index a7ff889..f3acc70 100644 --- a/js/game.js +++ b/js/game.js @@ -5,7 +5,7 @@ var scrolled = false; // Don't change this const TMT_VERSION = { - tmtNum: "2.5.4", + tmtNum: "2.5.5", tmtName: "Dreams Really Do Come True" }