diff --git a/CHANGELOG.md b/CHANGELOG.md index 0aeda96..0b9457a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -90,6 +90,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page. | 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.1 | 2026-01-07 | `networkInterfaces()`, `users()` improved date parsing (linux) | | 5.30.0 | 2026-01-06 | `processes()` added user (windows) | diff --git a/README.md b/README.md index 5ac4062..03151f4 100644 --- a/README.md +++ b/README.md @@ -30,28 +30,6 @@ ## 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 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 diff --git a/docs/history.html b/docs/history.html index c6912c3..d58feee 100644 --- a/docs/history.html +++ b/docs/history.html @@ -57,6 +57,11 @@ + + 5.30.3 + 2026-01-11 + Updated docs, code cleanup + 5.30.2 2026-01-08 diff --git a/docs/index.html b/docs/index.html index 93110d3..d52f535 100644 --- a/docs/index.html +++ b/docs/index.html @@ -170,7 +170,7 @@
systeminformation
 
-
New Version: 5.30.2
+
New Version: 5.30.3
@@ -212,7 +212,7 @@
Downloads last month
-
935
+
937
Dependents
diff --git a/lib/util.js b/lib/util.js index d9acefe..1d58ab6 100644 --- a/lib/util.js +++ b/lib/util.js @@ -435,13 +435,13 @@ function powerShellRelease() { if (_psChild) { _psChild.stdin.write('exit' + os.EOL); _psChild.stdin.end(); - _psPersistent = false; } } catch { if (_psChild) { _psChild.kill(); } } + _psPersistent = false; _psChild = null; }