Skip to content

Commit 539a217

Browse files
committed
#84 processor lookup for sp language
1 parent f7a2b13 commit 539a217

File tree

2 files changed

+24
-16
lines changed

2 files changed

+24
-16
lines changed

README.md

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -79,30 +79,36 @@ Source code is available on our [github repo](https://github.com/JDiskMark/jdm-j
7979
## Release Notes
8080

8181
### v1.0.0 planned
82-
- TODO: GH-16 MacOS installer - tyler
83-
- TODO: GH-15 Ubuntu installer - jeff
84-
- TODO: GH-64 persist IOPS, write sync - val
85-
- TODO: GH-33 maven build - lane
86-
- TODO: GH-40 gui presentation issues - james
82+
- TODO: #16 MacOS installer - tyler
83+
- TODO: #15 Ubuntu installer - jeff
84+
- TODO: #33 maven build - lane
85+
- TODO: #40 gui presentation issues - james
86+
- #84 processor info resolved for (sp) installs
87+
88+
### v0.6.2 linux optimized ui
89+
- #64 persist IOPS, write sync - val
90+
- control panel on left
91+
- allow concurrent version runs
92+
- event tab swapped w disk location
8793

8894
### v0.6.1 ms app store release
8995
- JDiskMark in title and msi vendor name
9096
- Remove "Average" from "Access Time" label
9197

9298
### v0.6.0
93-
- GH-13 Detect drive info on startup
94-
- GH-12 update look and feel (windows)
95-
- GH-22 foreign capacity reporting
96-
- GH-23 delete selected benchmarks
97-
- GH-10 IOPS reporting
98-
- GH-25 linux crash, capacity w terabytes and exabytes
99+
- #13 Detect drive info on startup
100+
- #12 update look and feel (windows)
101+
- #22 foreign capacity reporting
102+
- #23 delete selected benchmarks
103+
- #10 IOPS reporting
104+
- #25 linux crash, capacity w terabytes and exabytes
99105
- write sync default off
100-
- GH-26 lowercase project and jar
101-
- GH-20 threading and queue depth
102-
- GH-36 I/O Mode dropdown uses enum values for type safety
106+
- #26 lowercase project and jar
107+
- #20 threading and queue depth
108+
- #36 I/O Mode dropdown uses enum values for type safety
103109

104110
### v0.5.1
105-
- resolve GH-17 invalid disk usage reported win 10
111+
- resolve #17 invalid disk usage reported win 10
106112
- msi installer available
107113

108114
### v0.5

src/jdiskmark/UtilOs.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,9 @@ public static String getProcessorNameLinux() {
748748
String line;
749749
while ((line = reader.readLine()) != null) {
750750
// Search for the line starting with "Model name:"
751-
if (line.startsWith("Model name:")) {
751+
if (line.startsWith("Model name:")
752+
|| line.trim().startsWith("Nombre del modelo")) {
753+
752754
// Extract the processor name after the colon
753755
return line.substring(line.indexOf(":") + 2).trim();
754756
}

0 commit comments

Comments
 (0)