diff --git a/.idea/codeStyleSettings.xml b/.idea/codeStyleSettings.xml
deleted file mode 100644
index 378766f67..000000000
--- a/.idea/codeStyleSettings.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/compiler.xml b/.idea/compiler.xml
deleted file mode 100644
index 853b5f825..000000000
--- a/.idea/compiler.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/fileTemplates/JavaFXApplication.java b/.idea/fileTemplates/JavaFXApplication.java
deleted file mode 100644
index f9b5a47c2..000000000
--- a/.idea/fileTemplates/JavaFXApplication.java
+++ /dev/null
@@ -1,17 +0,0 @@
-#parse("HMCL.java")
-#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "") package ${PACKAGE_NAME};#end
-
-import javafx.application.Application;
-import javafx.stage.Stage;
-
-public class ${NAME} extends Application {
-
- public static void main(String[] args) {
- launch(args);
- }
-
- @Override
- public void start(Stage primaryStage) {
-
- }
-}
diff --git a/.idea/fileTemplates/Singleton.java b/.idea/fileTemplates/Singleton.java
deleted file mode 100644
index 9f8dcba1d..000000000
--- a/.idea/fileTemplates/Singleton.java
+++ /dev/null
@@ -1,12 +0,0 @@
-#parse("HMCL.java")
-#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
-public class ${NAME}{
- private static ${NAME} ourInstance = new ${NAME}();
-
- public static ${NAME} getInstance() {
- return ourInstance;
- }
-
- private ${NAME}() {
- }
-}
diff --git a/.idea/fileTemplates/includes/HMCL.java b/.idea/fileTemplates/includes/HMCL.java
deleted file mode 100644
index 8ba77f53c..000000000
--- a/.idea/fileTemplates/includes/HMCL.java
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * Hello Minecraft! Launcher.
- * Copyright (C) 2017 huangyuhui
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see {http://www.gnu.org/licenses/}.
- */
-
\ No newline at end of file
diff --git a/.idea/fileTemplates/internal/AnnotationType.java b/.idea/fileTemplates/internal/AnnotationType.java
deleted file mode 100644
index 4c8f31d13..000000000
--- a/.idea/fileTemplates/internal/AnnotationType.java
+++ /dev/null
@@ -1,4 +0,0 @@
-#parse("HMCL.java")
-#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
-public @interface ${NAME} {
-}
diff --git a/.idea/fileTemplates/internal/Class.java b/.idea/fileTemplates/internal/Class.java
deleted file mode 100644
index 307d238f1..000000000
--- a/.idea/fileTemplates/internal/Class.java
+++ /dev/null
@@ -1,4 +0,0 @@
-#parse("HMCL.java")
-#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
-public class ${NAME} {
-}
diff --git a/.idea/fileTemplates/internal/Enum.java b/.idea/fileTemplates/internal/Enum.java
deleted file mode 100644
index f9ed71e48..000000000
--- a/.idea/fileTemplates/internal/Enum.java
+++ /dev/null
@@ -1,4 +0,0 @@
-#parse("HMCL.java")
-#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
-public enum ${NAME} {
-}
diff --git a/.idea/fileTemplates/internal/Interface.java b/.idea/fileTemplates/internal/Interface.java
deleted file mode 100644
index 013564ecb..000000000
--- a/.idea/fileTemplates/internal/Interface.java
+++ /dev/null
@@ -1,4 +0,0 @@
-#parse("HMCL.java")
-#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end
-public interface ${NAME} {
-}
diff --git a/.idea/fileTemplates/internal/Kotlin Class.kt b/.idea/fileTemplates/internal/Kotlin Class.kt
deleted file mode 100644
index 3ea22c045..000000000
--- a/.idea/fileTemplates/internal/Kotlin Class.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-#parse("HMCL.java")
-#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME}
-#end
-class ${NAME} {
-}
\ No newline at end of file
diff --git a/.idea/fileTemplates/internal/Kotlin Enum.kt b/.idea/fileTemplates/internal/Kotlin Enum.kt
deleted file mode 100644
index 8c3294b5a..000000000
--- a/.idea/fileTemplates/internal/Kotlin Enum.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-#parse("HMCL.java")
-#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME}
-#end
-enum class ${NAME} {
-}
\ No newline at end of file
diff --git a/.idea/fileTemplates/internal/Kotlin File.kt b/.idea/fileTemplates/internal/Kotlin File.kt
deleted file mode 100644
index 5d389eb39..000000000
--- a/.idea/fileTemplates/internal/Kotlin File.kt
+++ /dev/null
@@ -1,3 +0,0 @@
-#parse("HMCL.java")
-#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME}
-#end
diff --git a/.idea/fileTemplates/internal/Kotlin Interface.kt b/.idea/fileTemplates/internal/Kotlin Interface.kt
deleted file mode 100644
index 0c119e2ee..000000000
--- a/.idea/fileTemplates/internal/Kotlin Interface.kt
+++ /dev/null
@@ -1,5 +0,0 @@
-#parse("HMCL.java")
-#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME}
-#end
-interface ${NAME} {
-}
\ No newline at end of file
diff --git a/.idea/gradle.xml b/.idea/gradle.xml
deleted file mode 100644
index 273897151..000000000
--- a/.idea/gradle.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml
deleted file mode 100644
index 0dd4b3546..000000000
--- a/.idea/kotlinc.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/libraries/Gradle__com_google_code_gson_gson_2_8_1.xml b/.idea/libraries/Gradle__com_google_code_gson_gson_2_8_1.xml
deleted file mode 100644
index 623ed41a8..000000000
--- a/.idea/libraries/Gradle__com_google_code_gson_gson_2_8_1.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/libraries/Gradle__junit_junit_4_12.xml b/.idea/libraries/Gradle__junit_junit_4_12.xml
deleted file mode 100644
index 04c10dd5a..000000000
--- a/.idea/libraries/Gradle__junit_junit_4_12.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml b/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml
deleted file mode 100644
index 8262f729c..000000000
--- a/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml b/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml
deleted file mode 100644
index 4f32fdef2..000000000
--- a/.idea/libraries/Gradle__org_jetbrains_annotations_13_0.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_3_2.xml b/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_3_2.xml
deleted file mode 100644
index c3c06992f..000000000
--- a/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_1_3_2.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_jre7_1_1_3_2.xml b/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_jre7_1_1_3_2.xml
deleted file mode 100644
index 1747c57f6..000000000
--- a/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_jre7_1_1_3_2.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_jre8_1_1_3_2.xml b/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_jre8_1_1_3_2.xml
deleted file mode 100644
index dcafaf334..000000000
--- a/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_jre8_1_1_3_2.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
deleted file mode 100644
index d5d79e0ca..000000000
--- a/.idea/misc.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
deleted file mode 100644
index 03dc4bb5b..000000000
--- a/.idea/modules.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/modules/HMCL/HMCL.iml b/.idea/modules/HMCL/HMCL.iml
deleted file mode 100644
index 09637b25a..000000000
--- a/.idea/modules/HMCL/HMCL.iml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/modules/HMCL/HMCL_main.iml b/.idea/modules/HMCL/HMCL_main.iml
deleted file mode 100644
index 5aa7bbdc8..000000000
--- a/.idea/modules/HMCL/HMCL_main.iml
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/modules/HMCL/HMCL_test.iml b/.idea/modules/HMCL/HMCL_test.iml
deleted file mode 100644
index df96bc3ce..000000000
--- a/.idea/modules/HMCL/HMCL_test.iml
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/modules/HMCLCore/HMCLCore.iml b/.idea/modules/HMCLCore/HMCLCore.iml
deleted file mode 100644
index b66228a14..000000000
--- a/.idea/modules/HMCLCore/HMCLCore.iml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/modules/HMCLCore/HMCLCore_main.iml b/.idea/modules/HMCLCore/HMCLCore_main.iml
deleted file mode 100644
index 63c541d43..000000000
--- a/.idea/modules/HMCLCore/HMCLCore_main.iml
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/modules/HMCLCore/HMCLCore_test.iml b/.idea/modules/HMCLCore/HMCLCore_test.iml
deleted file mode 100644
index d25a4ddf2..000000000
--- a/.idea/modules/HMCLCore/HMCLCore_test.iml
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/modules/HMCLKotlin.iml b/.idea/modules/HMCLKotlin.iml
deleted file mode 100644
index 5b1923fb2..000000000
--- a/.idea/modules/HMCLKotlin.iml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/modules/HMCLKotlin_main.iml b/.idea/modules/HMCLKotlin_main.iml
deleted file mode 100644
index 29ae031a6..000000000
--- a/.idea/modules/HMCLKotlin_main.iml
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/modules/HMCLKotlin_test.iml b/.idea/modules/HMCLKotlin_test.iml
deleted file mode 100644
index 56ff6708f..000000000
--- a/.idea/modules/HMCLKotlin_test.iml
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/modules/jfoenix.iml b/.idea/modules/jfoenix.iml
deleted file mode 100644
index fb9e6d307..000000000
--- a/.idea/modules/jfoenix.iml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/modules/tornadofx.iml b/.idea/modules/tornadofx.iml
deleted file mode 100644
index b15457137..000000000
--- a/.idea/modules/tornadofx.iml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/modules/tornadofx_main.iml b/.idea/modules/tornadofx_main.iml
deleted file mode 100644
index eb25c54a8..000000000
--- a/.idea/modules/tornadofx_main.iml
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/modules/tornadofx_test.iml b/.idea/modules/tornadofx_test.iml
deleted file mode 100644
index dba773c9b..000000000
--- a/.idea/modules/tornadofx_test.iml
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml
deleted file mode 100644
index e96534fb2..000000000
--- a/.idea/uiDesigner.xml
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
-
-
-
- -
-
-
-
-
-
- -
-
-
-
-
-
- -
-
-
-
-
-
- -
-
-
-
-
- -
-
-
-
-
- -
-
-
-
-
- -
-
-
-
-
- -
-
-
-
-
- -
-
-
-
-
- -
-
-
- -
-
-
-
-
- -
-
-
-
-
- -
-
-
-
-
- -
-
-
-
-
- -
-
-
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
- -
-
-
-
-
- -
-
-
- -
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
deleted file mode 100644
index 94a25f7f4..000000000
--- a/.idea/vcs.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
deleted file mode 100644
index b6766f5f9..000000000
--- a/.idea/workspace.xml
+++ /dev/null
@@ -1,2536 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- EventHelper
- getSource()
- cancel
- cached
- isCancelled
- running
- ceiling
- close()
- listener`
- updateMessage
- fixed
- Parallel
- createNewFile
- copyTo
- terminate
- ParallelTask
- finest
- hidden
- toggle-icon
- toggle-icon3
- get(
- title
- fullscreen
- jfx-decorator-buttons-container
- padding
- isRes
- doDependentsSucceeded: Boolean
- white
- jfx-list-view
- isNull
-
-
- E:\sources\java\JFoenix\jfoenix\build\libs\jfoenix-0.0.0-SNAPSHOT.jar!\com\jfoenix
- D:\Develop\Java\jdk1.8.0_131\jre\lib\ext\jfxrt.jar!\com\sun\javafx\scene\control\skin
- E:\sources\java\HMCLKotlin\HMCL
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1499579974315
-
-
- 1499579974315
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- file://$PROJECT_DIR$/HMCL/src/main/java/org/jackhuang/hmcl/ui/VersionListItem.kt
- 38
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Kotlin (HMCL_main)|Kotlin
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1.8
-
-
-
-
-
-
-
-
-
-
-
- HMCLCore_test|HMCLCore
-
-
-
-
-
-
-
-
-
-
-
- 1.8
-
-
-
-
-
-
-
-
-
-
-
- Gradle: com.google.code.gson:gson:2.8.1
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/HMCL/build.gradle b/HMCL/build.gradle
old mode 100755
new mode 100644
diff --git a/HMCL/out/production/classes/META-INF/HMCL_main.kotlin_module b/HMCL/out/production/classes/META-INF/HMCL_main.kotlin_module
deleted file mode 100644
index 69495ad34..000000000
Binary files a/HMCL/out/production/classes/META-INF/HMCL_main.kotlin_module and /dev/null differ
diff --git a/HMCL/out/production/resources/assets/css/jfoenix-components.css b/HMCL/out/production/resources/assets/css/jfoenix-components.css
deleted file mode 100644
index 1c02f8720..000000000
--- a/HMCL/out/production/resources/assets/css/jfoenix-components.css
+++ /dev/null
@@ -1,394 +0,0 @@
-.root {
- -fx-font-family: Roboto;
- src: "/resources/roboto/Roboto-Regular.ttf";
-}
-
-/* Burgers Demo */
-
-.jfx-hamburger {
- -fx-spacing: 5;
- -fx-cursor: hand;
-}
-
-.jfx-hamburger StackPane {
- -fx-pref-width: 40px;
- -fx-pref-height: 7px;
- -fx-background-color: #D63333;
- -fx-background-radius: 5px;
-}
-
-/* Input Demo */
-
-.text-field {
- -fx-max-width: 300;
-}
-
-.jfx-text-field, .jfx-password-field {
- -fx-background-color: WHITE;
- -fx-font-weight: BOLD;
- -fx-prompt-text-fill: #808080;
- -fx-alignment: top-left;
- -jfx-focus-color: #4059A9;
- -jfx-unfocus-color: #4d4d4d;
- -fx-max-width: 300;
-}
-
-.jfx-decorator {
- -fx-decorator-color: RED;
-}
-
-.jfx-decorator .jfx-decorator-buttons-container {
- -fx-background-color: -fx-decorator-color;
-}
-
-.jfx-decorator .resize-border {
- -fx-border-color: -fx-decorator-color;
- -fx-border-width: 0 4 4 4;
-}
-
-.jfx-text-area, .text-area {
- -fx-font-weight: BOLD;
-}
-
-.jfx-text-field:error, .jfx-password-field:error, .jfx-text-area:error {
- -jfx-focus-color: #D34336;
- -jfx-unfocus-color: #D34336;
-}
-
-.jfx-text-field .error-label, .jfx-password-field .error-label, .jfx-text-area .error-label {
- -fx-text-fill: #D34336;
- -fx-font-size: 0.75em;
-}
-
-.jfx-text-field .error-icon, .jfx-password-field .error-icon, .jfx-text-area .error-icon {
- -fx-text-fill: #D34336;
- -fx-font-size: 1em;
-}
-
-/* Progress Bar Demo */
-
-.progress-bar > .bar {
- -fx-min-width: 500;
-}
-
-.jfx-progress-bar > .bar {
- -fx-min-width: 500;
-}
-
-.jfx-progress-bar {
- -fx-progress-color: #0F9D58;
- -fx-stroke-width: 3;
-}
-
-/* Icons Demo */
-.icon {
- -fx-text-fill: #FE774D;
- -fx-padding: 10;
- -fx-cursor: hand;
-}
-
-.icons-rippler {
- -jfx-rippler-fill: BLUE;
- -jfx-mask-type: CIRCLE;
-}
-
-.icons-rippler:hover {
- -fx-cursor: hand;
-}
-
-.jfx-check-box {
- -fx-font-weight: BOLD;
-}
-
-.custom-jfx-check-box {
- -jfx-checked-color: RED;
- -jfx-unchecked-color: BLACK;
-}
-
-/* Button */
-.button {
- -fx-padding: 0.7em 0.57em;
- -fx-font-size: 14px;
-}
-
-.button-raised {
- -fx-padding: 0.7em 0.57em;
- -fx-font-size: 14px;
- -jfx-button-type: RAISED;
- -fx-background-color: rgb(77, 102, 204);
- -fx-pref-width: 200;
- -fx-text-fill: WHITE;
-}
-
-/* The main scrollbar **track** CSS class */
-.mylistview .scroll-bar:horizontal .track,
-.mylistview .scroll-bar:vertical .track {
- -fx-background-color: transparent;
- -fx-border-color: transparent;
- -fx-background-radius: 0em;
- -fx-border-radius: 2em;
-}
-
-/* The increment and decrement button CSS class of scrollbar */
-.mylistview .scroll-bar:horizontal .increment-button,
-.mylistview .scroll-bar:horizontal .decrement-button {
- -fx-background-color: transparent;
- -fx-background-radius: 0em;
- -fx-padding: 0 0 10 0;
-}
-
-/* The increment and decrement button CSS class of scrollbar */
-
-.mylistview .scroll-bar:vertical .increment-button,
-.mylistview .scroll-bar:vertical .decrement-button {
- -fx-background-color: transparent;
- -fx-background-radius: 0em;
- -fx-padding: 0 10 0 0;
-
-}
-
-.mylistview .scroll-bar .increment-arrow,
-.mylistview .scroll-bar .decrement-arrow {
- -fx-shape: " ";
- -fx-padding: 0;
-}
-
-/* The main scrollbar **thumb** CSS class which we drag every time (movable) */
-.mylistview .scroll-bar:horizontal .thumb,
-.mylistview .scroll-bar:vertical .thumb {
- -fx-background-color: derive(black, 90%);
- -fx-background-insets: 2, 0, 0;
- -fx-background-radius: 2em;
-}
-
-.jfx-list-cell-container {
- -fx-alignment: center-left;
-}
-
-.jfx-list-cell-container > .label {
- -fx-text-fill: BLACK;
-}
-
-.jfx-list-cell:odd:selected > .jfx-rippler > StackPane, .jfx-list-cell:even:selected > .jfx-rippler > StackPane {
- -fx-background-color: rgba(0, 0, 255, 0.2);
-}
-
-.jfx-list-cell {
- -fx-background-insets: 0.0;
- -fx-text-fill: BLACK;
-}
-
-.jfx-list-cell:odd, .jfx-list-cell:even {
- -fx-background-color: WHITE;
-}
-
-.jfx-list-cell:filled:hover {
- -fx-text-fill: black;
-}
-
-.jfx-list-cell .jfx-rippler {
- -jfx-rippler-fill: BLUE;
-}
-
-.jfx-list-view {
- -fx-background-insets: 0;
- -jfx-cell-horizontal-margin: 0.0;
- -jfx-cell-vertical-margin: 5.0;
- -jfx-vertical-gap: 10;
- -jfx-expanded: false;
- -fx-pref-width: 200;
-}
-
-.jfx-toggle-button {
- -jfx-toggle-color: RED;
-}
-
-.jfx-tool-bar {
- -fx-font-size: 15;
- -fx-background-color: #5264AE;
- -fx-pref-width: 100%;
- -fx-pref-height: 64px;
-}
-
-.jfx-tool-bar HBox {
- -fx-alignment: center;
- -fx-spacing: 25;
- -fx-padding: 0 10;
-}
-
-.jfx-tool-bar Label {
- -fx-text-fill: WHITE;
-}
-
-.jfx-popup-container {
- -fx-background-color: WHITE;
-}
-
-.jfx-snackbar-content {
- -fx-background-color: #323232;
- -fx-padding: 5;
- -fx-spacing: 5;
-}
-
-.jfx-snackbar-toast {
- -fx-text-fill: WHITE;
-}
-
-.jfx-snackbar-action {
- -fx-text-fill: #ff4081;
-}
-
-.jfx-list-cell-content-container {
- -fx-alignment: center-left;
-}
-
-.jfx-list-cell-container .label {
- -fx-text-fill: BLACK;
-}
-
-.combo-box-popup .list-view .jfx-list-cell:odd:selected .jfx-list-cell-container,
-.combo-box-popup .list-view .jfx-list-cell:even:selected .jfx-list-cell-container {
- -fx-background-color: rgba(0.0, 0.0, 255.0, 0.2);
-}
-
-.combo-box-popup .list-view .jfx-list-cell {
- -fx-background-insets: 0.0;
- -fx-text-fill: BLACK;
-}
-
-.combo-box-popup .list-view .jfx-list-cell:odd,
-.combo-box-popup .list-view .jfx-list-cell:even {
- -fx-background-color: WHITE;
-}
-
-.combo-box-popup .list-view .jfx-list-cell:filled:hover {
- -fx-text-fill: black;
-}
-
-.combo-box-popup .list-view .jfx-list-cell .jfx-rippler {
- -fx-rippler-fill: #5264AE;
-}
-
-/*.combo-box .combo-box-button-container{
- -fx-border-color:BLACK;-fx-border-width: 0 0 1 0;
-}
-.combo-box .combo-box-selected-value-container{
- -fx-border-color:BLACK;
-} */
-
-/*
- * TREE TABLE CSS
- */
-
-.tree-table-view {
- -fx-tree-table-color: rgba(255, 0, 0, 0.2);
- -fx-tree-table-rippler-color: rgba(255, 0, 0, 0.4);
-}
-
-.tree-table-view:focused .tree-table-row-cell:selected {
- -fx-background-color: -fx-tree-table-color;
- -fx-table-cell-border-color: -fx-tree-table-color;
- -fx-text-fill: BLACK;
-}
-
-.tree-table-view:focused .tree-table-row-cell:selected .tree-table-cell {
- -fx-text-fill: BLACK;
-}
-
-.tree-table-view .jfx-rippler {
- -jfx-rippler-fill: -fx-tree-table-rippler-color;
-}
-
-.tree-table-view .column-header,
-.tree-table-view .column-header-background,
-.tree-table-view .column-header-background .filler {
- -fx-background-color: TRANSPARENT;
-}
-
-.tree-table-view .column-header {
- -fx-border-width: 0 1 0 1;
- -fx-border-color: #F3F3F3;
-}
-
-.tree-table-view .column-header .label {
- -fx-text-fill: #949494;
- -fx-padding: 16 0 16 0;
-}
-
-.tree-table-view .column-header .arrow, .tree-table-view .column-header .sort-order-dot {
- -fx-background-color: #949494;
-}
-
-.tree-table-view .column-header:last-visible {
- -fx-border-width: 0 2 0 1;
-}
-
-.tree-table-view .column-header-background {
- -fx-border-width: 0 0.0 1 0;
- -fx-border-color: #F3F3F3;
-}
-
-.tree-table-view .tree-table-cell {
- -fx-border-width: 0 0 0 0;
- -fx-padding: 16 0 16 0;
-}
-
-.tree-table-view .column-overlay {
- -fx-background-color: -fx-tree-table-color;
-}
-
-.tree-table-view .column-resize-line, .tree-table-view .column-drag-header {
- -fx-background-color: -fx-tree-table-rippler-color;
-}
-
-.tree-table-view:focused {
- -fx-background-color: -fx-tree-table-color, -fx-box-border, -fx-control-inner-background;
- -fx-background-insets: -1.4, 0, 1;
- -fx-background-radius: 1.4, 0, 0;
- /*....*/
- -fx-padding: 1; /* 0.083333em; */
-}
-
-.tree-table-row-cell > .tree-disclosure-node > .arrow {
- -fx-background-color: -fx-text-fill;
- -fx-padding: 0.333333em 0.229em 0.333333em 0.229em; /* 4 */
- -fx-shape: "M 0 -3.5 L 4 0 L 0 3.5 z";
-}
-
-.tree-table-row-cell .jfx-text-field {
- -fx-focus-color: rgba(240, 40, 40);
-}
-
-.tree-table-row-group {
- -fx-background-color: rgba(230, 230, 230);
-}
-
-.animated-option-button {
- -fx-pref-width: 50px;
- -fx-background-color: #44B449;
- -fx-background-radius: 50px;
- -fx-pref-height: 50px;
- -fx-text-fill: white;
- -fx-border-color: WHITE;
- -fx-border-radius: 50px;
- -fx-border-width: 4px;
-}
-
-.animated-option-sub-button {
- -fx-background-color: #43609C;
-}
-
-.animated-option-sub-button2 {
- -fx-background-color: rgb(203, 104, 96);
-}
-
-.tree-table-view .menu-item:focused {
- -fx-background-color: -fx-tree-table-color;
-
-}
-
-.tree-table-view .menu-item .label {
- -fx-padding: 5 0 5 0;
-}
-
-
diff --git a/HMCL/out/production/resources/assets/css/jfoenix-main-demo.css b/HMCL/out/production/resources/assets/css/jfoenix-main-demo.css
deleted file mode 100644
index 6c5c8d875..000000000
--- a/HMCL/out/production/resources/assets/css/jfoenix-main-demo.css
+++ /dev/null
@@ -1,1033 +0,0 @@
-/*
- * Apply google Roboto font to all UI components
- */
-
-.root {
- -fx-font-family: "Roboto";
-}
-
-.side-menu {
- -fx-padding: 20.0, 10.0;
- -fx-font-size: 15.0;
- -fx-font-weight: NORMAL;
- -fx-text-fill: #444;
-}
-
-.title-label {
- -fx-font-size: 16.0px;
- -fx-padding: 14.0px;
- -fx-text-fill: rgba(0.0, 0.0, 0.0, 0.87);
-}
-
-.radio-button-title-label {
- -fx-font-size: 16.0px;
- -fx-padding: 14.0 0.0 -20.0 0.0;
- -fx-text-fill: rgba(0.0, 0.0, 0.0, 0.87);
-}
-
-/*******************************************************************************
- * *
- * JFX Drawer *
- * *
- ******************************************************************************/
-
-.jfx-drawer-overlay-pane {
- -fx-background-color: rgba(0.0, 0.0, 0.0, 0.1)
-}
-
-.jfx-drawer-side-pane {
- -fx-background-color: WHITE;
-}
-
-/*******************************************************************************
- * *
- * JFX Dialog Layout *
- * *
- ******************************************************************************/
-
-.jfx-dialog-overlay-pane {
- -fx-background-color: rgba(0.0, 0.0, 0.0, 0.1);
-}
-
-.dialog-trigger {
- -fx-background-color: WHITE;
- -jfx-button-type: RAISED;
- -fx-font-size: 14.0px;
-}
-
-.jfx-dialog-layout {
- -fx-padding: 24.0px 24.0px 16.0px 24.0px;
- -fx-text-fill: rgba(0.0, 0.0, 0.0, 0.87);
-}
-
-.jfx-layout-heading {
- -fx-font-size: 20.0px;
- -fx-font-weight: BOLD;
- -fx-alignment: center-left;
- -fx-padding: 5.0 0.0 5.0 0.0;
-}
-
-.jfx-layout-body .label {
- -fx-font-size: 14.0px;
- -fx-pref-width: 400.0px;
- -fx-wrap-text: true;
-}
-
-.jfx-layout-actions {
- -fx-padding: 10.0px 0.0 0.0 0.0;
- -fx-alignment: center-right;
-}
-
-.dialog-accept {
- -fx-text-fill: #03A9F4;
- -fx-font-weight: BOLD;
- -fx-padding: 0.7em 0.8em;
-}
-
-/*******************************************************************************
- * *
- * JFX Pop Up *
- * *
- ******************************************************************************/
-
-.jfx-popup-overlay-pane {
- -fx-background-color: transparent;
-}
-
-.jfx-popup-container {
- -fx-background-color: WHITE;
- -fx-pref-width: 151.0px;
-}
-
-.popup-list-view {
- -fx-pref-width: 150.0px;
-}
-
-.jfx-snackbar-content {
- -fx-background-color: #323232;
-}
-
-.jfx-snackbar-toast {
- -fx-text-fill: WHITE;
-}
-
-.jfx-snackbar-action {
- -fx-text-fill: #ff4081;
-}
-
-/*******************************************************************************
- * *
- * JFX Icons *
- * *
- ******************************************************************************/
-
-.icon {
- -fx-fill: #FE774D;
- -fx-padding: 10.0;
- -fx-cursor: hand;
-}
-
-.icons-rippler {
- -jfx-rippler-fill: #FE774D;
- -jfx-mask-type: CIRCLE;
-}
-
-.icons-rippler1 {
- -jfx-rippler-fill: #4285F4;
- -jfx-mask-type: CIRCLE;
-}
-
-.icons-rippler:hover {
- -fx-cursor: hand;
-}
-
-.animated-burgers .jfx-hamburger StackPane {
- -fx-background-color: #5264AE;
- -fx-background-radius: 4px;
-}
-
-.animated-burgers .jfx-rippler {
- -jfx-rippler-fill: #5264AE;
-}
-
-.icons-badge .badge-pane {
- -fx-background-color: #ff4081;
- -fx-background-radius: 23;
- -fx-pref-width: 23;
- -fx-pref-height: 23;
- -fx-alignment: center;
-}
-
-.icons-badge Label {
- -fx-font-weight: BOLD;
- -fx-font-size: 14.0px;
- -fx-text-fill: WHITE;
-}
-
-/*******************************************************************************
-* *
-* JFX Hamburger Icon *
-* *
-*******************************************************************************/
-
-.jfx-hamburger {
- -fx-padding: 10.0;
- -fx-spacing: 4px;
- -fx-cursor: hand;
-}
-
-.jfx-hamburger StackPane {
- -fx-pref-width: 30px;
- -fx-pref-height: 4px;
- -fx-background-color: #FFF;
- -fx-background-radius: 5px;
-}
-
-/*******************************************************************************
- * *
- * JFX Tool Bar *
- * *
- ******************************************************************************/
-
-.jfx-tool-bar {
- -fx-font-size: 13.0;
- -fx-font-weight: BOLD;
- -fx-background-color: #5264AE;
- -fx-pref-width: 100.0%;
- -fx-pref-height: 32.0px;
-}
-
-.jfx-tool-bar HBox {
- -fx-alignment: center;
- -fx-spacing: 25.0;
- -fx-padding: 0.0 10.0;
-}
-
-.jfx-tool-bar Label {
- -fx-text-fill: WHITE;
-}
-
-.jfx-tool-bar .jfx-options-burger {
- -fx-padding: 22px;
-}
-
-.jfx-tool-bar .jfx-options-burger StackPane {
- -fx-pref-width: 4px;
-}
-
-.jfx-tool-bar .jfx-rippler {
- -jfx-rippler-fill: WHITE;
-}
-
-.option-list-view {
- -fx-pref-width: 160.0px;
- -fx-background-color: WHITE;
-}
-
-.option-jfx-list-view-icon {
- -fx-fill: #5264AE;
- -fx-padding: 0.0 10.0 0.0 5.0;
- -fx-cursor: hand;
-}
-
-/*******************************************************************************
- * *
- * JFX Radio Button *
- * *
- ******************************************************************************/
-
-.jfx-radio-button .radio {
- -fx-stroke-width: 2.0px;
- -fx-fill: transparent;
-}
-
-.jfx-radio-button .dot {
- -fx-fill: #0F9D58;
-}
-
-.custom-jfx-radio-button {
- -fx-font-size: 16.0px;
-}
-
-.custom-jfx-radio-button .radio {
- -fx-stroke-width: 2.0px;
- -fx-fill: transparent;
-}
-
-.custom-jfx-radio-button-blue {
- -fx-text-fill: #5264AE;
- -jfx-selected-color: #5264AE;
- -jfx-unselected-color: #212121;
-}
-
-.custom-jfx-radio-button-red {
- -fx-text-fill: #f44336;
- -jfx-selected-color: #f44336;
- -jfx-unselected-color: #b71c1c;
-}
-
-.custom-jfx-radio-button-green {
- -fx-text-fill: #4caf50;
- -jfx-selected-color: #4caf50;
- -jfx-unselected-color: #1b5e20;
-}
-
-/*******************************************************************************
- * *
- * JFX Slider *
- * *
- ******************************************************************************/
-
-.svg-slider .thumb {
- -fx-stroke: black;
- -fx-fill: black;
-}
-
-.jfx-slider:disabled {
- -fx-opacity: 0.4;
-}
-
-/*******************************************************
-* *
-* For the main demo sliders *
-* *
-*******************************************************/
-
-.jfx-slider-style {
- -jfx-indicator-position: right;
-}
-
-.jfx-slider-style > .thumb {
- -fx-background-color: #03a9f4;
-}
-
-.jfx-slider-style .track {
- -fx-background-color: #ff5252;
- -fx-pref-height: 5px;
- -fx-pref-width: 5px;
-}
-
-.jfx-slider-style .sliderValue {
- -fx-stroke: WHITE;
- -fx-font-size: 10.0;
-}
-
-/******************************************************/
-
-/*******************************************************************************
-* *
-* JFX Rippler *
-* *
-*******************************************************************************/
-
-/*.jfx-rippler {
- -fx-rippler-fill: #5264AE;
- -fx-mask-type: RECT;
-}*/
-.jfx-rippler:hover {
- -fx-cursor: hand;
-}
-
-/*******************************************************************************
-* *
-* JFX Button *
-* *
-*******************************************************************************/
-
-.custom-jfx-button-raised .jfx-rippler {
- -jfx-rippler-fill: YELLOW;
-}
-
-.custom-jfx-button-raised {
- -fx-padding: 0.7em 0.57em;
- -fx-font-size: 14.0px;
- -jfx-button-type: RAISED;
- -fx-background-color: rgb(102.0, 153.0, 102.0);
- -fx-pref-width: 200.0;
- -fx-text-fill: WHITE;
-}
-
-.circle-jfx-button-raised .jfx-rippler {
- -jfx-rippler-fill: YELLOW;
-}
-
-.circle-jfx-button-raised {
- -fx-padding: 0.7em 0.57em;
- -fx-font-size: 14.0px;
- -jfx-button-type: RAISED;
- -fx-background-color: rgb(102.0, 153.0, 102.0);
- -fx-pref-width: 200.0;
- -fx-text-fill: WHITE;
- -jfx-mask-type: CIRCLE;
-}
-
-/*******************************************************************************
-* *
-* JFX Check Box *
-* *
-*******************************************************************************/
-
-.jfx-check-box {
- -fx-font-weight: BOLD;
-}
-
-.custom-jfx-check-box {
- -jfx-checked-color: RED;
- -jfx-unchecked-color: BLACK;
-}
-
-.custom-jfx-check-box-all-colored {
- -jfx-checked-color: #5264AE;
- -jfx-unchecked-color: #5264AE;
- -fx-text-fill: #5264AE;
-}
-
-.custom-jfx-check-box-text-colored {
- -fx-text-fill: rgb(153.0, 0.0, 0.0);
-}
-
-/*******************************************************************************
-* *
-* JFX Progress Bar *
-* *
-*******************************************************************************/
-
-.jfx-progress-bar {
- -fx-pref-width: 500.0;
-}
-
-.jfx-progress-bar > .track, .jfx-progress-bar > .bar {
- -fx-background-radius: 0;
- -fx-background-insets: 0;
-}
-
-.jfx-progress-bar > .track {
- -fx-background-color: #E0E0E0;
-}
-
-.jfx-progress-bar > .bar {
- -fx-background-color: #0F9D58;
-}
-
-.custom-jfx-progress-bar > .bar {
- -fx-background-color: rgb(255.0, 128.0, 0.0);
-}
-
-.custom-jfx-progress-bar-stroke > .bar {
- -fx-background-color: #5264AE;
- -fx-padding: 6;
-}
-
-/*******************************************************************************
-* *
-* JFX Textfield *
-* *
-*******************************************************************************/
-
-.jfx-text-field, .jfx-password-field, .jfx-text-area {
- -fx-background-color: transparent;
- -fx-font-weight: BOLD;
- -fx-prompt-text-fill: #808080;
- -fx-alignment: top-left;
- -fx-max-width: 300.0;
- -fx-pref-width: 300.0;
- -jfx-focus-color: #4059A9;
- -jfx-unfocus-color: #4d4d4d;
-}
-
-.jfx-text-area .viewport {
- -fx-background-color: #F4F4F4;
-}
-
-/*******************************************************************************
-* *
-* JFX List View *
-* *
-*******************************************************************************/
-
-.jfx-list-cell {
- -fx-background-insets: 0.0;
- -fx-text-fill: BLACK;
-}
-
-.jfx-list-cell:odd,
-.jfx-list-cell:even {
- -fx-background-color: WHITE;
-}
-
-.jfx-list-cell:filled:hover,
-.jfx-list-cell:selected .label {
- -fx-text-fill: black;
-}
-
-.jfx-list-cell .jfx-rippler {
- -jfx-rippler-fill: #5264AE;
-}
-
-.jfx-list-cell:odd:selected > .jfx-rippler > StackPane,
-.jfx-list-cell:even:selected > .jfx-rippler > StackPane {
- -fx-background-color: rgba(0.0, 0.0, 255.0, 0.2);
-}
-
-.jfx-list-view {
- -fx-background-insets: 0.0;
- -jfx-cell-horizontal-margin: 0.0;
- -jfx-cell-vertical-margin: 5.0;
- -jfx-vertical-gap: 10.0;
- -jfx-expanded: false;
-}
-
-.custom-jfx-list-view .jfx-list-cell:odd:selected > .jfx-rippler > StackPane,
-.custom-jfx-list-view .jfx-list-cell:even:selected > .jfx-rippler > StackPane {
- -fx-background-color: rgba(255, 0, 0, 0.2);
-}
-
-.custom-jfx-list-view {
- -fx-background-insets: 0.0;
- -jfx-cell-horizontal-margin: 0.0;
- -jfx-cell-vertical-margin: 5.0;
- -jfx-expanded: false;
- -fx-max-width: 200.0px;
- /* important to hide the list change of height */
- -fx-background-color: TRANSPARENT;
-}
-
-.custom-jfx-list-view .jfx-rippler {
- -jfx-rippler-fill: RED;
-}
-
-.custom-jfx-list-view1 {
- -jfx-vertical-gap: 10.0;
- -fx-pref-width: 150px;
- -fx-background-color: transparent;
-}
-
-.custom-jfx-list-view-icon,
-.jfx-list-cell:selected .label .custom-jfx-list-view-icon {
- /*-fx-text-fill: #5264AE;*/
- -fx-fill: #5264AE;
- -fx-padding: 0.0 10.0 0.0 5.0;
- -fx-cursor: hand;
-}
-
-.custom-jfx-list-view-icon-container {
- -fx-pref-width: 40px;
-}
-
-.custom-jfx-list-view .sublist-item {
- -fx-border-color: #e0e0e0;
- -fx-border-width: 1 0 1 0;
-}
-
-.custom-jfx-list-view .jfx-list-cell .sublist-header > .drop-icon {
- -fx-background-color: GRAY;
-}
-
-.custom-jfx-list-view .jfx-list-cell:filled:hover .sublist-header > .drop-icon {
- -fx-background-color: BLACK;
-}
-
-/*******************************************************************************/
-/*******************************************************************************/
-/*******************************************************************************/
-/*******************************************************************************/
-/*******************************************************************************/
-/*******************************************************************************/
-/*******************************************************************************
-* *
-* JFX SUBLIST IMPORTANT *
-* *
-*******************************************************************************/
-.sublist .scroll-bar:vertical .increment-arrow,
-.sublist .scroll-bar:vertical .decrement-arrow,
-.sublist .scroll-bar:vertical .increment-button,
-.sublist .scroll-bar:vertical .decrement-button {
- -fx-padding: 0;
-}
-
-.sublist .scroll-bar:vertical .track,
-.sublist .scroll-bar:vertical .thumb {
- -fx-background-color: WHITE;
-}
-
-.sublist {
- -fx-background-color: TRANSPARENT;
-}
-
-.sublist .jfx-list-cell:odd:selected > .jfx-rippler > StackPane,
-.sublist .jfx-list-cell:even:selected > .jfx-rippler > StackPane {
- -fx-background-color: rgba(255, 0, 0, 0.2);
-}
-
-.sublist .jfx-list-cell {
- -fx-background-insets: 0.0;
- -fx-text-fill: BLACK;
-}
-
-.sublist-header {
- -fx-alignment: center-left;
-}
-
-.sublist-header .sub-label {
- -fx-padding: 0 0 0 12;
-}
-
-/*.custom-jfx-list-view .sublist-container {
- -fx-padding : 0 0 5 0;
-}*/
-
-/*******************************************************************************
-* *
-* JFX Toggle Button *
-* *
-*******************************************************************************/
-
-.jfx-toggle-button {
- -jfx-toggle-color: #0F9D58;
-}
-
-.custom-jfx-toggle-button {
- -jfx-toggle-color: #4285F4;
-}
-
-.custom-jfx-toggle-button-red {
- -jfx-toggle-color: red;
-}
-
-.toggle-label {
- -fx-font-size: 14.0px;
-}
-
-.toggle-icon1 .icon {
- -fx-fill: #4285F4;
- -fx-padding: 20.0;
-}
-
-.toggle-icon1 {
- -fx-pref-width: 80px;
- -fx-background-radius: 80px;
- -fx-pref-height: 80px;
- -fx-background-color: transparent;
- -jfx-toggle-color: rgba(66.0, 133.0, 244.0, 0.29885056614875793);
- -jfx-untoggle-color: transparent;
-}
-
-.toggle-icon1 .jfx-rippler {
- -jfx-rippler-fill: rgba(66.0, 133.0, 244.0, 0.29885056614875793);
- -jfx-mask-type: CIRCLE;
-}
-
-.toggle-icon2, .toggle-icon3 {
- -fx-pref-width: 50px;
- -fx-background-radius: 50px;
- -fx-pref-height: 50px;
- -fx-background-color: transparent;
-}
-
-.toggle-icon2 .icon {
- -fx-fill: RED;
-}
-
-.toggle-icon2 .jfx-rippler {
- -jfx-rippler-fill: RED;
- -jfx-mask-type: CIRCLE;
-}
-
-.toggle-icon3 {
- -fx-pref-width: 40px;
- -fx-background-radius: 50px;
- -fx-pref-height: 30px;
- -fx-background-color: transparent;
- -jfx-toggle-color: rgba(128, 128, 255, 0.2);
- -jfx-untoggle-color: transparent;
-}
-
-.toggle-icon3 .icon {
- -fx-fill: rgb(204.0, 204.0, 51.0);
- -fx-padding: 10.0;
-}
-
-.toggle-icon3 .jfx-rippler {
- -jfx-rippler-fill: #0F9D58;
- -jfx-mask-type: CIRCLE;
-}
-
-/*******************************************************************************
-* *
-* JFX Spinner *
-* *
-*******************************************************************************/
-
-.jfx-spinner > .arc {
- -fx-stroke-width: 3.0;
- -fx-fill: transparent;
-}
-
-.first-spinner {
- -jfx-radius: 20;
-}
-
-.first-spinner > .arc {
- -fx-stroke-width: 5.0;
-}
-
-.second-spinner {
- -jfx-radius: 30;
-}
-
-.second-spinner > .arc {
- -fx-stroke-width: 5.0;
-}
-
-.third-spinner {
- -jfx-radius: 40;
-}
-
-.third-spinner > .arc {
- -fx-stroke-width: 5.0;
-}
-
-.fourth-spinner {
- -jfx-radius: 50;
-}
-
-.fourth-spinner > .arc {
- -fx-stroke-width: 5.0;
-}
-
-.fifth-spinner {
- -jfx-radius: 60;
-}
-
-.fifth-spinner > .arc {
- -fx-stroke-width: 5.0;
-}
-
-.sixth-spinner {
- -jfx-radius: 70;
-}
-
-.sixth-spinner > .arc {
- -fx-stroke-width: 5.0;
-}
-
-.seventh-spinner {
- -jfx-radius: 80;
-}
-
-.seventh-spinner > .arc {
- -fx-stroke-width: 5.0;
-}
-
-.blue-spinner .arc {
- -fx-stroke: #4285f4;
-}
-
-.red-spinner .arc {
- -fx-stroke: #db4437;
-}
-
-.green-spinner .arc {
- -fx-stroke: #f4b400;
-}
-
-.yellow-spinner .arc {
- -fx-stroke: #0F9D58;
-}
-
-.materialDesign-purple .arc {
- -fx-stroke: #ab47bc;
-}
-
-.materialDesign-blue .arc {
- -fx-stroke: #2962ff;
-}
-
-.materialDesign-cyan .arc {
- -fx-stroke: #00b8d4;
-}
-
-.materialDesign-green .arc {
- -fx-stroke: #00c853;
-}
-
-.materialDesign-yellow .arc {
- -fx-stroke: #ffd600;
-}
-
-.materialDesign-orange .arc {
- -fx-stroke: #ff6d00;
-}
-
-.materialDesign-red .arc {
- -fx-stroke: #d50000;
-}
-
-/*******************************************************************************
-* *
-* JFX Combo Box *
-* *
-*******************************************************************************/
-
-.combo-box-popup .list-view .jfx-list-cell .label,
-.combo-box-popup .list-view .jfx-list-cell:filled:hover .label {
- -fx-text-fill: BLACK;
-}
-
-.combo-box-popup .list-view .jfx-list-cell .custom-jfx-list-view-icon,
-.combo-box-popup .list-view .jfx-list-cell:filled:hover .custom-jfx-list-view-icon,
-.combo-box-popup .list-view .jfx-list-cell:selected .custom-jfx-list-view-icon {
- -fx-fill: #5264AE;
-}
-
-.combo-box-popup .list-view .jfx-list-cell:odd:selected > .jfx-rippler > StackPane,
-.combo-box-popup .list-view .jfx-list-cell:even:selected > .jfx-rippler > StackPane {
- -fx-background-color: rgba(0.0, 0.0, 255.0, 0.2);
-}
-
-.combo-box-popup .list-view .jfx-list-cell {
- -fx-background-insets: 0.0;
-}
-
-.combo-box-popup .list-view .jfx-list-cell:odd,
-.combo-box-popup .list-view .jfx-list-cell:even {
- -fx-background-color: WHITE;
-}
-
-.combo-box-popup .list-view .jfx-list-cell .jfx-rippler {
- -jfx-rippler-fill: #5264AE;
-}
-
-/*******************************************************************************
-* *
-* JFX Decorator *
-* *
-*******************************************************************************/
-
-.jfx-decorator {
- -fx-decorator-color: derive(#5264AE, -20%);
-}
-
-.jfx-decorator .jfx-decorator-buttons-container {
- -fx-background-color: -fx-decorator-color;
-}
-
-.jfx-decorator .resize-border {
- -fx-border-color: -fx-decorator-color;
- -fx-border-width: 0 4 4 4;
-}
-
-/*******************************************************************************
-* *
-* Tree Table View *
-* *
-*******************************************************************************/
-
-.tree-table-view {
- -fx-tree-table-color: rgba(82, 100, 174, 0.4);
- -fx-tree-table-rippler-color: rgba(82, 100, 174, 0.6);
-}
-
-.tree-table-view:focused .tree-table-row-cell:selected {
- -fx-background-color: -fx-tree-table-color;
- -fx-table-cell-border-color: -fx-tree-table-color;
- -fx-text-fill: BLACK;
-}
-
-.tree-table-view:focused .tree-table-row-cell:selected .tree-table-cell {
- -fx-text-fill: BLACK;
-}
-
-.tree-table-view .jfx-rippler {
- -jfx-rippler-fill: -fx-tree-table-rippler-color;
-}
-
-.tree-table-view .column-header,
-.tree-table-view .column-header-background,
-.tree-table-view .column-header-background .filler {
- -fx-background-color: TRANSPARENT;
-}
-
-.tree-table-view .column-header {
- -fx-border-width: 0 1 0 1;
- -fx-border-color: #F3F3F3;
-}
-
-.tree-table-view .column-header .label {
- -fx-text-fill: #949494;
- -fx-padding: 16 0 16 0;
-}
-
-.tree-table-view .column-header .arrow, .tree-table-view .column-header .sort-order-dot {
- -fx-background-color: #949494;
-}
-
-.tree-table-view .column-header:last-visible {
- -fx-border-width: 0 2 0 1;
-}
-
-.tree-table-view .column-header-background {
- -fx-border-width: 0 0.0 1 0;
- -fx-border-color: #F3F3F3;
-}
-
-.tree-table-view .tree-table-cell {
- -fx-border-width: 0 0 0 0;
- -fx-padding: 16 0 16 0;
- -fx-alignment: top-center;
-}
-
-.tree-table-view .column-overlay {
- -fx-background-color: -fx-tree-table-color;
-}
-
-.tree-table-view .column-resize-line, .tree-table-view .column-drag-header {
- -fx-background-color: -fx-tree-table-rippler-color;
-}
-
-.tree-table-view:focused {
- -fx-background-color: -fx-tree-table-color, -fx-box-border, -fx-control-inner-background;
- -fx-background-insets: -1.4, 0, 1;
- -fx-background-radius: 1.4, 0, 0;
- /*....*/
- -fx-padding: 1; /* 0.083333em; */
-}
-
-.tree-table-row-cell > .tree-disclosure-node > .arrow {
- -fx-background-color: -fx-text-fill;
- -fx-padding: 0.333333em 0.229em 0.333333em 0.229em; /* 4 */
- -fx-shape: "M 0 -3.5 L 4 0 L 0 3.5 z";
-}
-
-.tree-table-row-cell .jfx-text-field {
- -fx-focus-color: rgba(82, 100, 174);
-}
-
-.tree-table-row-cell .jfx-text-field:error {
- -jfx-focus-color: #D34336;
- -jfx-unfocus-color: #D34336;
-}
-
-.tree-table-row-cell .jfx-text-field .error-label {
- -fx-text-fill: #D34336;
- -fx-font-size: 0.75em;
-}
-
-.tree-table-row-cell .jfx-text-field .error-icon {
- -fx-fill: #D34336;
- -fx-font-size: 1.0em;
-}
-
-.tree-table-row-group {
- -fx-background-color: rgba(230, 230, 230);
-}
-
-.tree-table-view .menu-item:focused {
- -fx-background-color: -fx-tree-table-color;
-
-}
-
-.tree-table-view .menu-item .label {
- -fx-padding: 5 0 5 0;
-}
-
-/*******************************************************************************
- * *
- * Scroll Bar *
- * *
- ******************************************************************************/
-
-.scroll-bar:vertical > .track-background, .scroll-bar:horizontal > .track-background {
- -fx-background-color: #F1F1F1;
- -fx-background-insets: 0.0;
-}
-
-.scroll-bar:vertical > .thumb, .scroll-bar:horizontal > .thumb {
- -fx-background-color: #BCBCBC;
- -fx-background-insets: 0.0;
- -fx-background-radius: 1.0;
-}
-
-.scroll-bar > .increment-button, .scroll-bar > .decrement-button {
- -fx-padding: 5 2 5 2;
-}
-
-.scroll-bar > .increment-button, .scroll-bar > .decrement-button, .scroll-bar:hover > .increment-button, .scroll-bar:hover > .decrement-button {
- -fx-background-color: transparent;
-}
-
-.scroll-bar > .increment-button > .increment-arrow, .scroll-bar > .decrement-button > .decrement-arrow {
- -fx-background-color: rgb(150.0, 150.0, 150.0);
-}
-
-.scroll-bar > .increment-button > .increment-arrow {
- -fx-shape: "M298 426h428l-214 214z";
-}
-
-.scroll-bar > .decrement-button > .decrement-arrow {
- -fx-shape: "M298 598l214-214 214 214h-428z";
-}
-
-/*******************************************************************************
- * *
- * Scroll Pane *
- * *
- ******************************************************************************/
-
-.scroll-pane {
- -fx-background-insets: 0;
- -fx-padding: 0;
-}
-
-.scroll-pane:focused {
- -fx-background-insets: 0;
-}
-
-.scroll-pane .corner {
- -fx-background-insets: 0;
-}
-
-/*******************************************************************************
-* *
-* Error Facade *
-* *
-*******************************************************************************/
-
-.error-label {
- -fx-text-fill: #D34336;
- -fx-font-size: 0.75em;
- -fx-font-weight: bold;
-}
-
-.error-icon {
- -fx-fill: #D34336;
- -fx-font-size: 1.0em;
-}
-
-.jfx-text-field:error, .jfx-password-field:error, .jfx-text-area:error, .jfx-combo-box:error {
- -jfx-focus-color: #D34336;
- -jfx-unfocus-color: #D34336;
-}
-
-.jfx-text-field .error-label, .jfx-password-field .error-label, .jfx-text-area .error-label {
- -fx-text-fill: #D34336;
- -fx-font-size: 0.75em;
-}
-
-.jfx-text-field .error-icon, .jfx-password-field .error-icon, .jfx-text-area .error-icon {
- -fx-fill: #D34336;
- -fx-font-size: 1.0em;
-}
-
-.fit-width {
- -fx-pref-width: 100%;
-}
-/*
-.jfx-scroll-pane .main-header {
- -fx-background-image: url("../bg1.jpg");
-}
-
-.jfx-scroll-pane .condensed-header {
- -fx-background-image: url("../bg4.jpg");
-}
-*/
\ No newline at end of file
diff --git a/HMCL/out/production/resources/assets/fxml/download/dltype.fxml b/HMCL/out/production/resources/assets/fxml/download/dltype.fxml
deleted file mode 100644
index 5da12c5d5..000000000
--- a/HMCL/out/production/resources/assets/fxml/download/dltype.fxml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/HMCL/out/production/resources/assets/fxml/download/installers.fxml b/HMCL/out/production/resources/assets/fxml/download/installers.fxml
deleted file mode 100644
index e81963ce1..000000000
--- a/HMCL/out/production/resources/assets/fxml/download/installers.fxml
+++ /dev/null
@@ -1,54 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/HMCL/out/production/resources/assets/fxml/download/versions-list-item.fxml b/HMCL/out/production/resources/assets/fxml/download/versions-list-item.fxml
deleted file mode 100644
index c39c1fd4a..000000000
--- a/HMCL/out/production/resources/assets/fxml/download/versions-list-item.fxml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/HMCL/out/production/resources/assets/fxml/download/versions.fxml b/HMCL/out/production/resources/assets/fxml/download/versions.fxml
deleted file mode 100644
index ab7abbe50..000000000
--- a/HMCL/out/production/resources/assets/fxml/download/versions.fxml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/HMCL/out/production/resources/assets/fxml/main.fxml b/HMCL/out/production/resources/assets/fxml/main.fxml
deleted file mode 100644
index 4cd42eb03..000000000
--- a/HMCL/out/production/resources/assets/fxml/main.fxml
+++ /dev/null
@@ -1,44 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/HMCL/out/production/resources/assets/fxml/version-list-item.fxml b/HMCL/out/production/resources/assets/fxml/version-list-item.fxml
deleted file mode 100644
index 682f54fa8..000000000
--- a/HMCL/out/production/resources/assets/fxml/version-list-item.fxml
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/HMCL/out/production/resources/assets/fxml/version.fxml b/HMCL/out/production/resources/assets/fxml/version.fxml
deleted file mode 100644
index c1eb0c969..000000000
--- a/HMCL/out/production/resources/assets/fxml/version.fxml
+++ /dev/null
@@ -1,109 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/HMCL/out/production/resources/assets/fxml/wizard.fxml b/HMCL/out/production/resources/assets/fxml/wizard.fxml
deleted file mode 100644
index 5bfc439c2..000000000
--- a/HMCL/out/production/resources/assets/fxml/wizard.fxml
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/HMCL/out/production/resources/assets/svg/arrow-left.fxml b/HMCL/out/production/resources/assets/svg/arrow-left.fxml
deleted file mode 100644
index 008914a29..000000000
--- a/HMCL/out/production/resources/assets/svg/arrow-left.fxml
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git a/HMCL/out/production/resources/assets/svg/arrow-right.fxml b/HMCL/out/production/resources/assets/svg/arrow-right.fxml
deleted file mode 100644
index 535557cc7..000000000
--- a/HMCL/out/production/resources/assets/svg/arrow-right.fxml
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git a/HMCL/out/production/resources/assets/svg/close.fxml b/HMCL/out/production/resources/assets/svg/close.fxml
deleted file mode 100644
index b045a2a2a..000000000
--- a/HMCL/out/production/resources/assets/svg/close.fxml
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git a/HMCL/out/production/resources/assets/svg/dots-vertical.fxml b/HMCL/out/production/resources/assets/svg/dots-vertical.fxml
deleted file mode 100644
index d156a7f9b..000000000
--- a/HMCL/out/production/resources/assets/svg/dots-vertical.fxml
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git a/HMCL/out/production/resources/assets/svg/gear.fxml b/HMCL/out/production/resources/assets/svg/gear.fxml
deleted file mode 100644
index e777fa296..000000000
--- a/HMCL/out/production/resources/assets/svg/gear.fxml
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git a/HMCL/out/production/resources/assets/svg/plus.fxml b/HMCL/out/production/resources/assets/svg/plus.fxml
deleted file mode 100644
index 498e812f4..000000000
--- a/HMCL/out/production/resources/assets/svg/plus.fxml
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git a/HMCL/out/production/resources/assets/svg/refresh.fxml b/HMCL/out/production/resources/assets/svg/refresh.fxml
deleted file mode 100644
index f1c6b5ff7..000000000
--- a/HMCL/out/production/resources/assets/svg/refresh.fxml
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
\ No newline at end of file
diff --git a/HMCL/out/production/resources/assets/svg/rocket.fxml b/HMCL/out/production/resources/assets/svg/rocket.fxml
deleted file mode 100644
index 8558b678b..000000000
--- a/HMCL/out/production/resources/assets/svg/rocket.fxml
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
diff --git a/HMCLCore/NVIDIA/GLCache/38d31357932bb5cfb5d9bd361c203e5c/888c7c7e4d65a61d/82bd674ac494837f.bin b/HMCLCore/NVIDIA/GLCache/38d31357932bb5cfb5d9bd361c203e5c/888c7c7e4d65a61d/82bd674ac494837f.bin
deleted file mode 100644
index 273eba0d2..000000000
Binary files a/HMCLCore/NVIDIA/GLCache/38d31357932bb5cfb5d9bd361c203e5c/888c7c7e4d65a61d/82bd674ac494837f.bin and /dev/null differ
diff --git a/HMCLCore/NVIDIA/GLCache/38d31357932bb5cfb5d9bd361c203e5c/888c7c7e4d65a61d/82bd674ac494837f.toc b/HMCLCore/NVIDIA/GLCache/38d31357932bb5cfb5d9bd361c203e5c/888c7c7e4d65a61d/82bd674ac494837f.toc
deleted file mode 100644
index f48bf45fb..000000000
Binary files a/HMCLCore/NVIDIA/GLCache/38d31357932bb5cfb5d9bd361c203e5c/888c7c7e4d65a61d/82bd674ac494837f.toc and /dev/null differ
diff --git a/HMCLCore/out/production/classes/META-INF/HMCLCore_main.kotlin_module b/HMCLCore/out/production/classes/META-INF/HMCLCore_main.kotlin_module
deleted file mode 100644
index 80a42d156..000000000
Binary files a/HMCLCore/out/production/classes/META-INF/HMCLCore_main.kotlin_module and /dev/null differ
diff --git a/build.gradle b/build.gradle
old mode 100755
new mode 100644
diff --git a/build/kotlin-build/caches/version.txt b/build/kotlin-build/caches/version.txt
deleted file mode 100644
index 01aabacbf..000000000
--- a/build/kotlin-build/caches/version.txt
+++ /dev/null
@@ -1 +0,0 @@
-11001
\ No newline at end of file
diff --git a/settings.gradle b/settings.gradle
old mode 100755
new mode 100644