server

Clone or download

updated license and about

Modified Files

--- 'a/src/main/java/com/StreamPi/Server/Info/License.java'
+++ b/src/main/java/com/StreamPi/Server/Info/License.java
@@ -4,7 +4,7 @@ public class License {
public static String getLicense()
{
return "StreamPi - Free & Opensource Modular Cross-Platform Programmable Macropad\n" +
- "Copyright (C) 2020 Debayan Sutradhar, Samuel Quiñones\n" +
+ "Copyright (C) 2020 Debayan Sutradhar (rnayabed), Samuel Quiñones (SamuelQuinones)\n" +
"\n" +
"This program is free software: you can redistribute it and/or modify\n" +
"it under the terms of the GNU General Public License as published by\n" +
@@ -16,9 +16,9 @@ public class License {
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +
"GNU General Public License for more details.\n" +
"\n\n"+
- "Opensource Libararies used :\n"+
- "1. JavaFX - GNU General Public License with Classpath Exception\nhttp://openjdk.java.net/legal/gplv2+ce.html\n\n"+
- "2. org.json - The JSON License\nhttps://www.json.org/license.html\n\n"+
- "3. Ikonli - Apache License\nhttps://github.com/kordamp/ikonli/blob/master/LICENSE\n\n";
+ "Opensource Libraries used :\n"+
+ "1. JavaFX - GNU General Public License with Classpath Exception\nhttp://openjdk.java.net/legal/gplv2+ce.html\n\n"+
+ "2. JSON - The JSON License\nhttps://www.json.org/license.html\n\n"+
+ "3. Ikonli - Apache License\nhttps://github.com/kordamp/ikonli/blob/master/LICENSE\n\n";
}
}
--- 'a/src/main/java/com/StreamPi/Server/Window/Settings/About.java'
+++ b/src/main/java/com/StreamPi/Server/Window/Settings/About.java
@@ -39,9 +39,6 @@ public class About extends VBox{
appIconImageView.setFitHeight(196);
appIconImageView.setFitWidth(182);
- // Label headerLabel = new Label("StreamPi");
- // headerLabel.getStyleClass().add("settings_about_streampi_header");
-
Label licenseLabel = new Label("License");
licenseLabel.getStyleClass().add("settings_about_license_label");
@@ -52,7 +49,7 @@ public class About extends VBox{
licenseTextArea.setWrapText(false);
licenseTextArea.setEditable(false);
- licenseTextArea.setMaxWidth(500);
+ licenseTextArea.setMaxWidth(550);
VBox.setVgrow(licenseTextArea, Priority.ALWAYS);
@@ -94,7 +91,7 @@ public class About extends VBox{
ServerInfo serverInfo = ServerInfo.getInstance();
Label versionText = new Label(serverInfo.getVersion().getText() + " - "+ serverInfo.getPlatformType().getUIName() + " - "+ serverInfo.getReleaseStatus().getUIName());
- Label commStandardLabel = new Label("CommStandard "+serverInfo.getCommStandardVersion().getText());
+ Label commStandardLabel = new Label("Comm Standard "+serverInfo.getCommStandardVersion().getText());
Label minThemeAPILabel = new Label("Min ThemeAPI "+serverInfo.getMinThemeSupportVersion().getText());
Label minActionAPILabel = new Label("Min ActionAPI "+serverInfo.getMinPluginSupportVersion().getText());