From 096b8172e374b228073047fc7024b3d23f867927 Mon Sep 17 00:00:00 2001 From: rusEfi Date: Tue, 10 Mar 2015 07:10:48 -0500 Subject: [PATCH] auto-sync --- java_console/build.xml | 6 ++++++ java_console/ui/src/com/rusefi/Launcher.java | 5 +++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/java_console/build.xml b/java_console/build.xml index 3a4e4be55c..256c601376 100644 --- a/java_console/build.xml +++ b/java_console/build.xml @@ -44,6 +44,8 @@ + + @@ -52,6 +54,10 @@ + + + + diff --git a/java_console/ui/src/com/rusefi/Launcher.java b/java_console/ui/src/com/rusefi/Launcher.java index 1f32ff3519..008a1254fa 100644 --- a/java_console/ui/src/com/rusefi/Launcher.java +++ b/java_console/ui/src/com/rusefi/Launcher.java @@ -31,8 +31,8 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig; * @see com.rusefi.StartupFrame */ public class Launcher extends FrameHelper { - public static final int CONSOLE_VERSION = 20150308; - public static final boolean SHOW_STIMULATOR = true; + public static final int CONSOLE_VERSION = 20150310; + public static final boolean SHOW_STIMULATOR = false; public static final String TAB_INDEX = "main_tab"; private final String port; private final JTabbedPane tabbedPane = new JTabbedPane(); @@ -62,6 +62,7 @@ public class Launcher extends FrameHelper { // tabbedPane.addTab("ADC", new AdcPanel(new BooleanInputsModel()).createAdcPanel()); if (SHOW_STIMULATOR && !LinkManager.isStimulationMode && !LinkManager.isLogViewerMode(port)) { + // todo: rethink this UI? special command line key to enable it? EcuStimulator stimulator = EcuStimulator.getInstance(); tabbedPane.add("ECU stimulation", stimulator.getPanel()); }