mirror of
https://github.com/Acamaeda/The-Modding-Tree.git
synced 2025-01-30 23:21:49 +00:00
2.0.4
This commit is contained in:
parent
0f2447b2f8
commit
6a7b36c0c0
3 changed files with 11 additions and 3 deletions
|
@ -1,12 +1,16 @@
|
||||||
# The Modding Tree changelog:
|
# The Modding Tree changelog:
|
||||||
|
|
||||||
|
|
||||||
|
### v2.0.4 - 10/16/20
|
||||||
|
- Fixed HTML on buttons interfering with clicking on them.
|
||||||
|
|
||||||
### v2.0.3 - 10/16/20
|
### v2.0.3 - 10/16/20
|
||||||
- Fixed hotkeys not displaying in info.
|
- Fixed hotkeys not displaying in info.
|
||||||
- Fixed the game supressing all external hotkeys.
|
- Fixed the game supressing all external hotkeys.
|
||||||
- You can use more things as currencies for upgrade costs and challenge goals using currencyLocation.
|
- You can use more things as currencies for upgrade costs and challenge goals using currencyLocation.
|
||||||
- Added maxTickLength, which can be used to prevent offline time or tab-switching from breaking time-limit based mechanics.
|
- Added maxTickLength, which can be used to prevent offline time or tab-switching from breaking time-limit based mechanics.
|
||||||
- Made buyable respec buttons, and clickable "master" buttons their own components, and gave them a hide/show feature.
|
- Made buyable respec buttons and clickable "master" buttons their own components, and gave them a hide/show feature.
|
||||||
|
- Added a general "tooltip" feature for achievements.
|
||||||
|
|
||||||
### v2.0.2 - 10/15/20
|
### v2.0.2 - 10/15/20
|
||||||
- Branches are now dynamic (they can be functions).
|
- Branches are now dynamic (they can be functions).
|
||||||
|
|
|
@ -16,9 +16,9 @@ let modInfo = {
|
||||||
|
|
||||||
// Set your version in num and name, but leave the tmt values so people know what version it is
|
// Set your version in num and name, but leave the tmt values so people know what version it is
|
||||||
let VERSION = {
|
let VERSION = {
|
||||||
num: "2.0.3",
|
num: "2.0.4",
|
||||||
name: "Pinnacle of Achievement Mountain",
|
name: "Pinnacle of Achievement Mountain",
|
||||||
tmtNum: "2.0.3",
|
tmtNum: "2.0.4",
|
||||||
tmtName: "Pinnacle of Achievement Mountain"
|
tmtName: "Pinnacle of Achievement Mountain"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -566,4 +566,8 @@ ul {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 55px;
|
right: 55px;
|
||||||
top: 65px;
|
top: 65px;
|
||||||
|
}
|
||||||
|
|
||||||
|
button > * {
|
||||||
|
pointer-events:none;
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue