]> git.example.dev Git - binbsis50.git/commitdiff
bumped node_redis to version 0.9.x
authorLuigi Pinca <luigipinca@gmail.com>
Tue, 19 Nov 2013 16:13:59 +0000 (17:13 +0100)
committerLuigi Pinca <luigipinca@gmail.com>
Tue, 19 Nov 2013 16:13:59 +0000 (17:13 +0100)
lib/user.js
package.json

index 593a0326f244ba8d54a8bc83a726a51ee26d2b5a..0f792182ea7a3be04e91e0e1f248f422a13a1fe0 100644 (file)
@@ -8,16 +8,16 @@ module.exports = function(username, email, salt, hash, joindate) {
   this.salt = salt;
   this.password = hash;
   this.joindate = joindate;
-  this.totpoints = '0';
-  this.bestscore = '0';
-  this.golds = '0';
-  this.silvers = '0';
-  this.bronzes = '0';
-  this.bestguesstime = '30000';
-  this.worstguesstime = '0';
-  this.totguesstime = '0';
-  this.guessed = '0';
-  this.victories = '0';
-  this.secondplaces = '0';
-  this.thirdplaces = '0';
+  this.totpoints = 0;
+  this.bestscore = 0;
+  this.golds = 0;
+  this.silvers = 0;
+  this.bronzes = 0;
+  this.bestguesstime = 30000;
+  this.worstguesstime = 0;
+  this.totguesstime = 0;
+  this.guessed = 0;
+  this.victories = 0;
+  this.secondplaces = 0;
+  this.thirdplaces = 0;
 };
index e14e7047ec2b55f06328f7bc287c73db32fc7cee..10f71e95e451944a6911ac25abb30b5d76ca96a6 100644 (file)
@@ -7,7 +7,7 @@
     "express": "3.4.x",
     "jade": "0.35.x",
     "nodemailer": "0.5.x",
-    "redis": "0.7.x",
+    "redis": "0.9.x",
     "socket.io": "0.9.x"
   },
   "devDependencies": {
@@ -26,5 +26,5 @@
     "start": "node app.js"
   },
   "subdomain": "binb",
-  "version": "0.3.6-12"
+  "version": "0.3.6-13"
 }