Skip to content

Commit d23f045

Browse files
committed
Ready for a new release, finally
1 parent 7722b24 commit d23f045

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

Quark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>xortroll.goldleaf.quark</groupId>
77
<artifactId>Quark</artifactId>
88

9-
<version>0.5</version>
9+
<version>0.10.1</version>
1010
<name>Quark</name>
1111

1212
<properties>

Quark/src/main/java/xortroll/goldleaf/quark/ui/MainApplication.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@
4848
import xortroll.goldleaf.quark.usb.cmd.CommandBlock;
4949

5050
public class MainApplication extends Application {
51-
public static final Version QuarkVersion = new Version(0, 5, 0);
52-
public static final Version MinimumGoldleafVersion = new Version(0, 10, 0);
51+
public static final Version CurrentVersion = new Version(0, 10, 1);
5352

5453
private static Config special_path_cfg;
5554
private static Object special_path_cfg_lock;
@@ -155,8 +154,8 @@ private USBInterface showUsbFailReconnectDialogFromTask(String message, boolean
155154
if(product_version == null) {
156155
show_message = "The connection found doesn't seem to be Goldleaf";
157156
}
158-
else if(product_version.olderThan(MinimumGoldleafVersion)) {
159-
show_message = "The Goldleaf Quark connected to is outdated.\nPlease update to v" + MinimumGoldleafVersion.toString() + " or higher.";
157+
else if(product_version.olderThan(CurrentVersion)) {
158+
show_message = "The Goldleaf Quark connected to is outdated.\nPlease update to v" + CurrentVersion.toString() + " or higher.";
160159
}
161160
else {
162161
if(is_dev_version) {
@@ -193,7 +192,7 @@ public void start(Stage primaryStage) throws Exception {
193192

194193
stage = primaryStage;
195194
stage.getIcons().add(new Image(this_loader.getResource("Icon.png").toExternalForm()));
196-
stage.setTitle("Quark v" + QuarkVersion.toString() + " - Goldleaf's USB client");
195+
stage.setTitle("Quark v" + CurrentVersion.toString() + " - Goldleaf's USB client");
197196
stage.setScene(this.scene);
198197
stage.setMinWidth(width);
199198
stage.setMinHeight(height);

0 commit comments

Comments
 (0)