auto-sync
This commit is contained in:
parent
f36bb2560c
commit
096b8172e3
|
@ -44,6 +44,8 @@
|
|||
<fileset dir="ui/resources" includes="**/*.gif"/>
|
||||
<fileset dir="ui/resources" includes="**/*.png"/>
|
||||
|
||||
<fileset dir="romraider/resources" includes="**/*.*"/>
|
||||
|
||||
</copy>
|
||||
<jar destfile="${jar_file}" basedir="build/classes">
|
||||
<manifest>
|
||||
|
@ -52,6 +54,10 @@
|
|||
<zipfileset src="lib/SteelSeries-3.9.30.jar" includes="**/*.class"/>
|
||||
<zipfileset src="lib/trident-6.2.jar" includes="**/*.class"/>
|
||||
|
||||
<zipfileset src="lib/swing-layout-1.0.jar" includes="**/*.class"/>
|
||||
<zipfileset src="lib/log4j.jar" includes="**/*.class"/>
|
||||
<zipfileset src="lib/jep.jar" includes="**/*.class"/>
|
||||
|
||||
<zipfileset src="lib/jssc.jar" includes="**/*.class **/*.so **/*.dll **/*.jnilib"/>
|
||||
|
||||
<zipfileset src="lib/annotations.jar" includes="**/*.class"/>
|
||||
|
|
|
@ -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());
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue