Skip to content

Commit

Permalink
Updated README, removed debug output from Graph
Browse files Browse the repository at this point in the history
  • Loading branch information
LatvianModder committed Mar 21, 2015
1 parent b66fd41 commit 3ccea07
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# CurseGraph

This small application creates a background process in SystemTray (On Windows, its the small icon bar on bottom right) and tracks and records your mods total downloads every 15 minutes. By default, my mods are added, but you can press "Remove" to remove them and "Add a Mod" in main menu to add a new mod. Valid ModID is "224778-latcoremc" (the ending of your Curse project's link). Files are saved in C:/Users/username/LatMod/CurseGraph/, formatted in Json
2 changes: 1 addition & 1 deletion src/latmod/cursegraph/Graph.java
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public void paint(Graphics g)
double y = h - 1 - Utils.map(values[i].down, minDown, maxDown, 0D, h);
points.add(new Point((int)x, (int)y));

System.out.println(x + ", " + y + "; " + values[i].time + ", " + values[i].down);
//System.out.println(x + ", " + y + "; " + values[i].time + ", " + values[i].down);
}

for(int i = 0; i < points.size(); i++)
Expand Down

0 comments on commit 3ccea07

Please sign in to comment.