diff --git a/CHANGELOG.md b/CHANGELOG.md index 3038d26..aaa5167 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.23.8 | 2024-12-10 | `system()` added Raspberry 500 detection | | 5.23.7 | 2024-12-09 | `networkInterfaces()` sanitizing SSID names (windows) | | 5.23.6 | 2024-12-08 | `system()` added Raspberry CM5 detection | | 5.23.5 | 2024-08-21 | `processLoad()` fixed * process list (linux) | diff --git a/docs/history.html b/docs/history.html index 929c6e9..d7da78d 100644 --- a/docs/history.html +++ b/docs/history.html @@ -57,6 +57,11 @@ + + 5.23.8 + 2024-12-10 + system() added Raspberry 500 detection + 5.23.7 2024-12-09 diff --git a/docs/index.html b/docs/index.html index d29acd2..b9480de 100644 --- a/docs/index.html +++ b/docs/index.html @@ -170,7 +170,7 @@
systeminformation
 
-
New Version: 5.23.7
+
New Version: 5.23.8
diff --git a/lib/util.js b/lib/util.js index 672071c..ab85f62 100644 --- a/lib/util.js +++ b/lib/util.js @@ -1020,9 +1020,9 @@ function decodePiCpuinfo(lines) { '15': 'CM4S', '16': 'Internal use only', '17': '5', - '18': 'CM5 (EMMC)', - '19': 'Internal use only', - '1a': 'CM5 (Lite)', + '18': 'CM5', + '19': '500', + '1a': 'CM5 Lite', }; const revisionCode = getValue(lines, 'revision', ':', true);