mirror of
https://github.com/Acamaeda/The-Modding-Tree.git
synced 2024-11-24 17:31:50 +00:00
Reactivity fixes
This commit is contained in:
parent
b819f5213e
commit
0fab86ab19
4 changed files with 12 additions and 2 deletions
|
@ -1,5 +1,8 @@
|
||||||
# The Modding Tree changelog:
|
# The Modding Tree changelog:
|
||||||
|
|
||||||
|
### v2.2.1 - 11/7/20
|
||||||
|
- Possibly fixed issues with things not updating visually.
|
||||||
|
|
||||||
## v2.2: Uprooted - 11/7/20
|
## v2.2: Uprooted - 11/7/20
|
||||||
- You can now embed a layer inside of a subtab or microtab!
|
- You can now embed a layer inside of a subtab or microtab!
|
||||||
- Added support for hiding or reformatting the tree tab
|
- Added support for hiding or reformatting the tree tab
|
||||||
|
@ -9,6 +12,7 @@
|
||||||
- Upgrades now only show "currently" if they have an effectDisplay (so not for constant effects).
|
- Upgrades now only show "currently" if they have an effectDisplay (so not for constant effects).
|
||||||
- Achievements are part of the default tab format.
|
- Achievements are part of the default tab format.
|
||||||
- NaN is now handled more intelligently.
|
- NaN is now handled more intelligently.
|
||||||
|
- Renamed files, and moved less relevant ones to another folder.
|
||||||
- The "hide completed challenges" setting now only hides challenges at max completions.
|
- The "hide completed challenges" setting now only hides challenges at max completions.
|
||||||
- Thank you to thepaperpilot for fixing errors in docs and improving the infobox appearance!
|
- Thank you to thepaperpilot for fixing errors in docs and improving the infobox appearance!
|
||||||
- Many other minor fixes.
|
- Many other minor fixes.
|
||||||
|
|
|
@ -12,7 +12,7 @@ let modInfo = {
|
||||||
|
|
||||||
// Set your version in num and name
|
// Set your version in num and name
|
||||||
let VERSION = {
|
let VERSION = {
|
||||||
num: "2.2",
|
num: "2.2.1",
|
||||||
name: "Uprooted",
|
name: "Uprooted",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -424,6 +424,12 @@ function loadVue() {
|
||||||
startChallenge,
|
startChallenge,
|
||||||
milestoneShown,
|
milestoneShown,
|
||||||
keepGoing,
|
keepGoing,
|
||||||
|
hasUpgrade,
|
||||||
|
hasMilestone,
|
||||||
|
hasAchievement,
|
||||||
|
hasChallenge,
|
||||||
|
maxedChallenge,
|
||||||
|
canAffordUpgrade,
|
||||||
VERSION,
|
VERSION,
|
||||||
LAYERS,
|
LAYERS,
|
||||||
hotkeys
|
hotkeys
|
||||||
|
|
|
@ -4,7 +4,7 @@ var gameEnded = false;
|
||||||
|
|
||||||
// Don't change this
|
// Don't change this
|
||||||
const TMT_VERSION = {
|
const TMT_VERSION = {
|
||||||
tmtNum: "2.2",
|
tmtNum: "2.2.1",
|
||||||
tmtName: "Uprooted"
|
tmtName: "Uprooted"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue