updated docs, code cleanup

This commit is contained in:
Sebastian Hildebrandt 2026-01-11 20:43:13 +01:00
parent 547236e027
commit 6266f1ee94
5 changed files with 9 additions and 25 deletions

View File

@ -90,6 +90,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page.
| Version | Date | Comment | | Version | Date | Comment |
| ------- | ---------- | --------------------------------------------------------------------------------------------------- | | ------- | ---------- | --------------------------------------------------------------------------------------------------- |
| 5.30.3 | 2026-01-11 | Updated docs, code cleanup. |
| 5.30.2 | 2026-01-08 | `processes()` revert added user (windows) | | 5.30.2 | 2026-01-08 | `processes()` revert added user (windows) |
| 5.30.1 | 2026-01-07 | `networkInterfaces()`, `users()` improved date parsing (linux) | | 5.30.1 | 2026-01-07 | `networkInterfaces()`, `users()` improved date parsing (linux) |
| 5.30.0 | 2026-01-06 | `processes()` added user (windows) | | 5.30.0 | 2026-01-06 | `processes()` added user (windows) |

View File

@ -30,28 +30,6 @@
## The Systeminformation Project ## The Systeminformation Project
### Merry Christmas and Happy new year
```
.''.
.''. . *''* :_\/_:
:_\/_: _\(/_ .:.*_\/_* : /\ :
.''.: /\ : ./)\ ':'* /\ * : '..'.
:_\/_:'.:::. ' *''* * '.\'/.' _\(/_
: /\ : ::::: *_\/_* -= o =- /)\
'..' ':::' * /\ * .'/.\'. '
*..* :
*
* /.\ * * . *
. /..'\ . . * .
*/'.'\* . . . * *
* /.''.'\ * . . . *
. */.'.'.\*
.........".""""/'.''.'.\""."."........".".".......................
^^^[_]^^^*
```
I wish you all a Merry Christmas and a peaceful New Year 2026.
This is amazing. Started as a small project just for myself, it now has > 19,000 This is amazing. Started as a small project just for myself, it now has > 19,000
lines of code, > 700 versions published, up to 15 mio downloads per month, > 450 lines of code, > 700 versions published, up to 15 mio downloads per month, > 450
mio downloads overall. Top 10 NPM ranking for backend packages. Thank you to all mio downloads overall. Top 10 NPM ranking for backend packages. Thank you to all

View File

@ -57,6 +57,11 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr>
<th scope="row">5.30.3</th>
<td>2026-01-11</td>
<td>Updated docs, code cleanup</td>
</tr>
<tr> <tr>
<th scope="row">5.30.2</th> <th scope="row">5.30.2</th>
<td>2026-01-08</td> <td>2026-01-08</td>

View File

@ -170,7 +170,7 @@
<img class="logo" src="assets/logo.png" alt="logo"> <img class="logo" src="assets/logo.png" alt="logo">
<div class="title">systeminformation</div> <div class="title">systeminformation</div>
<div class="subtitle"><span id="typed"></span>&nbsp;</div> <div class="subtitle"><span id="typed"></span>&nbsp;</div>
<div class="version">New Version: <span id="version">5.30.2</span></div> <div class="version">New Version: <span id="version">5.30.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> <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>
<div class="down"> <div class="down">
@ -212,7 +212,7 @@
<div class="title">Downloads last month</div> <div class="title">Downloads last month</div>
</div> </div>
<div class="col-xl-4 col-lg-4 col-md-4 col-12"> <div class="col-xl-4 col-lg-4 col-md-4 col-12">
<div class="numbers">935</div> <div class="numbers">937</div>
<div class="title">Dependents</div> <div class="title">Dependents</div>
</div> </div>
</div> </div>

View File

@ -435,13 +435,13 @@ function powerShellRelease() {
if (_psChild) { if (_psChild) {
_psChild.stdin.write('exit' + os.EOL); _psChild.stdin.write('exit' + os.EOL);
_psChild.stdin.end(); _psChild.stdin.end();
_psPersistent = false;
} }
} catch { } catch {
if (_psChild) { if (_psChild) {
_psChild.kill(); _psChild.kill();
} }
} }
_psPersistent = false;
_psChild = null; _psChild = null;
} }