Skip to content

Commit

Permalink
version v1.0.0 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
aksakalli committed Sep 23, 2018
1 parent 92553e0 commit 6c73da3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions lib/monitor/mem.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ Mem.prototype.updateData = function(data) {

this.line.setData(this.memData);
this.memDonut.setData([{
percent: memPer,
percent: memPer / 100,
label: memTitle,
'color': colors[0]
}, ]);
this.swapDonut.setData([{
percent: swapPer,
percent: swapPer / 100,
label: swapTitle,
'color': colors[1]
}, ]);
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gtop",
"version": "0.1.6",
"version": "1.0.0",
"description": "graphic top",
"main": "./index.js",
"bin": {
Expand Down

0 comments on commit 6c73da3

Please sign in to comment.