systeminformation 5.16.7 → 5.16.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -0
- package/lib/util.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,6 +28,29 @@
|
|
|
28
28
|
[![Caretaker][caretaker-image]][caretaker-url]
|
|
29
29
|
[![MIT license][license-img]][license-url]
|
|
30
30
|
|
|
31
|
+
## Merry Christmas and Happy new year
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
.''.
|
|
35
|
+
.''. . *''* :_\/_:
|
|
36
|
+
:_\/_: _\(/_ .:.*_\/_* : /\ :
|
|
37
|
+
.''.: /\ : ./)\ ':'* /\ * : '..'.
|
|
38
|
+
:_\/_:'.:::. ' *''* * '.\'/.' _\(/_
|
|
39
|
+
: /\ : ::::: *_\/_* -= o =- /)\
|
|
40
|
+
'..' ':::' * /\ * .'/.\'. '
|
|
41
|
+
*..* :
|
|
42
|
+
*
|
|
43
|
+
* /.\ * * . *
|
|
44
|
+
. /..'\ . . * .
|
|
45
|
+
*/'.'\* . . . * *
|
|
46
|
+
* /.''.'\ * . . . *
|
|
47
|
+
. */.'.'.\*
|
|
48
|
+
.........".""""/'.''.'.\""."."........".".".......................
|
|
49
|
+
^^^[_]^^^*
|
|
50
|
+
```
|
|
51
|
+
I wish you all a Merry Christmas and a peaceful New Year 2023.
|
|
52
|
+
|
|
53
|
+
## The Systeminformation Project
|
|
31
54
|
This is amazing. Started as a small project just for myself, it now has > 15,000 lines of code, > 500 versions published, up to 5 mio downloads per month, > 100 mio downloads overall. #1 NPM ranking for backend packages. Thank you to all who contributed to this project!
|
|
32
55
|
|
|
33
56
|
## New Version 5.0
|
package/lib/util.js
CHANGED
|
@@ -280,7 +280,7 @@ function parseHead(head, rights) {
|
|
|
280
280
|
space = head[i] === ' ';
|
|
281
281
|
}
|
|
282
282
|
}
|
|
283
|
-
to =
|
|
283
|
+
to = 5000;
|
|
284
284
|
result.push({
|
|
285
285
|
from: from,
|
|
286
286
|
to: to,
|
|
@@ -423,7 +423,7 @@ function powerShellRelease() {
|
|
|
423
423
|
function powerShell(cmd) {
|
|
424
424
|
|
|
425
425
|
if (_psPersistent) {
|
|
426
|
-
const id = Math.random().toString(36).
|
|
426
|
+
const id = Math.random().toString(36).substring(2, 12);
|
|
427
427
|
return new Promise((resolve) => {
|
|
428
428
|
process.nextTick(() => {
|
|
429
429
|
function callback(data) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "systeminformation",
|
|
3
|
-
"version": "5.16.
|
|
3
|
+
"version": "5.16.9",
|
|
4
4
|
"description": "Advanced, lightweight system and OS information library",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Sebastian Hildebrandt <hildebrandt@plus-innovations.com> (https://plus-innovations.com)",
|