Skip to content

Commit 86e5a73

Browse files
committed
Let's rename version to v1.2 and roll release
1 parent 96f672e commit 86e5a73

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>loper</groupId>
88
<artifactId>LogiLedus</artifactId>
9-
<version>1.3-SNAPSHOT</version>
9+
<version>1.2-SNAPSHOT</version>
1010

1111
<!-- <url></url> -->
1212
<description>

src/main/java/logiledus/MainFx.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import java.util.ResourceBundle;
1717

1818
public class MainFx extends Application {
19-
public static final String appVersion = "v1.3";
19+
public static final String appVersion = "v1.2";
2020

2121
private static boolean traySupport = true;
2222

src/main/java/logiledus/USB/EffectsThread.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class EffectsThread extends LoThread {
99

1010
private byte[] command;
1111

12-
private byte[] commit = {
12+
private static final byte[] commit = {
1313
0x11, (byte) 0xff, 0x03, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1414
0x00, 0x00, 0x00, 0x00
1515
};
@@ -55,7 +55,7 @@ public EffectsThread(HashMap<String, Byte> effectData){
5555
}
5656
}
5757
@Override
58-
protected Void call() throws Exception {
58+
protected Void call() {
5959
if (command == null)
6060
return null;
6161

0 commit comments

Comments
 (0)