|
48 | 48 | import xortroll.goldleaf.quark.usb.cmd.CommandBlock; |
49 | 49 |
|
50 | 50 | 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); |
53 | 52 |
|
54 | 53 | private static Config special_path_cfg; |
55 | 54 | private static Object special_path_cfg_lock; |
@@ -155,8 +154,8 @@ private USBInterface showUsbFailReconnectDialogFromTask(String message, boolean |
155 | 154 | if(product_version == null) { |
156 | 155 | show_message = "The connection found doesn't seem to be Goldleaf"; |
157 | 156 | } |
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."; |
160 | 159 | } |
161 | 160 | else { |
162 | 161 | if(is_dev_version) { |
@@ -193,7 +192,7 @@ public void start(Stage primaryStage) throws Exception { |
193 | 192 |
|
194 | 193 | stage = primaryStage; |
195 | 194 | 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"); |
197 | 196 | stage.setScene(this.scene); |
198 | 197 | stage.setMinWidth(width); |
199 | 198 | stage.setMinHeight(height); |
|
0 commit comments