├── .github └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle ├── scripts │ ├── dependencies.gradle │ ├── extra.gradle │ ├── helpers.gradle │ └── publishing.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── icon.png ├── settings.gradle └── src └── main └── java └── gblodb └── preventCrappyLauncher ├── CrappyLauncherError.java └── PreventCrappyLauncher.java /.github/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBLodb/PreventCrappyLauncher/HEAD/.github/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBLodb/PreventCrappyLauncher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBLodb/PreventCrappyLauncher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBLodb/PreventCrappyLauncher/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBLodb/PreventCrappyLauncher/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/scripts/dependencies.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBLodb/PreventCrappyLauncher/HEAD/gradle/scripts/dependencies.gradle -------------------------------------------------------------------------------- /gradle/scripts/extra.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBLodb/PreventCrappyLauncher/HEAD/gradle/scripts/extra.gradle -------------------------------------------------------------------------------- /gradle/scripts/helpers.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBLodb/PreventCrappyLauncher/HEAD/gradle/scripts/helpers.gradle -------------------------------------------------------------------------------- /gradle/scripts/publishing.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBLodb/PreventCrappyLauncher/HEAD/gradle/scripts/publishing.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBLodb/PreventCrappyLauncher/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBLodb/PreventCrappyLauncher/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBLodb/PreventCrappyLauncher/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBLodb/PreventCrappyLauncher/HEAD/gradlew.bat -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBLodb/PreventCrappyLauncher/HEAD/icon.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBLodb/PreventCrappyLauncher/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/main/java/gblodb/preventCrappyLauncher/CrappyLauncherError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBLodb/PreventCrappyLauncher/HEAD/src/main/java/gblodb/preventCrappyLauncher/CrappyLauncherError.java -------------------------------------------------------------------------------- /src/main/java/gblodb/preventCrappyLauncher/PreventCrappyLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GBLodb/PreventCrappyLauncher/HEAD/src/main/java/gblodb/preventCrappyLauncher/PreventCrappyLauncher.java --------------------------------------------------------------------------------