diff --git a/.gitignore b/.gitignore index 79098fb..2e3e4f4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ .settings # IDE-based -Launcher.iml +lightspeed.iml out .idea diff --git a/.gitmodules b/.gitmodules index 4eee959..29df536 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,12 +1,9 @@ [submodule "pswgcommon"] path = pswgcommon url = git@bitbucket.org:projectswg/pswgcommon.git -[submodule "PSWGCommon"] - path = PSWGCommon - url = git@bitbucket.org:projectswg/pswgcommon.git -[submodule "PSWGCommonFX"] - path = PSWGCommonFX +[submodule "pswgcommonfx"] + path = pswgcommonfx url = git@bitbucket.org:projectswg/pswgcommonfx.git -[submodule "ClientHolocore"] - path = ClientHolocore +[submodule "client-holocore"] + path = client-holocore url = git@bitbucket.org:projectswg/client-holocore.git diff --git a/ClientHolocore b/ClientHolocore deleted file mode 160000 index 58c943d..0000000 --- a/ClientHolocore +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 58c943d639dab26e0d0d7005be2b553e5f5f5283 diff --git a/PSWGCommon b/PSWGCommon deleted file mode 160000 index 5f1ce51..0000000 --- a/PSWGCommon +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 5f1ce51e0a8f15e095447d7292dfbd9ae9807c71 diff --git a/PSWGCommonFX b/PSWGCommonFX deleted file mode 160000 index c557236..0000000 --- a/PSWGCommonFX +++ /dev/null @@ -1 +0,0 @@ -Subproject commit c557236c82fae5a099b8671875408b6489725309 diff --git a/build.gradle b/build.gradle index 6f37a9a..a61ffa9 100644 --- a/build.gradle +++ b/build.gradle @@ -1,13 +1,12 @@ -group 'chat.nibble' +group 'com.projectswg.lightspeed' version '0.0' apply plugin: 'java' +sourceCompatibility = 10 +targetCompatibility = 10 dependencies { compile project(':lightspeed-server') compile project(':lightspeed-client') } -task wrapper(type: Wrapper) { - gradleVersion = "4.4" -} diff --git a/client-holocore b/client-holocore new file mode 160000 index 0000000..450ce04 --- /dev/null +++ b/client-holocore @@ -0,0 +1 @@ +Subproject commit 450ce04c13ac4f80bb5061bb38a2abfe0939ed93 diff --git a/lightspeed-client/build.gradle b/lightspeed-client/build.gradle index d33a0d9..471395b 100644 --- a/lightspeed-client/build.gradle +++ b/lightspeed-client/build.gradle @@ -3,12 +3,12 @@ buildscript { jcenter() } dependencies { - classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.2' + classpath 'com.github.jengelman.gradle.plugins:shadow:2.0.4' } } plugins { - id 'com.github.johnrengelman.shadow' version '2.0.2' + id 'com.github.johnrengelman.shadow' version '2.0.4' id 'application' id 'java' id 'idea' @@ -18,11 +18,10 @@ version '1.0.0' mainClassName = 'com.projectswg.lightspeed_frontend.LightspeedFrontendGUI' -sourceCompatibility = 1.9 -targetCompatibility = 1.9 +sourceCompatibility = 10 +targetCompatibility = 10 repositories { - maven { url 'https://repo.gradle.org/gradle/libs-releases' } jcenter() } @@ -39,6 +38,3 @@ shadowJar { version = null } -task wrapper(type: Wrapper) { - gradleVersion = "4.4" -} diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/Frontend.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/Frontend.class deleted file mode 100644 index 7914309..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/Frontend.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/FrontendData$SettingsData.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/FrontendData$SettingsData.class deleted file mode 100644 index 3392206..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/FrontendData$SettingsData.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/FrontendData.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/FrontendData.class deleted file mode 100644 index 1c88a9f..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/FrontendData.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/LightspeedFrontendGUI.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/LightspeedFrontendGUI.class deleted file mode 100644 index 7203263..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/LightspeedFrontendGUI.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/communication/FrontendCommunication.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/communication/FrontendCommunication.class deleted file mode 100644 index bc5fdb8..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/communication/FrontendCommunication.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/communication/HttpClient$1.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/communication/HttpClient$1.class deleted file mode 100644 index bb2ebe7..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/communication/HttpClient$1.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/communication/HttpClient.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/communication/HttpClient.class deleted file mode 100644 index e906a8b..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/communication/HttpClient.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/InternalWindow.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/InternalWindow.class deleted file mode 100644 index 19606f6..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/InternalWindow.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/LightspeedPrimaryView.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/LightspeedPrimaryView.class deleted file mode 100644 index 522c95f..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/LightspeedPrimaryView.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab$1.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab$1.class deleted file mode 100644 index 328857a..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab$1.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab$BuildStringConverter.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab$BuildStringConverter.class deleted file mode 100644 index 7a02949..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab$BuildStringConverter.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab.class deleted file mode 100644 index fdd7c8e..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/BuildTab.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$1.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$1.class deleted file mode 100644 index 84fa4f5..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$1.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$DeploymentStringConverter.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$DeploymentStringConverter.class deleted file mode 100644 index fcc32d2..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$DeploymentStringConverter.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$LogStringConverter.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$LogStringConverter.class deleted file mode 100644 index 9dd9646..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab$LogStringConverter.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab.class deleted file mode 100644 index c9c7057..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/DeploymentTab.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$1.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$1.class deleted file mode 100644 index 7e16586..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$1.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$ServerStringConverter.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$ServerStringConverter.class deleted file mode 100644 index 156bbca..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$ServerStringConverter.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$TextStyle.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$TextStyle.class deleted file mode 100644 index 1dc3dc4..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab$TextStyle.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab.class deleted file mode 100644 index a1afd0c..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/GeneralTab.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/PrimaryTabData.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/PrimaryTabData.class deleted file mode 100644 index 0b33909..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/PrimaryTabData.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/SettingsTab.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/SettingsTab.class deleted file mode 100644 index 651931d..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/primary_tabs/SettingsTab.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/table/cell/CellMouseClickCallback.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/table/cell/CellMouseClickCallback.class deleted file mode 100644 index 4f454ed..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/table/cell/CellMouseClickCallback.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/table/cell/TableCellString.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/table/cell/TableCellString.class deleted file mode 100644 index e0fcbce..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/table/cell/TableCellString.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/table/column/TableColumnString.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/table/column/TableColumnString.class deleted file mode 100644 index 7738982..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/gui/table/column/TableColumnString.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/intents/InboundConnectionUpdateIntent.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/intents/InboundConnectionUpdateIntent.class deleted file mode 100644 index 31b6b36..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/intents/InboundConnectionUpdateIntent.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/intents/InboundDataUpdateIntent.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/intents/InboundDataUpdateIntent.class deleted file mode 100644 index e879883..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/intents/InboundDataUpdateIntent.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/intents/InboundPacketIntent.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/intents/InboundPacketIntent.class deleted file mode 100644 index 7a31972..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/intents/InboundPacketIntent.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/javafx/Dialog.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/javafx/Dialog.class deleted file mode 100644 index 4dc0210..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/javafx/Dialog.class and /dev/null differ diff --git a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/javafx/FrontendFXMLLoader.class b/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/javafx/FrontendFXMLLoader.class deleted file mode 100644 index 852709d..0000000 Binary files a/lightspeed-client/build/classes/java/main/com/projectswg/lightspeed_frontend/javafx/FrontendFXMLLoader.class and /dev/null differ diff --git a/lightspeed-client/build/libs/LightspeedFrontend.jar b/lightspeed-client/build/libs/LightspeedFrontend.jar deleted file mode 100644 index 19c5a60..0000000 Binary files a/lightspeed-client/build/libs/LightspeedFrontend.jar and /dev/null differ diff --git a/lightspeed-client/build/resources/main/bundles/strings/strings.properties b/lightspeed-client/build/resources/main/bundles/strings/strings.properties deleted file mode 100644 index 0ef6803..0000000 --- a/lightspeed-client/build/resources/main/bundles/strings/strings.properties +++ /dev/null @@ -1,27 +0,0 @@ -##################################################################################### -# Copyright (c) 2018 /// Project SWG /// www.projectswg.com # -# # -# ProjectSWG is the first NGE emulator for Star Wars Galaxies founded on # -# July 7th, 2011 after SOE announced the official shutdown of Star Wars Galaxies. # -# Our goal is to create an emulator which will provide a server for players to # -# continue playing a game similar to the one they used to play. We are basing # -# it on the final publish of the game prior to end-game events. # -# # -# This file is part of Lightspeed. # -# # -# -------------------------------------------------------------------------------- # -# # -# Lightspeed is free software: you can redistribute it and/or modify # -# it under the terms of the GNU Affero General Public License as # -# published by the Free Software Foundation, either version 3 of the # -# License, or (at your option) any later version. # -# # -# Lightspeed is distributed in the hope that it will be useful, # -# but WITHOUT ANY WARRANTY; without even the implied warranty of # -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # -# GNU Affero General Public License for more details. # -# # -# You should have received a copy of the GNU Affero General Public License # -# along with Lightspeed. If not, see . # -# # -##################################################################################### diff --git a/lightspeed-client/build/resources/main/bundles/strings/strings_de.properties b/lightspeed-client/build/resources/main/bundles/strings/strings_de.properties deleted file mode 100644 index 0ef6803..0000000 --- a/lightspeed-client/build/resources/main/bundles/strings/strings_de.properties +++ /dev/null @@ -1,27 +0,0 @@ -##################################################################################### -# Copyright (c) 2018 /// Project SWG /// www.projectswg.com # -# # -# ProjectSWG is the first NGE emulator for Star Wars Galaxies founded on # -# July 7th, 2011 after SOE announced the official shutdown of Star Wars Galaxies. # -# Our goal is to create an emulator which will provide a server for players to # -# continue playing a game similar to the one they used to play. We are basing # -# it on the final publish of the game prior to end-game events. # -# # -# This file is part of Lightspeed. # -# # -# -------------------------------------------------------------------------------- # -# # -# Lightspeed is free software: you can redistribute it and/or modify # -# it under the terms of the GNU Affero General Public License as # -# published by the Free Software Foundation, either version 3 of the # -# License, or (at your option) any later version. # -# # -# Lightspeed is distributed in the hope that it will be useful, # -# but WITHOUT ANY WARRANTY; without even the implied warranty of # -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # -# GNU Affero General Public License for more details. # -# # -# You should have received a copy of the GNU Affero General Public License # -# along with Lightspeed. If not, see . # -# # -##################################################################################### diff --git a/lightspeed-client/build/resources/main/res/fxml/PrimaryView.css b/lightspeed-client/build/resources/main/res/fxml/PrimaryView.css deleted file mode 100644 index 92ba148..0000000 --- a/lightspeed-client/build/resources/main/res/fxml/PrimaryView.css +++ /dev/null @@ -1,58 +0,0 @@ -#primaryViewContainer { - -fx-background-color: #000000; - -fx-text-fill: #FFFFFF; - -fx-pref-width: 800; - -fx-pref-height: 640; -} - -#commonPanel { - -fx-border-color: #000000; - -fx-border-width: 0 0 1 0; - -fx-border-style: solid; -} - -#primaryTabGeneral { - -fx-text-fill: #FFFFFF; -} - -.tab-pane .tab-header-area .tab-header-background { - -fx-opacity: 0.0; -} - -.tab-pane { - -fx-tab-min-width: 150.0px; - -fx-text-fill: #FFFFFF; -} - -.tab-header-area { - -fx-border-color: #3c3c3c; - -fx-border-width: 0 0 1 0; - -fx-border-style: solid; -} - -.tab { - -fx-background-insets: 0.0 1.0 0.0 1.0, 0.0, 0.0; -} - -.tab-pane .tab { - -fx-background-color: #e6e6e6; - -fx-focus-color: transparent; - -fx-faint-focus-color: transparent; -} - -.tab-pane .tab:selected { - -fx-background-color: #3c3c3c; - -fx-border-width: 0 0 0 0; -} - -.tab .tab-label { - -fx-alignment: CENTER; - -fx-text-fill: #000000; - -fx-font-size: 12.0px; - -fx-font-weight: bold; -} - -.tab:selected .tab-label { - -fx-alignment: CENTER; - -fx-text-fill: #00af00; -} diff --git a/lightspeed-client/build/resources/main/res/fxml/PrimaryView.fxml b/lightspeed-client/build/resources/main/res/fxml/PrimaryView.fxml deleted file mode 100644 index 3836df7..0000000 --- a/lightspeed-client/build/resources/main/res/fxml/PrimaryView.fxml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Build.css b/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Build.css deleted file mode 100644 index 276b8e9..0000000 --- a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Build.css +++ /dev/null @@ -1,11 +0,0 @@ -.white-label { - -fx-text-fill: #FFFFFF; -} - -.red-label { - -fx-text-fill: #ff1e1e; -} - -.green-label { - -fx-text-fill: #04ff00; -} diff --git a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Build.fxml b/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Build.fxml deleted file mode 100644 index 6374e6f..0000000 --- a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Build.fxml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Deployment.css b/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Deployment.css deleted file mode 100644 index 37a1e66..0000000 --- a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Deployment.css +++ /dev/null @@ -1,22 +0,0 @@ -.white-label { - -fx-text-fill: #FFFFFF; -} - -.red-label { - -fx-text-fill: #ff1e1e; -} - -.green-label { - -fx-text-fill: #04ff00; -} - -.log { - -fx-text-fill: #FFFFFF; -} - -.log .content { - -fx-background: #3F4042; - -fx-background-color: #3F4042; - -fx-border-color: white; - -fx-border-width: 1 0 1 0; -} diff --git a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Deployment.fxml b/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Deployment.fxml deleted file mode 100644 index f7ac422..0000000 --- a/lightspeed-client/build/resources/main/res/fxml/primary_tabs/Deployment.fxml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - -