diff --git a/java_console/ui/src/com/rusefi/Launcher.java b/java_console/ui/src/com/rusefi/Launcher.java index aad2d9d2e5..31673f12d8 100644 --- a/java_console/ui/src/com/rusefi/Launcher.java +++ b/java_console/ui/src/com/rusefi/Launcher.java @@ -49,7 +49,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig; * @see EngineSnifferPanel */ public class Launcher { - public static final int CONSOLE_VERSION = 20200328; + public static final int CONSOLE_VERSION = 20200410; 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", "."); diff --git a/java_console/ui/src/com/rusefi/ldmp/generated/ElectronicThrottleMeta.java b/java_console/ui/src/com/rusefi/ldmp/generated/ElectronicThrottleMeta.java index 2c7f2a476f..df0d2d4784 100644 --- a/java_console/ui/src/com/rusefi/ldmp/generated/ElectronicThrottleMeta.java +++ b/java_console/ui/src/com/rusefi/ldmp/generated/ElectronicThrottleMeta.java @@ -3,6 +3,7 @@ package com.rusefi.ldmp.generated; import com.rusefi.ldmp.*; public class ElectronicThrottleMeta { + /* todo: restore this functionality public static final Request[] CONTENT = new Request[]{ new IfRequest("Engine", "hasEtbPedalPositionSensor", new Request[]{ @@ -41,4 +42,5 @@ public class ElectronicThrottleMeta { new TextRequest("No_Pedal_Sensor"), }), }; + */ } \ No newline at end of file diff --git a/java_console/ui/src/com/rusefi/ui/etb/EtbCommandsPanel.java b/java_console/ui/src/com/rusefi/ui/etb/EtbCommandsPanel.java index 9b8ce34ccc..ce81cf5867 100644 --- a/java_console/ui/src/com/rusefi/ui/etb/EtbCommandsPanel.java +++ b/java_console/ui/src/com/rusefi/ui/etb/EtbCommandsPanel.java @@ -59,7 +59,8 @@ public class EtbCommandsPanel { content.add(mockPpsPanel); - content.add(LiveDocPanel.createPanel("ETB", ElectronicThrottleMeta.CONTENT)); + // todo: restore this functionality + // content.add(LiveDocPanel.createPanel("ETB", ElectronicThrottleMeta.CONTENT)); content.add(new EnumConfigField(Fields.DEBUGMODE, "Debug Mode").getContent()); diff --git a/java_console/ui/src/com/rusefi/ui/livedocs/LiveDocPanel.java b/java_console/ui/src/com/rusefi/ui/livedocs/LiveDocPanel.java index c861f8dcdb..8bc1fe56d1 100644 --- a/java_console/ui/src/com/rusefi/ui/livedocs/LiveDocPanel.java +++ b/java_console/ui/src/com/rusefi/ui/livedocs/LiveDocPanel.java @@ -223,7 +223,8 @@ public class LiveDocPanel { liveDocs.add(createPanel("Idle", IdleThreadMeta.CONTENT), CONSTRAINTS); - liveDocs.add(createPanel("ETB", ElectronicThrottleMeta.CONTENT), CONSTRAINTS); + // todo: restore this functionality + // liveDocs.add(createPanel("ETB", ElectronicThrottleMeta.CONTENT), CONSTRAINTS); return liveDocs; }