auto-sync

This commit is contained in:
rusEfi 2015-12-24 21:02:54 -05:00
parent 31c5a301a6
commit efec553f36
3 changed files with 13 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -11,7 +11,7 @@ import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class BenchTestPane {
private final JPanel content = new JPanel(new GridLayout(2, 3));
private final JPanel content = new JPanel(new GridLayout(2, 4));
public BenchTestPane() {
content.setBorder(BorderFactory.createEmptyBorder(20, 20, 20, 20));
@ -21,6 +21,7 @@ public class BenchTestPane {
content.add(createSparkTest());
content.add(createInjectorTest());
content.add(createMILTest());
content.add(createIdleTest());
content.add(new MessagesView().messagesScroll);
}
@ -34,6 +35,16 @@ public class BenchTestPane {
return panel.getContent();
}
private Component createIdleTest() {
BenchTestPanel panel = new BenchTestPanel("idle_valve.png", "Idle Valve") {
@NotNull
protected String getCommand() {
return "idlebench";
}
};
return panel.getContent();
}
private Component createFanTest() {
BenchTestPanel panel = new BenchTestPanel("radiator_fan.jpg", "Radiator Fan") {
@NotNull

View File

@ -32,7 +32,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig;
* @see EngineSnifferPanel
*/
public class Launcher {
public static final int CONSOLE_VERSION = 20151214;
public static final int CONSOLE_VERSION = 20151224;
public static final boolean SHOW_STIMULATOR = false;
private static final String TAB_INDEX = "main_tab";
protected static final String PORT_KEY = "port";