Skip to content

Commit 7a94bc1

Browse files
cpuCurrentSpeed() fix hasOwnProperty
1 parent 5b63199 commit 7a94bc1

File tree

5 files changed

+572
-350
lines changed

5 files changed

+572
-350
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page.
9090

9191
| Version | Date | Comment |
9292
| ------- | ---------- | --------------------------------------------------------------------------------------------------- |
93+
| 5.27.13 | 2025-12-10 | `cpuCurrentSpeed()` fix hasOwnProperty |
9394
| 5.27.12 | 2025-12-09 | `networkConnections()` fix pid issue (macOS) |
9495
| 5.27.11 | 2025-10-05 | `system()` added latest mac studio versions (macOS) |
9596
| 5.27.10 | 2025-09-16 | `powerShell()` adapted params (windows) |

biome.json

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/2.3.1/schema.json",
3+
"vcs": {
4+
"enabled": true,
5+
"clientKind": "git",
6+
"useIgnoreFile": true
7+
},
8+
"files": {
9+
"ignoreUnknown": false
10+
},
11+
"formatter": {
12+
"enabled": true,
13+
"indentWidth": 2,
14+
"lineWidth": 200,
15+
"indentStyle": "space",
16+
"attributePosition": "auto"
17+
},
18+
"linter": {
19+
"enabled": true,
20+
"rules": {
21+
"recommended": true,
22+
"suspicious": {
23+
"noExplicitAny": "off"
24+
},
25+
"complexity": {
26+
"useLiteralKeys": "off"
27+
}
28+
}
29+
},
30+
"javascript": {
31+
"formatter": {
32+
"quoteStyle": "single",
33+
"trailingCommas": "none",
34+
"arrowParentheses": "always"
35+
}
36+
},
37+
"json": {
38+
"formatter": {
39+
"trailingCommas": "none"
40+
}
41+
},
42+
"html": {
43+
"formatter": {
44+
"enabled": true,
45+
"indentStyle": "space",
46+
"indentWidth": 2,
47+
"lineWidth": 300,
48+
"attributePosition": "auto"
49+
},
50+
"parser": {
51+
"interpolation": true
52+
}
53+
},
54+
"assist": {
55+
"enabled": true,
56+
"actions": {
57+
"source": {
58+
"organizeImports": "on"
59+
}
60+
}
61+
}
62+
}

docs/history.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@ <h3>Full version history</h3>
5757
</tr>
5858
</thead>
5959
<tbody>
60+
<tr>
61+
<th scope="row">5.27.13</th>
62+
<td>2025-12-10</td>
63+
<td><span class="code">cpuCurrentSpeed()</span> hasOwnProperty fix</td>
64+
</tr>
6065
<tr>
6166
<th scope="row">5.27.12</th>
6267
<td>2025-12-09</td>

docs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
<img class="logo" src="assets/logo.png" alt="logo">
171171
<div class="title">systeminformation</div>
172172
<div class="subtitle"><span id="typed"></span>&nbsp;</div>
173-
<div class="version">New Version: <span id="version">5.27.12</span></div>
173+
<div class="version">New Version: <span id="version">5.27.13</span></div>
174174
<button class="btn btn-light" onclick="location.href='https://github.com/sebhildebrandt/systeminformation'">View on Github <i class=" fab fa-github"></i></button>
175175
</div>
176176
<div class="down">
@@ -212,7 +212,7 @@
212212
<div class="title">Downloads last month</div>
213213
</div>
214214
<div class="col-xl-4 col-lg-4 col-md-4 col-12">
215-
<div class="numbers">901</div>
215+
<div class="numbers">923</div>
216216
<div class="title">Dependents</div>
217217
</div>
218218
</div>

0 commit comments

Comments
 (0)