Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Eirenliel committed Jul 21, 2021
1 parent 0f360cf commit 34fcbfa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/io/eiren/gui/WiFiWindow.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ private void build() {

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;
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/eiren/vr/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

public class Main {

public static String VERSION = "0.0.9";
public static String VERSION = "0.0.10";

public static VRServer vrServer;

Expand Down

0 comments on commit 34fcbfa

Please sign in to comment.