Console is broken on Windows 11 fix #6821
This commit is contained in:
parent
7afbcd750e
commit
3789fdb980
|
@ -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() {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue