Console is broken on Windows 11 fix #6821

This commit is contained in:
Andrey 2024-08-17 09:57:35 -04:00
parent 7afbcd750e
commit 3789fdb980
3 changed files with 2 additions and 3 deletions

View File

@ -9,7 +9,7 @@ public interface rusEFIVersion {
/**
* @see com.rusefi.autoupdate.Autoupdate#VERSION
*/
int CONSOLE_VERSION = 20240815;
int CONSOLE_VERSION = 20240816;
AtomicReference<String> firmwareVersion = new AtomicReference<>("N/A");
static long classBuildTimeMillis() {

View File

@ -1,4 +1,3 @@
auto_update_root_url=https://rusefi.com/build_server
show_pcan=true
show_simulator=true
UPDATE_FW_HELP_URL=https://github.com/rusefi/rusefi/wiki/HOWTO-Update-Firmware

View File

@ -32,6 +32,6 @@ public class UiProperties {
}
public static String getUpdateHelpUrl() {
return properties.getProperty("UPDATE_FW_HELP_URL");
return properties.getProperty("UPDATE_FW_HELP_URL", "https://github.com/rusefi/rusefi/wiki/HOWTO-Update-Firmware");
}
}