DFU red dialog to print Windows version #4475

This commit is contained in:
rusefillc 2022-08-23 16:40:25 -04:00
parent 4e6d129f27
commit 46f4ce52e2
2 changed files with 2 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import java.net.URL;
import java.util.concurrent.atomic.AtomicReference;
public class rusEFIVersion {
public static final int CONSOLE_VERSION = 20220811;
public static final int CONSOLE_VERSION = 20220823;
public static AtomicReference<String> firmwareVersion = new AtomicReference<>("N/A");
public static long classBuildTimeMillis() {

View File

@ -151,6 +151,7 @@ public class DfuFlasher {
} else {
wnd.append(stdout.length() + " / " + errorResponse.length());
wnd.append("ERROR: does not look like DFU has worked!");
wnd.append("Windows " + System.getProperty("os.version"));
appendDeviceReport(wnd);
wnd.setErrorState(true);
}