Skip to content
This repository has been archived by the owner on Jan 1, 2025. It is now read-only.

Commit

Permalink
Hotfix: Removed some logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Glitch (quickdb-latest) committed Apr 6, 2018
1 parent 96c43f4 commit b423c72
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 3 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Quick.db
<a href="http://www.youtube.com/subscription_center?add_user=TrueXPixels"><img src="https://img.shields.io/badge/Subscribe-YouTube-red.svg" alt="YouTube Channel" /></a>
<a href="https://app.fossa.io/projects/git%2Bgithub.com%2FTrueXPixels%2Fquick.db?ref=badge_shield" alt="FOSSA Status"><img src="https://app.fossa.io/api/projects/git%2Bgithub.com%2FTrueXPixels%2Fquick.db.svg?type=shield"/></a>
<a href="https://npm-stat.com/charts.html?package=quick.db"><img src="https://img.shields.io/badge/Downloads-16.3k+-brightgreen.svg"></a>
<a href="https://GitHub.com/truexpixels/quick.db/stargazers/"><img src="https://img.shields.io/github/stars/truexpixels/quick.db.svg?style=social&label=Star&maxAge=2592000"></a>
</p>

| Website / Documentation | Support Discord | NPM Page |
Expand Down
Binary file modified json.sqlite
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"version": "6.1.0"
"version": "6.1.1"
}
7 changes: 6 additions & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,9 @@ economy.set(`userBalance_258622912095846400`, 2000);
guilds.set(`guildName_343572980351107077`, 'Plexi Development');
guilds.set(`guildName_316720611453829121`, 'Nitro');
guilds.set(`guildName_417723229721853963`, 'Guilds List');
guilds.set(`guildName_425820587252908037`, 'Another Test Server');
guilds.set(`guildName_425820587252908037`, 'Another Test Server');

db.set(`generalInfo`, { name: 'TrueXPixels', discrim: '#0001' });
db.set(`restartCount`, 25);
db.set(`cmdCount`, 5);
db.set(`authorID`, '144645791145918464');
1 change: 0 additions & 1 deletion src/webviewer/createWebview.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ module.exports = function(password, port, suburl) {
}, db).then(i => {
tables(db).then(o => {
i.unshift(o);
console.log(i)
socket.emit('recievedData', i);
db.close();
});
Expand Down
6 changes: 6 additions & 0 deletions src/webviewer/css/data.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,10 @@ li a:hover {
font-size: 30px;
background: #f6f6f6;
cursor: pointer;
}

tr a:hover {
font-size: 30px;
background: #f6f6f6;
cursor: pointer;
}
6 changes: 6 additions & 0 deletions src/webviewer/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,10 @@ li a {
li a:hover {
font-size: 30px;
background: #f6f6f6;
}

tr a:hover {
font-size: 30px;
background: #f6f6f6;
cursor: pointer;
}

0 comments on commit b423c72

Please sign in to comment.