aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/xyz
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/xyz')
-rw-r--r--src/main/kotlin/xyz/brysonsteck/ServerCraft/controllers/InfoController.kt14
-rw-r--r--src/main/kotlin/xyz/brysonsteck/ServerCraft/server/Download.kt2
2 files changed, 13 insertions, 3 deletions
diff --git a/src/main/kotlin/xyz/brysonsteck/ServerCraft/controllers/InfoController.kt b/src/main/kotlin/xyz/brysonsteck/ServerCraft/controllers/InfoController.kt
index dcf77ba..92c6674 100644
--- a/src/main/kotlin/xyz/brysonsteck/ServerCraft/controllers/InfoController.kt
+++ b/src/main/kotlin/xyz/brysonsteck/ServerCraft/controllers/InfoController.kt
@@ -4,12 +4,18 @@ import javafx.fxml.FXML
import javafx.application.Platform
import javafx.scene.Node
import javafx.scene.control.Hyperlink
+import javafx.scene.control.Label
import javafx.stage.Stage
import javafx.event.ActionEvent
import java.awt.Desktop
import java.net.URI
+import java.util.Properties
+import xyz.brysonsteck.ServerCraft.App
class InfoController {
+ @FXML
+ lateinit private var version: Label
+
private val emails = mapOf(
"bryson" to "me@brysonsteck.xyz"
)
@@ -20,6 +26,13 @@ class InfoController {
private val license = "https://www.gnu.org/licenses/gpl-3.0.html"
@FXML
+ public fun initialize() {
+ val props = Properties()
+ props.load(App().javaClass.getResourceAsStream("info.properties"))
+ version.text += props.getProperty("version")
+ }
+
+ @FXML
private fun openHyperlink(e: ActionEvent) {
val link = e.source as Hyperlink
link.isVisited = false
@@ -52,7 +65,6 @@ class InfoController {
}
}
split[0].equals("license") -> {
- println("license")
if (!os.contains("linux")) {
desktop.browse(URI(license))
} else {
diff --git a/src/main/kotlin/xyz/brysonsteck/ServerCraft/server/Download.kt b/src/main/kotlin/xyz/brysonsteck/ServerCraft/server/Download.kt
index f538458..14606f6 100644
--- a/src/main/kotlin/xyz/brysonsteck/ServerCraft/server/Download.kt
+++ b/src/main/kotlin/xyz/brysonsteck/ServerCraft/server/Download.kt
@@ -54,14 +54,12 @@ class Download: Runnable {
// Make sure response code is in the 200 range.
if (connection.responseCode / 100 != 2) {
- println(connection.responseCode)
status = Status.ERROR
}
// Check for valid content length.
contentLength = connection.getContentLength();
if (contentLength < 1) {
- println(connection.getContentLength())
status = Status.ERROR
}