- Updater shows a dialog box to inform user that it is searching for updates - Updater deletes old version when new version is downloaded
18 lines
510 B
XML
18 lines
510 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?import javafx.geometry.Insets?>
|
|
<?import javafx.scene.control.Label?>
|
|
<?import javafx.scene.layout.Pane?>
|
|
<?import javafx.scene.text.Font?>
|
|
|
|
<Pane xmlns="http://javafx.com/javafx/8.0.92" xmlns:fx="http://javafx.com/fxml/1">
|
|
<Label text="Looking for updates..." textAlignment="CENTER">
|
|
<font>
|
|
<Font size="40.0" />
|
|
</font>
|
|
<padding>
|
|
<Insets bottom="20.0" left="20.0" right="20.0" top="20.0" />
|
|
</padding>
|
|
</Label>
|
|
</Pane>
|