├── .gitignore ├── .idea ├── artifacts │ ├── LaunchServer.xml │ └── Launcher.xml ├── compiler.xml ├── encodings.xml ├── libraries │ ├── hikaricp_2_4_0.xml │ ├── jansi_1_11.xml │ ├── jline_2_12_1.xml │ └── minimal_json_0_9_4.xml ├── misc.xml └── modules.xml ├── LICENSE.md ├── LaunchServer ├── LaunchServer.iml ├── MANIFEST.MF ├── resources │ ├── bungee.yml │ ├── launchserver │ │ └── defaults │ │ │ ├── config.cfg │ │ │ ├── profile1.10.2.cfg │ │ │ ├── profile1.11.2.cfg │ │ │ ├── profile1.12.2.cfg │ │ │ ├── profile1.13.2.cfg │ │ │ ├── profile1.4.7.cfg │ │ │ ├── profile1.5.2.cfg │ │ │ ├── profile1.6.4.cfg │ │ │ ├── profile1.7.10.cfg │ │ │ ├── profile1.7.2.cfg │ │ │ ├── profile1.8.9.cfg │ │ │ └── profile1.9.4.cfg │ └── plugin.yml ├── runtime │ ├── api.js │ └── plugin.js ├── source-testing │ └── LaunchServerWrap.java └── source │ ├── LaunchServer.java │ ├── auth │ ├── AuthException.java │ ├── MySQLSourceConfig.java │ ├── handler │ │ ├── AuthHandler.java │ │ ├── BinaryFileAuthHandler.java │ │ ├── CachedAuthHandler.java │ │ ├── DelegateAuthHandler.java │ │ ├── FileAuthHandler.java │ │ ├── MemoryAuthHandler.java │ │ ├── MySQLAuthHandler.java │ │ └── TextFileAuthHandler.java │ └── provider │ │ ├── AcceptAuthProvider.java │ │ ├── AuthProvider.java │ │ ├── AuthProviderResult.java │ │ ├── DelegateAuthProvider.java │ │ ├── DigestAuthProvider.java │ │ ├── FileAuthProvider.java │ │ ├── MojangAuthProvider.java │ │ ├── MojangAuthProviderResult.java │ │ ├── MySQLAuthProvider.java │ │ ├── RejectAuthProvider.java │ │ └── RequestAuthProvider.java │ ├── binary │ ├── EXEL4JLauncherBinary.java │ ├── EXELauncherBinary.java │ ├── JARLauncherBinary.java │ └── LauncherBinary.java │ ├── command │ ├── Command.java │ ├── CommandException.java │ ├── auth │ │ ├── AuthCommand.java │ │ ├── CheckServerCommand.java │ │ ├── JoinServerCommand.java │ │ ├── UUIDToUsernameCommand.java │ │ └── UsernameToUUIDCommand.java │ ├── basic │ │ ├── BuildCommand.java │ │ ├── ClearCommand.java │ │ ├── DebugCommand.java │ │ ├── EvalCommand.java │ │ ├── GCCommand.java │ │ ├── HelpCommand.java │ │ ├── LogConnectionsCommand.java │ │ ├── RebindCommand.java │ │ ├── StopCommand.java │ │ └── VersionCommand.java │ ├── handler │ │ ├── CommandHandler.java │ │ ├── JLineCommandHandler.java │ │ └── StdCommandHandler.java │ ├── hash │ │ ├── DownloadAssetCommand.java │ │ ├── DownloadClientCommand.java │ │ ├── IndexAssetCommand.java │ │ ├── SyncBinariesCommand.java │ │ ├── SyncProfilesCommand.java │ │ ├── SyncUpdatesCommand.java │ │ └── UnindexAssetCommand.java │ └── legacy │ │ └── DumpBinaryAuthHandler.java │ ├── plugin │ ├── LaunchServerPluginBridge.java │ ├── bukkit │ │ ├── LaunchServerCommandBukkit.java │ │ └── LaunchServerPluginBukkit.java │ └── bungee │ │ ├── LaunchServerCommandBungee.java │ │ └── LaunchServerPluginBungee.java │ ├── response │ ├── PingResponse.java │ ├── Response.java │ ├── ResponseThread.java │ ├── ServerSocketHandler.java │ ├── auth │ │ ├── AuthResponse.java │ │ ├── CheckServerResponse.java │ │ └── JoinServerResponse.java │ ├── profile │ │ ├── BatchProfileByUsernameResponse.java │ │ ├── ProfileByUUIDResponse.java │ │ └── ProfileByUsernameResponse.java │ └── update │ │ ├── LauncherResponse.java │ │ ├── UpdateListResponse.java │ │ └── UpdateResponse.java │ └── texture │ ├── DelegateTextureProvider.java │ ├── MojangTextureProvider.java │ ├── RequestTextureProvider.java │ ├── TextureProvider.java │ └── VoidTextureProvider.java ├── Launcher.pro ├── Launcher.stringer ├── Launcher ├── Launcher.iml ├── MANIFEST.MF ├── runtime │ ├── config.js │ ├── dialog │ │ ├── dialog.css │ │ ├── dialog.fxml │ │ ├── dialog.js │ │ ├── offline │ │ │ └── offline.html │ │ ├── overlay │ │ │ ├── debug │ │ │ │ ├── debug.css │ │ │ │ ├── debug.fxml │ │ │ │ └── debug.js │ │ │ ├── processing │ │ │ │ ├── error.png │ │ │ │ ├── processing.css │ │ │ │ ├── processing.fxml │ │ │ │ ├── processing.js │ │ │ │ └── spinner.gif │ │ │ ├── settings │ │ │ │ ├── settings.css │ │ │ │ ├── settings.fxml │ │ │ │ └── settings.js │ │ │ └── update │ │ │ │ ├── update.css │ │ │ │ ├── update.fxml │ │ │ │ └── update.js │ │ ├── profileCell.css │ │ ├── profileCell.fxml │ │ ├── settings.png │ │ └── styles │ │ │ ├── button.css │ │ │ ├── common.css │ │ │ └── input.css │ ├── engine │ │ └── api.js │ ├── favicon.png │ └── init.js ├── source-authlib │ ├── minecraft │ │ └── MinecraftProfileTexture.java │ └── yggdrasil │ │ ├── CompatBridge.java │ │ ├── CompatProfile.java │ │ ├── LegacyBridge.java │ │ ├── YggdrasilAuthenticationService.java │ │ ├── YggdrasilGameProfileRepository.java │ │ └── YggdrasilMinecraftSessionService.java ├── source-testing │ └── LauncherWrap.java └── source │ ├── Launcher.java │ ├── LauncherAPI.java │ ├── client │ ├── ClientLauncher.java │ ├── ClientProfile.java │ ├── PlayerProfile.java │ └── ServerPinger.java │ ├── hasher │ ├── DirWatcher.java │ ├── FileNameMatcher.java │ ├── HashedDir.java │ ├── HashedEntry.java │ └── HashedFile.java │ ├── helper │ ├── CommonHelper.java │ ├── IOHelper.java │ ├── JVMHelper.java │ ├── LogHelper.java │ ├── SecurityHelper.java │ ├── VerifyHelper.java │ └── js │ │ └── JSApplication.java │ ├── request │ ├── CustomRequest.java │ ├── PingRequest.java │ ├── Request.java │ ├── RequestException.java │ ├── auth │ │ ├── AuthRequest.java │ │ ├── CheckServerRequest.java │ │ └── JoinServerRequest.java │ ├── update │ │ ├── LauncherRequest.java │ │ ├── UpdateListRequest.java │ │ └── UpdateRequest.java │ └── uuid │ │ ├── BatchProfileByUsernameRequest.java │ │ ├── ProfileByUUIDRequest.java │ │ └── ProfileByUsernameRequest.java │ └── serialize │ ├── HInput.java │ ├── HOutput.java │ ├── config │ ├── ConfigObject.java │ ├── TextConfigReader.java │ ├── TextConfigWriter.java │ └── entry │ │ ├── BlockConfigEntry.java │ │ ├── BooleanConfigEntry.java │ │ ├── ConfigEntry.java │ │ ├── IntegerConfigEntry.java │ │ ├── ListConfigEntry.java │ │ └── StringConfigEntry.java │ ├── signed │ ├── SignedBytesHolder.java │ └── SignedObjectHolder.java │ └── stream │ ├── EnumSerializer.java │ └── StreamObject.java ├── README.md └── compat ├── BungeeCord.patch ├── LaunchWrapper.patch ├── auth ├── dle.sql ├── dle10.php ├── ipb.php ├── ipb4.php ├── joomla.php ├── joomla.sql ├── phpbb.php ├── uuid │ ├── ReversibleUUIDs.java │ ├── uuidgen.sql │ └── uuidgen_offline.sql ├── wordpress.php ├── xenforo.php └── xenforo2.php └── authlib ├── GameProfile-combined.class ├── MinecraftSessionService-combined.class ├── README.md └── authlib-clean.jar /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/artifacts/LaunchServer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/.idea/artifacts/LaunchServer.xml -------------------------------------------------------------------------------- /.idea/artifacts/Launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/.idea/artifacts/Launcher.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/libraries/hikaricp_2_4_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/.idea/libraries/hikaricp_2_4_0.xml -------------------------------------------------------------------------------- /.idea/libraries/jansi_1_11.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/.idea/libraries/jansi_1_11.xml -------------------------------------------------------------------------------- /.idea/libraries/jline_2_12_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/.idea/libraries/jline_2_12_1.xml -------------------------------------------------------------------------------- /.idea/libraries/minimal_json_0_9_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/.idea/libraries/minimal_json_0_9_4.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LaunchServer/LaunchServer.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/LaunchServer.iml -------------------------------------------------------------------------------- /LaunchServer/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/MANIFEST.MF -------------------------------------------------------------------------------- /LaunchServer/resources/bungee.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/resources/bungee.yml -------------------------------------------------------------------------------- /LaunchServer/resources/launchserver/defaults/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/resources/launchserver/defaults/config.cfg -------------------------------------------------------------------------------- /LaunchServer/resources/launchserver/defaults/profile1.10.2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/resources/launchserver/defaults/profile1.10.2.cfg -------------------------------------------------------------------------------- /LaunchServer/resources/launchserver/defaults/profile1.11.2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/resources/launchserver/defaults/profile1.11.2.cfg -------------------------------------------------------------------------------- /LaunchServer/resources/launchserver/defaults/profile1.12.2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/resources/launchserver/defaults/profile1.12.2.cfg -------------------------------------------------------------------------------- /LaunchServer/resources/launchserver/defaults/profile1.13.2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/resources/launchserver/defaults/profile1.13.2.cfg -------------------------------------------------------------------------------- /LaunchServer/resources/launchserver/defaults/profile1.4.7.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/resources/launchserver/defaults/profile1.4.7.cfg -------------------------------------------------------------------------------- /LaunchServer/resources/launchserver/defaults/profile1.5.2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/resources/launchserver/defaults/profile1.5.2.cfg -------------------------------------------------------------------------------- /LaunchServer/resources/launchserver/defaults/profile1.6.4.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/resources/launchserver/defaults/profile1.6.4.cfg -------------------------------------------------------------------------------- /LaunchServer/resources/launchserver/defaults/profile1.7.10.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/resources/launchserver/defaults/profile1.7.10.cfg -------------------------------------------------------------------------------- /LaunchServer/resources/launchserver/defaults/profile1.7.2.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/resources/launchserver/defaults/profile1.7.2.cfg -------------------------------------------------------------------------------- /LaunchServer/resources/launchserver/defaults/profile1.8.9.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/resources/launchserver/defaults/profile1.8.9.cfg -------------------------------------------------------------------------------- /LaunchServer/resources/launchserver/defaults/profile1.9.4.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/resources/launchserver/defaults/profile1.9.4.cfg -------------------------------------------------------------------------------- /LaunchServer/resources/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/resources/plugin.yml -------------------------------------------------------------------------------- /LaunchServer/runtime/api.js: -------------------------------------------------------------------------------- 1 | ../../Launcher/runtime/engine/api.js -------------------------------------------------------------------------------- /LaunchServer/runtime/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/runtime/plugin.js -------------------------------------------------------------------------------- /LaunchServer/source-testing/LaunchServerWrap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source-testing/LaunchServerWrap.java -------------------------------------------------------------------------------- /LaunchServer/source/LaunchServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/LaunchServer.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/AuthException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/AuthException.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/MySQLSourceConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/MySQLSourceConfig.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/handler/AuthHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/handler/AuthHandler.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/handler/BinaryFileAuthHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/handler/BinaryFileAuthHandler.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/handler/CachedAuthHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/handler/CachedAuthHandler.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/handler/DelegateAuthHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/handler/DelegateAuthHandler.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/handler/FileAuthHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/handler/FileAuthHandler.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/handler/MemoryAuthHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/handler/MemoryAuthHandler.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/handler/MySQLAuthHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/handler/MySQLAuthHandler.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/handler/TextFileAuthHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/handler/TextFileAuthHandler.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/provider/AcceptAuthProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/provider/AcceptAuthProvider.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/provider/AuthProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/provider/AuthProvider.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/provider/AuthProviderResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/provider/AuthProviderResult.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/provider/DelegateAuthProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/provider/DelegateAuthProvider.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/provider/DigestAuthProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/provider/DigestAuthProvider.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/provider/FileAuthProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/provider/FileAuthProvider.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/provider/MojangAuthProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/provider/MojangAuthProvider.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/provider/MojangAuthProviderResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/provider/MojangAuthProviderResult.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/provider/MySQLAuthProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/provider/MySQLAuthProvider.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/provider/RejectAuthProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/provider/RejectAuthProvider.java -------------------------------------------------------------------------------- /LaunchServer/source/auth/provider/RequestAuthProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/auth/provider/RequestAuthProvider.java -------------------------------------------------------------------------------- /LaunchServer/source/binary/EXEL4JLauncherBinary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/binary/EXEL4JLauncherBinary.java -------------------------------------------------------------------------------- /LaunchServer/source/binary/EXELauncherBinary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/binary/EXELauncherBinary.java -------------------------------------------------------------------------------- /LaunchServer/source/binary/JARLauncherBinary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/binary/JARLauncherBinary.java -------------------------------------------------------------------------------- /LaunchServer/source/binary/LauncherBinary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/binary/LauncherBinary.java -------------------------------------------------------------------------------- /LaunchServer/source/command/Command.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/Command.java -------------------------------------------------------------------------------- /LaunchServer/source/command/CommandException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/CommandException.java -------------------------------------------------------------------------------- /LaunchServer/source/command/auth/AuthCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/auth/AuthCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/auth/CheckServerCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/auth/CheckServerCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/auth/JoinServerCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/auth/JoinServerCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/auth/UUIDToUsernameCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/auth/UUIDToUsernameCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/auth/UsernameToUUIDCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/auth/UsernameToUUIDCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/basic/BuildCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/basic/BuildCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/basic/ClearCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/basic/ClearCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/basic/DebugCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/basic/DebugCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/basic/EvalCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/basic/EvalCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/basic/GCCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/basic/GCCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/basic/HelpCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/basic/HelpCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/basic/LogConnectionsCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/basic/LogConnectionsCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/basic/RebindCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/basic/RebindCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/basic/StopCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/basic/StopCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/basic/VersionCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/basic/VersionCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/handler/CommandHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/handler/CommandHandler.java -------------------------------------------------------------------------------- /LaunchServer/source/command/handler/JLineCommandHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/handler/JLineCommandHandler.java -------------------------------------------------------------------------------- /LaunchServer/source/command/handler/StdCommandHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/handler/StdCommandHandler.java -------------------------------------------------------------------------------- /LaunchServer/source/command/hash/DownloadAssetCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/hash/DownloadAssetCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/hash/DownloadClientCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/hash/DownloadClientCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/hash/IndexAssetCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/hash/IndexAssetCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/hash/SyncBinariesCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/hash/SyncBinariesCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/hash/SyncProfilesCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/hash/SyncProfilesCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/hash/SyncUpdatesCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/hash/SyncUpdatesCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/hash/UnindexAssetCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/hash/UnindexAssetCommand.java -------------------------------------------------------------------------------- /LaunchServer/source/command/legacy/DumpBinaryAuthHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/command/legacy/DumpBinaryAuthHandler.java -------------------------------------------------------------------------------- /LaunchServer/source/plugin/LaunchServerPluginBridge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/plugin/LaunchServerPluginBridge.java -------------------------------------------------------------------------------- /LaunchServer/source/plugin/bukkit/LaunchServerCommandBukkit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/plugin/bukkit/LaunchServerCommandBukkit.java -------------------------------------------------------------------------------- /LaunchServer/source/plugin/bukkit/LaunchServerPluginBukkit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/plugin/bukkit/LaunchServerPluginBukkit.java -------------------------------------------------------------------------------- /LaunchServer/source/plugin/bungee/LaunchServerCommandBungee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/plugin/bungee/LaunchServerCommandBungee.java -------------------------------------------------------------------------------- /LaunchServer/source/plugin/bungee/LaunchServerPluginBungee.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/plugin/bungee/LaunchServerPluginBungee.java -------------------------------------------------------------------------------- /LaunchServer/source/response/PingResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/response/PingResponse.java -------------------------------------------------------------------------------- /LaunchServer/source/response/Response.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/response/Response.java -------------------------------------------------------------------------------- /LaunchServer/source/response/ResponseThread.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/response/ResponseThread.java -------------------------------------------------------------------------------- /LaunchServer/source/response/ServerSocketHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/response/ServerSocketHandler.java -------------------------------------------------------------------------------- /LaunchServer/source/response/auth/AuthResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/response/auth/AuthResponse.java -------------------------------------------------------------------------------- /LaunchServer/source/response/auth/CheckServerResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/response/auth/CheckServerResponse.java -------------------------------------------------------------------------------- /LaunchServer/source/response/auth/JoinServerResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/response/auth/JoinServerResponse.java -------------------------------------------------------------------------------- /LaunchServer/source/response/profile/BatchProfileByUsernameResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/response/profile/BatchProfileByUsernameResponse.java -------------------------------------------------------------------------------- /LaunchServer/source/response/profile/ProfileByUUIDResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/response/profile/ProfileByUUIDResponse.java -------------------------------------------------------------------------------- /LaunchServer/source/response/profile/ProfileByUsernameResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/response/profile/ProfileByUsernameResponse.java -------------------------------------------------------------------------------- /LaunchServer/source/response/update/LauncherResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/response/update/LauncherResponse.java -------------------------------------------------------------------------------- /LaunchServer/source/response/update/UpdateListResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/response/update/UpdateListResponse.java -------------------------------------------------------------------------------- /LaunchServer/source/response/update/UpdateResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/response/update/UpdateResponse.java -------------------------------------------------------------------------------- /LaunchServer/source/texture/DelegateTextureProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/texture/DelegateTextureProvider.java -------------------------------------------------------------------------------- /LaunchServer/source/texture/MojangTextureProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/texture/MojangTextureProvider.java -------------------------------------------------------------------------------- /LaunchServer/source/texture/RequestTextureProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/texture/RequestTextureProvider.java -------------------------------------------------------------------------------- /LaunchServer/source/texture/TextureProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/texture/TextureProvider.java -------------------------------------------------------------------------------- /LaunchServer/source/texture/VoidTextureProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/LaunchServer/source/texture/VoidTextureProvider.java -------------------------------------------------------------------------------- /Launcher.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher.pro -------------------------------------------------------------------------------- /Launcher.stringer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher.stringer -------------------------------------------------------------------------------- /Launcher/Launcher.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/Launcher.iml -------------------------------------------------------------------------------- /Launcher/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/MANIFEST.MF -------------------------------------------------------------------------------- /Launcher/runtime/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/config.js -------------------------------------------------------------------------------- /Launcher/runtime/dialog/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/dialog.css -------------------------------------------------------------------------------- /Launcher/runtime/dialog/dialog.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/dialog.fxml -------------------------------------------------------------------------------- /Launcher/runtime/dialog/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/dialog.js -------------------------------------------------------------------------------- /Launcher/runtime/dialog/offline/offline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/offline/offline.html -------------------------------------------------------------------------------- /Launcher/runtime/dialog/overlay/debug/debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/overlay/debug/debug.css -------------------------------------------------------------------------------- /Launcher/runtime/dialog/overlay/debug/debug.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/overlay/debug/debug.fxml -------------------------------------------------------------------------------- /Launcher/runtime/dialog/overlay/debug/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/overlay/debug/debug.js -------------------------------------------------------------------------------- /Launcher/runtime/dialog/overlay/processing/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/overlay/processing/error.png -------------------------------------------------------------------------------- /Launcher/runtime/dialog/overlay/processing/processing.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/overlay/processing/processing.css -------------------------------------------------------------------------------- /Launcher/runtime/dialog/overlay/processing/processing.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/overlay/processing/processing.fxml -------------------------------------------------------------------------------- /Launcher/runtime/dialog/overlay/processing/processing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/overlay/processing/processing.js -------------------------------------------------------------------------------- /Launcher/runtime/dialog/overlay/processing/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/overlay/processing/spinner.gif -------------------------------------------------------------------------------- /Launcher/runtime/dialog/overlay/settings/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/overlay/settings/settings.css -------------------------------------------------------------------------------- /Launcher/runtime/dialog/overlay/settings/settings.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/overlay/settings/settings.fxml -------------------------------------------------------------------------------- /Launcher/runtime/dialog/overlay/settings/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/overlay/settings/settings.js -------------------------------------------------------------------------------- /Launcher/runtime/dialog/overlay/update/update.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/overlay/update/update.css -------------------------------------------------------------------------------- /Launcher/runtime/dialog/overlay/update/update.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/overlay/update/update.fxml -------------------------------------------------------------------------------- /Launcher/runtime/dialog/overlay/update/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/overlay/update/update.js -------------------------------------------------------------------------------- /Launcher/runtime/dialog/profileCell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/profileCell.css -------------------------------------------------------------------------------- /Launcher/runtime/dialog/profileCell.fxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/profileCell.fxml -------------------------------------------------------------------------------- /Launcher/runtime/dialog/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/settings.png -------------------------------------------------------------------------------- /Launcher/runtime/dialog/styles/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/styles/button.css -------------------------------------------------------------------------------- /Launcher/runtime/dialog/styles/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/styles/common.css -------------------------------------------------------------------------------- /Launcher/runtime/dialog/styles/input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/dialog/styles/input.css -------------------------------------------------------------------------------- /Launcher/runtime/engine/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/engine/api.js -------------------------------------------------------------------------------- /Launcher/runtime/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/favicon.png -------------------------------------------------------------------------------- /Launcher/runtime/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/runtime/init.js -------------------------------------------------------------------------------- /Launcher/source-authlib/minecraft/MinecraftProfileTexture.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source-authlib/minecraft/MinecraftProfileTexture.java -------------------------------------------------------------------------------- /Launcher/source-authlib/yggdrasil/CompatBridge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source-authlib/yggdrasil/CompatBridge.java -------------------------------------------------------------------------------- /Launcher/source-authlib/yggdrasil/CompatProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source-authlib/yggdrasil/CompatProfile.java -------------------------------------------------------------------------------- /Launcher/source-authlib/yggdrasil/LegacyBridge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source-authlib/yggdrasil/LegacyBridge.java -------------------------------------------------------------------------------- /Launcher/source-authlib/yggdrasil/YggdrasilAuthenticationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source-authlib/yggdrasil/YggdrasilAuthenticationService.java -------------------------------------------------------------------------------- /Launcher/source-authlib/yggdrasil/YggdrasilGameProfileRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source-authlib/yggdrasil/YggdrasilGameProfileRepository.java -------------------------------------------------------------------------------- /Launcher/source-authlib/yggdrasil/YggdrasilMinecraftSessionService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source-authlib/yggdrasil/YggdrasilMinecraftSessionService.java -------------------------------------------------------------------------------- /Launcher/source-testing/LauncherWrap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source-testing/LauncherWrap.java -------------------------------------------------------------------------------- /Launcher/source/Launcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/Launcher.java -------------------------------------------------------------------------------- /Launcher/source/LauncherAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/LauncherAPI.java -------------------------------------------------------------------------------- /Launcher/source/client/ClientLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/client/ClientLauncher.java -------------------------------------------------------------------------------- /Launcher/source/client/ClientProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/client/ClientProfile.java -------------------------------------------------------------------------------- /Launcher/source/client/PlayerProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/client/PlayerProfile.java -------------------------------------------------------------------------------- /Launcher/source/client/ServerPinger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/client/ServerPinger.java -------------------------------------------------------------------------------- /Launcher/source/hasher/DirWatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/hasher/DirWatcher.java -------------------------------------------------------------------------------- /Launcher/source/hasher/FileNameMatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/hasher/FileNameMatcher.java -------------------------------------------------------------------------------- /Launcher/source/hasher/HashedDir.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/hasher/HashedDir.java -------------------------------------------------------------------------------- /Launcher/source/hasher/HashedEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/hasher/HashedEntry.java -------------------------------------------------------------------------------- /Launcher/source/hasher/HashedFile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/hasher/HashedFile.java -------------------------------------------------------------------------------- /Launcher/source/helper/CommonHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/helper/CommonHelper.java -------------------------------------------------------------------------------- /Launcher/source/helper/IOHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/helper/IOHelper.java -------------------------------------------------------------------------------- /Launcher/source/helper/JVMHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/helper/JVMHelper.java -------------------------------------------------------------------------------- /Launcher/source/helper/LogHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/helper/LogHelper.java -------------------------------------------------------------------------------- /Launcher/source/helper/SecurityHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/helper/SecurityHelper.java -------------------------------------------------------------------------------- /Launcher/source/helper/VerifyHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/helper/VerifyHelper.java -------------------------------------------------------------------------------- /Launcher/source/helper/js/JSApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/helper/js/JSApplication.java -------------------------------------------------------------------------------- /Launcher/source/request/CustomRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/request/CustomRequest.java -------------------------------------------------------------------------------- /Launcher/source/request/PingRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/request/PingRequest.java -------------------------------------------------------------------------------- /Launcher/source/request/Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/request/Request.java -------------------------------------------------------------------------------- /Launcher/source/request/RequestException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/request/RequestException.java -------------------------------------------------------------------------------- /Launcher/source/request/auth/AuthRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/request/auth/AuthRequest.java -------------------------------------------------------------------------------- /Launcher/source/request/auth/CheckServerRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/request/auth/CheckServerRequest.java -------------------------------------------------------------------------------- /Launcher/source/request/auth/JoinServerRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/request/auth/JoinServerRequest.java -------------------------------------------------------------------------------- /Launcher/source/request/update/LauncherRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/request/update/LauncherRequest.java -------------------------------------------------------------------------------- /Launcher/source/request/update/UpdateListRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/request/update/UpdateListRequest.java -------------------------------------------------------------------------------- /Launcher/source/request/update/UpdateRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/request/update/UpdateRequest.java -------------------------------------------------------------------------------- /Launcher/source/request/uuid/BatchProfileByUsernameRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/request/uuid/BatchProfileByUsernameRequest.java -------------------------------------------------------------------------------- /Launcher/source/request/uuid/ProfileByUUIDRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/request/uuid/ProfileByUUIDRequest.java -------------------------------------------------------------------------------- /Launcher/source/request/uuid/ProfileByUsernameRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/request/uuid/ProfileByUsernameRequest.java -------------------------------------------------------------------------------- /Launcher/source/serialize/HInput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/serialize/HInput.java -------------------------------------------------------------------------------- /Launcher/source/serialize/HOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/serialize/HOutput.java -------------------------------------------------------------------------------- /Launcher/source/serialize/config/ConfigObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/serialize/config/ConfigObject.java -------------------------------------------------------------------------------- /Launcher/source/serialize/config/TextConfigReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/serialize/config/TextConfigReader.java -------------------------------------------------------------------------------- /Launcher/source/serialize/config/TextConfigWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/serialize/config/TextConfigWriter.java -------------------------------------------------------------------------------- /Launcher/source/serialize/config/entry/BlockConfigEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/serialize/config/entry/BlockConfigEntry.java -------------------------------------------------------------------------------- /Launcher/source/serialize/config/entry/BooleanConfigEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/serialize/config/entry/BooleanConfigEntry.java -------------------------------------------------------------------------------- /Launcher/source/serialize/config/entry/ConfigEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/serialize/config/entry/ConfigEntry.java -------------------------------------------------------------------------------- /Launcher/source/serialize/config/entry/IntegerConfigEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/serialize/config/entry/IntegerConfigEntry.java -------------------------------------------------------------------------------- /Launcher/source/serialize/config/entry/ListConfigEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/serialize/config/entry/ListConfigEntry.java -------------------------------------------------------------------------------- /Launcher/source/serialize/config/entry/StringConfigEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/serialize/config/entry/StringConfigEntry.java -------------------------------------------------------------------------------- /Launcher/source/serialize/signed/SignedBytesHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/serialize/signed/SignedBytesHolder.java -------------------------------------------------------------------------------- /Launcher/source/serialize/signed/SignedObjectHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/serialize/signed/SignedObjectHolder.java -------------------------------------------------------------------------------- /Launcher/source/serialize/stream/EnumSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/serialize/stream/EnumSerializer.java -------------------------------------------------------------------------------- /Launcher/source/serialize/stream/StreamObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/Launcher/source/serialize/stream/StreamObject.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/README.md -------------------------------------------------------------------------------- /compat/BungeeCord.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/compat/BungeeCord.patch -------------------------------------------------------------------------------- /compat/LaunchWrapper.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/compat/LaunchWrapper.patch -------------------------------------------------------------------------------- /compat/auth/dle.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/compat/auth/dle.sql -------------------------------------------------------------------------------- /compat/auth/dle10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/compat/auth/dle10.php -------------------------------------------------------------------------------- /compat/auth/ipb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/compat/auth/ipb.php -------------------------------------------------------------------------------- /compat/auth/ipb4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/compat/auth/ipb4.php -------------------------------------------------------------------------------- /compat/auth/joomla.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/compat/auth/joomla.php -------------------------------------------------------------------------------- /compat/auth/joomla.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/compat/auth/joomla.sql -------------------------------------------------------------------------------- /compat/auth/phpbb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/compat/auth/phpbb.php -------------------------------------------------------------------------------- /compat/auth/uuid/ReversibleUUIDs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/compat/auth/uuid/ReversibleUUIDs.java -------------------------------------------------------------------------------- /compat/auth/uuid/uuidgen.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/compat/auth/uuid/uuidgen.sql -------------------------------------------------------------------------------- /compat/auth/uuid/uuidgen_offline.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/compat/auth/uuid/uuidgen_offline.sql -------------------------------------------------------------------------------- /compat/auth/wordpress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/compat/auth/wordpress.php -------------------------------------------------------------------------------- /compat/auth/xenforo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/compat/auth/xenforo.php -------------------------------------------------------------------------------- /compat/auth/xenforo2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/compat/auth/xenforo2.php -------------------------------------------------------------------------------- /compat/authlib/GameProfile-combined.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/compat/authlib/GameProfile-combined.class -------------------------------------------------------------------------------- /compat/authlib/MinecraftSessionService-combined.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/compat/authlib/MinecraftSessionService-combined.class -------------------------------------------------------------------------------- /compat/authlib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/compat/authlib/README.md -------------------------------------------------------------------------------- /compat/authlib/authlib-clean.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/new-sashok724/Launcher/HEAD/compat/authlib/authlib-clean.jar --------------------------------------------------------------------------------