Minor fixes

This commit is contained in:
Eiren Rain
2021-07-21 22:21:39 +03:00
parent 0f360cf892
commit 34fcbfa96f
2 changed files with 2 additions and 2 deletions

View File

@@ -53,7 +53,7 @@ public class WiFiWindow extends JFrame {
SerialPort[] ports = SerialPort.getCommPorts();
for(SerialPort port : ports) {
if(port.getDescriptivePortName().contains("CH340") || port.getDescriptivePortName().toLowerCase().contains("cp21")) {
if(port.getDescriptivePortName().toLowerCase().contains("ch340") || port.getDescriptivePortName().toLowerCase().contains("cp21")) {
trackerPort = port;
break;
}

View File

@@ -8,7 +8,7 @@ import io.eiren.util.logging.LogManager;
public class Main {
public static String VERSION = "0.0.9";
public static String VERSION = "0.0.10";
public static VRServer vrServer;