fix typings dynamicData, networkInterfaceDatass
This commit is contained in:
parent
55cc3657bc
commit
8ebd4ae485
@ -82,6 +82,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page.
|
||||
|
||||
| Version | Date | Comment |
|
||||
| ------- | ---------- | --------------------------------------------------------------------------------------------------- |
|
||||
| 5.17.13 | 2023-05-24 | `typings` fix typings dynamicData, networkInterfaceDatass |
|
||||
| 5.17.12 | 2023-02-28 | `uuid()` fix unique mac address issue (Android) |
|
||||
| 5.17.11 | 2023-02-27 | `blockDevices()` raid added label, uuid (linux) |
|
||||
| 5.17.10 | 2023-02-23 | `blockDevices()` fixed parsing raids (linux) |
|
||||
|
||||
@ -29,7 +29,7 @@
|
||||
[![MIT license][license-img]][license-url]
|
||||
|
||||
## The Systeminformation Project
|
||||
This is amazing. Started as a small project just for myself, it now has > 15,000 lines of code, > 500 versions published, up to 6 mio downloads per month, > 140 mio downloads overall. #1 NPM ranking for backend packages. Thank you to all who contributed to this project!
|
||||
This is amazing. Started as a small project just for myself, it now has > 15,000 lines of code, > 500 versions published, up to 6 mio downloads per month, > 150 mio downloads overall. #1 NPM ranking for backend packages. Thank you to all who contributed to this project!
|
||||
|
||||
## New Version 5.0
|
||||
|
||||
|
||||
@ -57,6 +57,11 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<th scope="row">5.17.13</th>
|
||||
<td>2023-05-24</td>
|
||||
<td><span class="code">typings</span> fix typings dynamicData, networkInterfaceData</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">5.17.12</th>
|
||||
<td>2023-02-28</td>
|
||||
|
||||
@ -170,7 +170,7 @@
|
||||
<img class="logo" src="assets/logo.png" alt="logo">
|
||||
<div class="title">systeminformation</div>
|
||||
<div class="subtitle"><span id="typed"></span> </div>
|
||||
<div class="version">New Version: <span id="version">5.17.12</span></div>
|
||||
<div class="version">New Version: <span id="version">5.17.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">
|
||||
@ -204,7 +204,7 @@
|
||||
</div>
|
||||
<div class="row number-section">
|
||||
<div class="col-xl-4 col-lg-4 col-md-4 col-12">
|
||||
<div class="numbers">15,385</div>
|
||||
<div class="numbers">15,389</div>
|
||||
<div class="title">Lines of code</div>
|
||||
</div>
|
||||
<div class="col-xl-4 col-lg-4 col-md-4 col-12">
|
||||
@ -212,7 +212,7 @@
|
||||
<div class="title">Downloads last month</div>
|
||||
</div>
|
||||
<div class="col-xl-4 col-lg-4 col-md-4 col-12">
|
||||
<div class="numbers">597</div>
|
||||
<div class="numbers">612</div>
|
||||
<div class="title">Dependents</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
9
lib/index.d.ts
vendored
9
lib/index.d.ts
vendored
@ -492,6 +492,7 @@ export namespace Systeminformation {
|
||||
interface NetworkInterfacesData {
|
||||
iface: string;
|
||||
ifaceName: string;
|
||||
default: boolean;
|
||||
ip4: string;
|
||||
ip4subnet: string;
|
||||
ip6: string;
|
||||
@ -924,14 +925,14 @@ export namespace Systeminformation {
|
||||
v8: string;
|
||||
cpuCurrentSpeed: CpuCurrentSpeedData;
|
||||
users: UserData[];
|
||||
processes: ProcessesData;
|
||||
processes: ProcessesData[];
|
||||
currentLoad: CurrentLoadData;
|
||||
cpuTemperature: CpuTemperatureData;
|
||||
networkStats: NetworkStatsData;
|
||||
networkConnections: NetworkConnectionsData;
|
||||
networkStats: NetworkStatsData[];
|
||||
networkConnections: NetworkConnectionsData[];
|
||||
mem: MemData;
|
||||
battery: BatteryData;
|
||||
services: ServicesData;
|
||||
services: ServicesData[];
|
||||
fsSize: FsSizeData;
|
||||
fsStats: FsStatsData;
|
||||
disksIO: DisksIoData;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user