networkConnections() fixed parsing (linux)
This commit is contained in:
parent
782b92df02
commit
33196e4797
@ -30,7 +30,8 @@ For major (breaking) changes - version 3 and 2 see end of page.
|
||||
|
||||
| Version | Date | Comment |
|
||||
| -------------- | -------------- | -------- |
|
||||
| 4.14.12 | 2019-10-14 | getCpu() fixed multi socket detection (linux) |
|
||||
| 4.14.13 | 2019-10-15 | `networkConnections()` fixed parsing (linux) |
|
||||
| 4.14.12 | 2019-10-14 | `getCpu()` fixed multi socket detection (linux) |
|
||||
| 4.14.11 | 2019-10-01 | type definitions fix dockerInfo |
|
||||
| 4.14.10 | 2019-10-01 | type definitions fix memLayout |
|
||||
| 4.14.9 | 2019-10-01 | `processLoad()` fix windows |
|
||||
|
||||
@ -29,7 +29,7 @@
|
||||
[![Caretaker][caretaker-image]][caretaker-url]
|
||||
[![MIT license][license-img]][license-url]
|
||||
|
||||
This is amazing. Started as a small projekt just for myself, it now has > 9,000 lines of code, > 200 versions published, up to 150,000 downloads per month, > 1 Mio downloads overall. Thank you to all who contributed to this project!
|
||||
This is amazing. Started as a small projekt just for myself, it now has > 9,000 lines of code, > 250 versions published, up to 200,000 downloads per month, > 1 Mio downloads overall. Thank you to all who contributed to this project!
|
||||
|
||||
## New Version 4.0
|
||||
|
||||
|
||||
@ -83,6 +83,11 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row">4.14.13</th>
|
||||
<td>2019-10-15</td>
|
||||
<td><span class="code">networkConnections()</span> fixed parsing (linux)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">4.14.12</th>
|
||||
<td>2019-10-14</td>
|
||||
|
||||
@ -168,7 +168,7 @@
|
||||
<img class="logo" src="assets/logo.png">
|
||||
<div class="title">systeminformation</div>
|
||||
<div class="subtitle"><span id="typed"></span></div>
|
||||
<div class="version">Current Version: <span id="version">4.14.12</span></div>
|
||||
<div class="version">Current Version: <span id="version">4.14.13</span></div>
|
||||
<button class="btn btn-light" onclick="location.href='https://github.com/sebhildebrandt/systeminformation'">View on Github <i class=" fab fa-github"></i></button>
|
||||
</div>
|
||||
<div class="down">
|
||||
|
||||
@ -785,7 +785,7 @@ function networkConnections(callback) {
|
||||
let lines = stdout.toString().split('\n');
|
||||
lines.forEach(function (line) {
|
||||
line = line.replace(/ +/g, ' ').split(' ');
|
||||
if (line.length >= 6) {
|
||||
if (line.length >= 7) {
|
||||
let localip = line[3];
|
||||
let localport = '';
|
||||
let localaddress = line[3].split(':');
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user