minor fix (blockDevices data array, Windows)
This commit is contained in:
parent
dc1604cb56
commit
4ffe0b91c7
@ -94,6 +94,7 @@ Other changes
|
|||||||
|
|
||||||
| Version | Date | Comment |
|
| Version | Date | Comment |
|
||||||
| -------------- | -------------- | -------- |
|
| -------------- | -------------- | -------- |
|
||||||
|
| 3.17.3 | 2017-04-29 | minor fix (blockDevices data array, Windows) |
|
||||||
| 3.17.2 | 2017-04-24 | minor fix (removed console.log) |
|
| 3.17.2 | 2017-04-24 | minor fix (removed console.log) |
|
||||||
| 3.17.1 | 2017-04-23 | fixed bugs fsSize(win), si.processes (command), si.osinfo(win) |
|
| 3.17.1 | 2017-04-23 | fixed bugs fsSize(win), si.processes (command), si.osinfo(win) |
|
||||||
| 3.17.0 | 2017-02-19 | windows support for some first functions, extended process list (linux)|
|
| 3.17.0 | 2017-02-19 | windows support for some first functions, extended process list (linux)|
|
||||||
|
|||||||
@ -400,6 +400,7 @@ Written by Sebastian Hildebrandt [sebhildebrandt](https://github.com/sebhildebra
|
|||||||
- Quentin Busuttil [Buzut](https://github.com/Buzut)
|
- Quentin Busuttil [Buzut](https://github.com/Buzut)
|
||||||
- lapsio [lapsio](https://github.com/lapsio)
|
- lapsio [lapsio](https://github.com/lapsio)
|
||||||
- csy [csy](https://github.com/csy1983)
|
- csy [csy](https://github.com/csy1983)
|
||||||
|
- Tiago Roldão [tiagoroldao](https://github.com/tiagoroldao)
|
||||||
|
|
||||||
OSX Temperature: Credits here are going to:
|
OSX Temperature: Credits here are going to:
|
||||||
|
|
||||||
|
|||||||
@ -195,11 +195,11 @@ function blockDevices(callback) {
|
|||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
process.nextTick(() => {
|
process.nextTick(() => {
|
||||||
|
let data = [];
|
||||||
if (_linux) {
|
if (_linux) {
|
||||||
// see https://wiki.ubuntuusers.de/lsblk/
|
// see https://wiki.ubuntuusers.de/lsblk/
|
||||||
// exec("lsblk -bo NAME,TYPE,SIZE,FSTYPE,MOUNTPOINT,UUID,ROTA,RO,TRAN,SERIAL,LABEL,MODEL,OWNER,GROUP,MODE,ALIGNMENT,MIN-IO,OPT-IO,PHY-SEC,LOG-SEC,SCHED,RQ-SIZE,RA,WSAME", function (error, stdout) {
|
// exec("lsblk -bo NAME,TYPE,SIZE,FSTYPE,MOUNTPOINT,UUID,ROTA,RO,TRAN,SERIAL,LABEL,MODEL,OWNER,GROUP,MODE,ALIGNMENT,MIN-IO,OPT-IO,PHY-SEC,LOG-SEC,SCHED,RQ-SIZE,RA,WSAME", function (error, stdout) {
|
||||||
exec("lsblk -bPo NAME,TYPE,SIZE,FSTYPE,MOUNTPOINT,UUID,ROTA,RO,RM,TRAN,SERIAL,LABEL,MODEL,OWNER", function (error, stdout) {
|
exec("lsblk -bPo NAME,TYPE,SIZE,FSTYPE,MOUNTPOINT,UUID,ROTA,RO,RM,TRAN,SERIAL,LABEL,MODEL,OWNER", function (error, stdout) {
|
||||||
let data = [];
|
|
||||||
if (!error) {
|
if (!error) {
|
||||||
let lines = blkStdoutToObject(stdout).split('\n');
|
let lines = blkStdoutToObject(stdout).split('\n');
|
||||||
data = parseBlk(lines);
|
data = parseBlk(lines);
|
||||||
@ -223,7 +223,6 @@ function blockDevices(callback) {
|
|||||||
}
|
}
|
||||||
if (_darwin) {
|
if (_darwin) {
|
||||||
exec("diskutil info -all", function (error, stdout) {
|
exec("diskutil info -all", function (error, stdout) {
|
||||||
let data = [];
|
|
||||||
if (!error) {
|
if (!error) {
|
||||||
let lines = stdout.toString().split('\n');
|
let lines = stdout.toString().split('\n');
|
||||||
// parse lines into temp array of devices
|
// parse lines into temp array of devices
|
||||||
|
|||||||
@ -82,6 +82,7 @@
|
|||||||
// --------------------------------
|
// --------------------------------
|
||||||
//
|
//
|
||||||
// version date comment
|
// version date comment
|
||||||
|
// 3.17.3 2017-04-29 minor fix (blockDevices data array, Windows)
|
||||||
// 3.17.2 2017-04-24 minor fix (removed console.log)
|
// 3.17.2 2017-04-24 minor fix (removed console.log)
|
||||||
// 3.17.1 2017-04-23 fixed bugs fsSize(win), si.processes (command), si.osinfo(win)
|
// 3.17.1 2017-04-23 fixed bugs fsSize(win), si.processes (command), si.osinfo(win)
|
||||||
// 3.17.0 2017-02-19 windows support for some first functions
|
// 3.17.0 2017-02-19 windows support for some first functions
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user