Added CPU information.

Added Memory information.
This commit is contained in:
Gunther Brunner
2014-06-18 00:40:49 +09:00
parent 6c88884fba
commit b139849b3f
6 changed files with 234 additions and 50 deletions

View File

@@ -39,6 +39,8 @@ datautil.applyData = function(device) {
device.name = match.name.id
device.releasedAt = match.date
device.image = model + '.jpg'
device.cpu = match.cpu
device.memory = match.memory
}
else {
log.warn(
@@ -48,7 +50,7 @@ datautil.applyData = function(device) {
)
}
}
return device
}