version to DFU header

This commit is contained in:
rusefi 2020-03-11 17:38:33 -04:00
parent e065da52df
commit 7e7e6ed740
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig;
* @see EngineSnifferPanel
*/
public class Launcher {
public static final int CONSOLE_VERSION = 20200310;
public static final int CONSOLE_VERSION = 20200311;
public static final String INI_FILE_PATH = System.getProperty("ini_file_path", "..");
public static final String INPUT_FILES_PATH = System.getProperty("input_files_path", "..");
public static final String TOOLS_PATH = System.getProperty("tools_path", ".");

View File

@ -64,7 +64,7 @@ public class DfuFlasher {
public static void runDfuProgramming() {
StatusWindow wnd = new StatusWindow();
wnd.showFrame("DFU status");
wnd.showFrame("DFU status " + Launcher.CONSOLE_VERSION);
ExecHelper.submitAction(() -> executeDFU(wnd), DfuFlasher.class + " thread");
}