mirror of
https://github.com/Acamaeda/The-Modding-Tree.git
synced 2024-11-21 16:13:55 +00:00
2.0.2
This commit is contained in:
parent
bcbdf12dca
commit
eb50844c6f
4 changed files with 10 additions and 7 deletions
|
@ -1,5 +1,10 @@
|
|||
# The Modding Tree changelog:
|
||||
|
||||
# v2.0.2 10/15/20
|
||||
- Branches are now dynamic (they can be functions).
|
||||
- Fixed a crash related to offline time.
|
||||
- Fixed links being too wide.
|
||||
|
||||
# v2.0.1 10/15/20
|
||||
- Fixed side layers appearing multiple times.
|
||||
|
||||
|
|
|
@ -40,10 +40,10 @@ function drawTree() {
|
|||
if (!retrieveCanvasData()) return;
|
||||
ctx.clearRect(0, 0, canvas.width, canvas.height);
|
||||
for (layer in layers){
|
||||
if (layers[layer].layerShown() && layers[layer].branches){
|
||||
for (branch in layers[layer].branches)
|
||||
if (layers[layer].layerShown() && tmp[layer].branches){
|
||||
for (branch in tmp[layer].branches)
|
||||
{
|
||||
drawTreeBranch(layer, layers[layer].branches[branch])
|
||||
drawTreeBranch(layer, tmp[layer].branches[branch])
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
|
||||
let VERSION = {
|
||||
num: "2.0",
|
||||
num: "2.0.2",
|
||||
name: "Pinnacle of Achievement Mountain",
|
||||
tmtNum: "2.0",
|
||||
tmtNum: "2.0.2",
|
||||
tmtName: "Pinnacle of Achievement Mountain"
|
||||
}
|
||||
|
||||
|
|
|
@ -326,8 +326,6 @@ a {
|
|||
color: #41f5f5;
|
||||
text-decoration-line: none;
|
||||
cursor: pointer;
|
||||
width: 100%;
|
||||
min-width: 100%;
|
||||
font-family: "Lucida Console", "Courier New", monospace;
|
||||
-webkit-text-stroke-width: 1px;
|
||||
-webkit-text-stroke-color: #02f2f2;
|
||||
|
|
Loading…
Reference in a new issue