system() sku fix windows#
This commit is contained in:
parent
9f5ea19241
commit
765f210524
@ -30,6 +30,7 @@ For major (breaking) changes - version 3 and 2 see end of page.
|
||||
|
||||
| Version | Date | Comment |
|
||||
| -------------- | -------------- | -------- |
|
||||
| 4.14.3 | 2019-07-09 | `system()` sku fix windows |
|
||||
| 4.14.2 | 2019-07-07 | `networkConnections()` pid linux fix NAN |
|
||||
| 4.14.1 | 2019-07-04 | `graphics()` added display position windows |
|
||||
| 4.14.0 | 2019-07-03 | `processes()` added process path and params |
|
||||
|
||||
@ -83,6 +83,11 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row">4.14.3</th>
|
||||
<td>2019-07-09</td>
|
||||
<td><span class="code">system()</span> sku fix windows</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">4.14.2</th>
|
||||
<td>2019-07-07</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.2</span></div>
|
||||
<div class="version">Current Version: <span id="version">4.14.3</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">
|
||||
|
||||
@ -231,9 +231,10 @@ function system(callback) {
|
||||
if (callback) { callback(result); }
|
||||
resolve(result);
|
||||
});
|
||||
} else {
|
||||
if (callback) { callback(result); }
|
||||
resolve(result);
|
||||
}
|
||||
if (callback) { callback(result); }
|
||||
resolve(result);
|
||||
});
|
||||
} catch (e) {
|
||||
if (callback) { callback(result); }
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user