Skip to content

Commit 9eb40df

Browse files
system() added latest mac studio versions (macOS)
1 parent 114dc81 commit 9eb40df

File tree

5 files changed

+29
-7
lines changed

5 files changed

+29
-7
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.11 | 2025-10-05 | `system()` added latest mac studio versions (macOS) |
9394
| 5.27.10 | 2025-09-16 | `powerShell()` adapted params (windows) |
9495
| 5.27.9 | 2025-09-13 | `typings` fsOpenFiles typings fixed |
9596
| 5.27.8 | 2025-08-25 | `disklayout()` fixed catch error (macOS) |

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.11</th>
62+
<td>2025-10-05</td>
63+
<td><span class="code">system()</span> added latest mac studio versions (macOS)</td>
64+
</tr>
6065
<tr>
6166
<th scope="row">5.27.10</th>
6267
<td>2025-09-16</td>

docs/index.html

Lines changed: 1 addition & 1 deletion
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-
3<div class="version">New Version: <span id="version">5.27.10</span></div>
173+
3<div class="version">New Version: <span id="version">5.27.11</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">

lib/util.js

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1053,7 +1053,7 @@ function decodePiCpuinfo(lines) {
10531053
'16': 'Internal use only',
10541054
'17': '5',
10551055
'18': 'CM5',
1056-
'19': '500',
1056+
'19': '500/500+',
10571057
'1a': 'CM5 Lite',
10581058
};
10591059

@@ -2051,31 +2051,47 @@ function getAppleModel(key) {
20512051
key: 'Mac14,13',
20522052
name: 'Mac Studio',
20532053
size: '',
2054-
processor: '',
2054+
processor: 'M2 Max',
20552055
year: '2023',
20562056
additional: ''
20572057
},
20582058
{
20592059
key: 'Mac14,14',
20602060
name: 'Mac Studio',
20612061
size: '',
2062-
processor: '',
2062+
processor: 'M2 Ultra',
20632063
year: '2023',
20642064
additional: ''
20652065
},
2066+
{
2067+
key: 'Mac15,14',
2068+
name: 'Mac Studio',
2069+
size: '',
2070+
processor: 'M3 Ultra',
2071+
year: '2025',
2072+
additional: ''
2073+
},
2074+
{
2075+
key: 'Mac16,9',
2076+
name: 'Mac Studio',
2077+
size: '',
2078+
processor: 'M4 Max',
2079+
year: '2025',
2080+
additional: ''
2081+
},
20662082
{
20672083
key: 'Mac13,1',
20682084
name: 'Mac Studio',
20692085
size: '',
2070-
processor: '',
2086+
processor: 'M1 Max',
20712087
year: '2022',
20722088
additional: ''
20732089
},
20742090
{
20752091
key: 'Mac13,2',
20762092
name: 'Mac Studio',
20772093
size: '',
2078-
processor: '',
2094+
processor: 'M1 Ultra',
20792095
year: '2022',
20802096
additional: ''
20812097
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
],
8080
"repository": {
8181
"type": "git",
82-
"url": "https://github.com/sebhildebrandt/systeminformation.git"
82+
"url": "git+https://github.com/sebhildebrandt/systeminformation.git"
8383
},
8484
"funding": {
8585
"type": "Buy me a coffee",

0 commit comments

Comments
 (0)