From: rnayabed Date: Sun, 17 Jan 2021 13:02:40 +0530 Subject: update license --- update license --- --- '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 StreamPi Team\n" + + "Copyright (C) 2020 Debayan Sutradhar, Samuel QuiƱones\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" + @@ -14,6 +14,11 @@ public class License { "This program is distributed in the hope that it will be useful,\n" + "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" + "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" + - "GNU General Public License for more details.\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"; } } --- 'a/src/main/java/com/StreamPi/Server/Window/Settings/About.java' +++ b/src/main/java/com/StreamPi/Server/Window/Settings/About.java @@ -29,7 +29,6 @@ public class About extends VBox{ public About(HostServices hostServices) { - getStyleClass().add("about"); this.hostServices = hostServices; @@ -40,8 +39,8 @@ public class About extends VBox{ appIconImageView.setFitHeight(196); appIconImageView.setFitWidth(182); - Label headerLabel = new Label("StreamPi"); - headerLabel.getStyleClass().add("settings_about_streampi_header"); + // Label headerLabel = new Label("StreamPi"); + // headerLabel.getStyleClass().add("settings_about_streampi_header"); Label licenseLabel = new Label("License"); licenseLabel.getStyleClass().add("settings_about_license_label"); @@ -79,7 +78,7 @@ public class About extends VBox{ openWebpage("https://twitter.com/Stream_Pi"); }); - links.setSpacing(15); + links.setSpacing(30); links.setAlignment(Pos.CENTER); links.getChildren().addAll(github, discord, website, twitter); @@ -104,7 +103,7 @@ public class About extends VBox{ setSpacing(3); - getChildren().addAll(appIconImageView, headerLabel, licenseLabel, licenseTextArea, links, donateButton, gap, versionText, commAPILabel, minThemeAPILabel, minActionAPILabel, currentActionAPILabel); + getChildren().addAll(appIconImageView, licenseLabel, licenseTextArea, links, donateButton, gap, versionText, commAPILabel, minThemeAPILabel, minActionAPILabel, currentActionAPILabel); } public void openWebpage(String url) {