auto-sync
This commit is contained in:
parent
b2a3ce37c5
commit
c103a3a562
|
@ -34,7 +34,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig;
|
||||||
* @see com.rusefi.StartupFrame
|
* @see com.rusefi.StartupFrame
|
||||||
*/
|
*/
|
||||||
public class Launcher {
|
public class Launcher {
|
||||||
public static final int CONSOLE_VERSION = 20150326;
|
public static final int CONSOLE_VERSION = 20150328;
|
||||||
public static final boolean SHOW_STIMULATOR = false;
|
public static final boolean SHOW_STIMULATOR = false;
|
||||||
public static final String TAB_INDEX = "main_tab";
|
public static final String TAB_INDEX = "main_tab";
|
||||||
private final String port;
|
private final String port;
|
||||||
|
|
|
@ -273,6 +273,8 @@ public class EngineSnifferPanel {
|
||||||
}
|
}
|
||||||
|
|
||||||
String fixSpark(String s) {
|
String fixSpark(String s) {
|
||||||
|
if (s.toLowerCase().startsWith("hip"))
|
||||||
|
return "z" + s; // let's place this at the bottom
|
||||||
if (s.toLowerCase().startsWith("spa"))
|
if (s.toLowerCase().startsWith("spa"))
|
||||||
return "d" + s;
|
return "d" + s;
|
||||||
return s;
|
return s;
|
||||||
|
|
Loading…
Reference in New Issue